cancel
Showing results for 
Search instead for 
Did you mean: 

Production Order Conformation

Former Member
0 Kudos

Hi

can any one send the production order conformation code using BAPI's

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Check with this bapi 'BAPI_PRODORDCONF_GETDETAIL'

Check with the following link

[Production|]

Hope thi shelps you

Regards,

Rajani

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Surendra,

I have used following BAPI for production order confirmation.

a) Use bapi 'BAPI_PRODORDCONF_GETDETAIL'

U will get the details for production order which can be passed to Order confirmation BAPI.

b) Use the Bapi 'BAPI_PRODORDCONF_CREATE_TT'.

Used for order confirmations.

c) Use BAPI_TRANSACTION_COMMIT.

From

Reddy

Former Member
0 Kudos

Hi Reddy Garu

Thank u for ur reply

can u send the import parameters i dont know the confiormation counter and conformation

Former Member
0 Kudos

DATA : T_ATHDRLEVELS TYPE STANDARD TABLE OF BAPI_PP_HDRLEVEL ,

WA_ATHDRLEVELS TYPE BAPI_PP_HDRLEVEL ,

T_DETAIL_RETURN TYPE STANDARD TABLE OF BAPI_CORU_RETURN,

WA_DETAIL_RETURN TYPE BAPI_CORU_RETURN.

--


Order Confirmation--

WA_ATHDRLEVELS-ORDERID = WA_FILE-PROD_ORD.

APPEND WA_ATHDRLEVELS TO T_ATHDRLEVELS.

CALL FUNCTION 'BAPI_PRODORDCONF_CREATE_HDR'

  • EXPORTING

  • POST_WRONG_ENTRIES = '0'

  • TESTRUN =

  • IMPORTING

  • RETURN =

TABLES

ATHDRLEVELS = T_ATHDRLEVELS

  • GOODSMOVEMENTS =

  • LINK_CONF_GOODSMOV =

DETAIL_RETURN = T_DETAIL_RETURN

Former Member
0 Kudos

hi

Use the Bapi 'BAPI_PRODORDCONF_CREATE_TT'

check this link

[http://help.sap.com/saphelp_45b/helpdata/en/35/ce8d478d0302cae10000009b38f9b7/content.htm]