‎2006 Jul 05 2:07 PM
Hi
I am using bapi BAPI_PRODORDCONF_CREATE_TT.
I am getting the message "Confrmation of order 000060000100 saved " in table DETAIL_RETURN .
But this order is not available at transaction and table level.
Is there any thing missing .
‎2006 Jul 05 2:10 PM
Hello,
Are using the COMMIT WORK AND WAIT.
IF it is useful reward the points.
Vasanth
‎2006 Jul 05 2:09 PM
You need to call BAPI_TRANSACTION_COMMIT after the bapi to create orders.
Add the below code after the BAPI_PRODORDCONF_CREATE_TT call
READ TABLE return WITH KEY type = 'E'.
IF sy-subrc NE 0.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
wait = '2'.
ENDIF.
-Kiran
*Please reward useful answers
Message was edited by: Kiran Raorane
‎2006 Jul 05 2:10 PM
Hello,
Are using the COMMIT WORK AND WAIT.
IF it is useful reward the points.
Vasanth