Skip to Content
0
Apr 18, 2014 at 10:32 AM

Doubt in COMMIT WORK

73 Views

I have the below code, where the commit work is after the loop.

LOOP AT itab INTO str.

UPDATE dtab FROM str.

ENDLOOP.

COMMIT WORK.

As per my understanding an update work process will be created after the COMMIT WORK. Is this can be viewed in SM50 ?

In case the work process created is not processed and ON HOLD. If i try to update the dtab table again, is there is a possibility I can get a lock error since the last work process in not processed.

Regards,

Thanga