Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to avoid BAPI DB update

Former Member
0 Likes
388

Dear All,

In order to get the production order scheduling data I want to use BAPI 'BAPI_PRODORD_SCHEDULE' with in a Z* ABAP program but I don't want any DB updates or DB commit while calling this BAPI. Please let me know how this can be achived?

Thanks in advance

1 REPLY 1
Read only

Former Member
0 Likes
320

The documentation of the BAPI has the statement

Update Control

The method independently triggers the update to the database. 
After the method has been called you must not execute a COMMIT WORK again.

So I guess you cannot execute the BAPI without modifying the database.

regards,

Jinson