Skip to main content

Posts

Showing posts with the label sales and delivery

[SAP SD] Route determination at sales order level

Ideally, the route will be determined based on the below standard configuration at the sales order level. Standard SAP  The route  is determined automatically in the sales order based on:   Departure zone or country of the Delivering Plant Destination zone or country of the Ship-to Party Shipping condition from the Sold-to Party Customer master Transportation group from Material Master Custom But however, there are situations where standard SAP parameters cannot be used for route determination due to business constraints.  In this situation, SAP has provided an exit 'EXIT_SAPL0VRF_001' to accomplish custom requirements of route determination where businesses can maintain their own determinations.

[SD] Delivery output triggering after packing status is complete

Standard SAP provides routine to maintain at output procedure level to trigger output type when post goods issue is completed.  But however, SAP hasn't given any routine to trigger output when packing status is incomplete. To enable this functionality, we have to create a new custom routine in the 9* series with the below logic and assign it to the respective output type in the output determination procedure. IF  KOMKBV2-PKSTK = 'C' AND ( KOMKBV2-KOSTK EQ 'C' ).     SY-SUBRC = 0.   ELSE.     SY-SUBRC = 4.   ENDIF.

delayed during TO confirmation and delivery status issue

At times, Business will face delay during transfer order confirmation and this might be occurred due to the handling units or data reasons and this might lead to inconvenience for business users. SAP Support team suggested to enabled delayed delivery update functionality to fix this issue and below is the path to be followed : Warehouse Management under Interfaces -> Shipping -> Shipping Control -> Shipping Control per Warehouse Number in the field Delayed Delivery Update. In some rare cases, this update might impact on the transfer order confirmation, where status of the delivery will not updated even though picking is completed. This need to be fixed by executing LX47. Thank you.