‎2008 Aug 19 2:37 PM
Hi Guys,
I have deleted records by ABAP program without using DB_COMMIT.
How can I commit the work now. Can I manually commit the deletion of records.
Thanks,
mini
‎2008 Aug 19 2:41 PM
Hi,
when you write a delete command in your prog
the prog will have an internal commit at the end of prog
check the same.
Regards,
Siva chalasani
‎2008 Aug 19 2:39 PM
When you have deleted the records using your ABAP program, mostly the data gets deleted from the table without using commit statement.
Just run your program and check the entries in the table.
(or)
write COMMIT WORK. in your abap program.
‎2008 Aug 19 2:41 PM
Hi,
when you write a delete command in your prog
the prog will have an internal commit at the end of prog
check the same.
Regards,
Siva chalasani