Roll Back Transaction ¿?

cesaroll

Member
Hi everyone,

Is there a function like 'Roll Back Transaction' in Progress?


I mean, inside an a transaction maybe I could have something like this:

.
.
.

if A > B Then Do:

/* Stop this process and Roll Back Transaction */


End.

.
.
.


Thanks in Advance!
 

arekp

New Member
Hi,

You can do it like this:

tr1:
DO TRANSACTION:
.......................

IF A > B THEN undo, leave tr1.

END.

Regards,
Arek


cesaroll said:
Hi everyone,

Is there a function like 'Roll Back Transaction' in Progress?


I mean, inside an a transaction maybe I could have something like this:

.
.
.

if A > B Then Do:

/* Stop this process and Roll Back Transaction */


End.

.
.
.


Thanks in Advance!
 
Top