Hello,
Open Edge 10.1C
I would like to know how to undo a procedure, not only the last call but all calls.
Here a basic exemple.
for exemple : if the 3rd customer is not found i would like to undo all the modifications done to all
customers ( custNum 54, 55 and 56).
Thanks for you help.
Open Edge 10.1C
I would like to know how to undo a procedure, not only the last call but all calls.
Here a basic exemple.
Code:
PROCEDURE upd_customer:
define input parameter in-numCust like client.clecli.
FIND FIRST customer WHERE customer.numCust = in-numCust.
/* Update customer FIELD */
END.
def var list-numCust as int extent 3.
def var i as int.
list-numCust=54.
list-numCust=55.
list-numCust=56.
do i = 1 to 3 :
run upd_customer(input list-numCust).
end.
for exemple : if the 3rd customer is not found i would like to undo all the modifications done to all
customers ( custNum 54, 55 and 56).
Thanks for you help.