on 2022 Dec 05 8:22 AM
Hi there, I'm wondering why in the fm CO_ZV_ORDER_POST at a certain point there is this code. "PERFORM order_post ON COMMIT"
and the program doesn't call ever "PERFORM order_post".
Why is it? This commit in the instruction doesn't allow me to execute a rollback after this command.
szago73
The PERFORM order_post ON COMMIT statement is used to ensure that the order_post routine is executed when the current transaction is committed. This is necessary to ensure that the order data is saved to the database and any necessary updates are made. The PERFORM order_post statement is not actually called, as it is only executed when the transaction is committed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.