Skip to Content
0
Former Member
Nov 08, 2005 at 08:03 AM

CALL TRANSACTION's and Batch-Input

208 Views

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' ...

....