W wireheart New Member Sep 29, 2006 #1 How can i cancel new record creating? Creating a new record in progress -> Create <Table-Name> Cancelling record updating -> ????????????? (May be Cancel Update)
How can i cancel new record creating? Creating a new record in progress -> Create <Table-Name> Cancelling record updating -> ????????????? (May be Cancel Update)
W wireheart New Member Sep 29, 2006 #4 I try undo command. For eaxmple, if <expression> then do: . . do transaction: create <table-name>. end. else do: . . undo ,retry. end. first time its running. But the second try it didnt run. How can I undo created blank record?
I try undo command. For eaxmple, if <expression> then do: . . do transaction: create <table-name>. end. else do: . . undo ,retry. end. first time its running. But the second try it didnt run. How can I undo created blank record?
K KnutHandsome Member Sep 29, 2006 #5 You are trying to undo the transaction after it has been committed. You need to issue the undo while you are still inside the transaction you wish to undo. The "Managing Transactions" section of the Progress 4GL Handbook will tell you more.
You are trying to undo the transaction after it has been committed. You need to issue the undo while you are still inside the transaction you wish to undo. The "Managing Transactions" section of the Progress 4GL Handbook will tell you more.