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.
Comments
Post a Comment