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

Deleted records from Z table without DB_COMMIT.

manoj_goyal2
Participant
0 Likes
715

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
553

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

2 REPLIES 2
Read only

Former Member
0 Likes
553

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.

Read only

Former Member
0 Likes
554

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