Hi Friends,
I want to insert two SAP tables.
BEGIN TRANSACTION. INSERT TABLE A. INSERT TABLE B. END TRANSACTION.
Normally, in SQL when i do my desire between "begin transaction" and "end transaction" code blocks, these are thougt as atomic operations. If a record inserted A and processes killed after this inserting so insert B is not operated, then the insert of table A is rollbacked.
I need to this operation in SAP. How can I do?
Thanks.