Hi,
I have a theoretical question. For example i have to call few transactions in one batch-input program, one by one, till last. If first goes wrong or any other, how can I rollback all changes that have been made in this transaction. Is it COMMIT WORK implicitly called after call transaction and is there a way to avoid that?
Example:
....
fill data for 1. transaction
call transaction '1' ...
fill data for 2. transaction
call transaction '2' ...
....