‎2007 Mar 26 9:02 PM
What is commit work
Why does it have to be used after a modify
‎2007 Mar 26 9:04 PM
Hi,
This statement will apply any outstanding database updates and wait until they have actually been put on the database before proceeding to the next statement.
An ordinary commit work will initiate the process to update the databases in a separate task and will press on in your abap.
COMMIT WORK: ( Asynchronous)
Your program does not wait for any acknowledgement. it just start executing the next statment after COMMIT WORK.
Regards,
Ferry Lianto
‎2007 Mar 26 9:04 PM
Hi,
This statement will apply any outstanding database updates and wait until they have actually been put on the database before proceeding to the next statement.
An ordinary commit work will initiate the process to update the databases in a separate task and will press on in your abap.
COMMIT WORK: ( Asynchronous)
Your program does not wait for any acknowledgement. it just start executing the next statment after COMMIT WORK.
Regards,
Ferry Lianto
‎2007 Mar 27 5:08 AM