‎2007 Jun 29 9:59 AM
Is there a standard RFC that can fetch the release code of a PO.
‎2007 Jun 29 10:02 AM
Try these -
CSBD_PROPOSE_RELEASED_DOCUMENT
TH_POPUP_RELEASE_INFO
Regards,
Amit
Reward all helpful replies.
‎2007 Jun 29 10:07 AM
Hi
use the Fun module
ME_RELEASE_PURCHASE_DOCUMENT
pass the Po number
will give you the release code for PO
see the sample code
CALL FUNCTION 'ME_RELEASE_PURCHASE_DOCUMENT'
EXPORTING
i_ebeln = object-key-purchaseorder
i_bstyp = 'F'
i_frgco = releasecode
EXCEPTIONS
OTHERS = 1.
IF sy-subrc <> 0.
MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
<b>Reward points for useful Answers</b>
Regards
Anji
‎2007 Jun 29 10:25 AM