‎2008 May 05 4:01 PM
Hi there,
I wish to carry out an equivalent of perform on commit in an OO program, could anyone share there wisedom with me please
Regards
J-J
‎2008 May 06 6:34 AM
Hello Jim
How about CALL FUNCTION '...' IN UPDATE TASK ?
That is the analogous approach using function modules.
Regards
Uwe
‎2008 May 06 10:53 AM
hii...
perform on commit can be carried out in 2 senarios.
1. delayed subroutine - ths subroutine gets executed when that particular LUW is finished.
so data update from ant particular luw can take place when tht luw is completed.
its very helpful because the work process is not being engaged in the prg execution time,after full execution the update task is performed.
another thing we should rem tht only 1 delayed sub routine gets executed at 1 time.
2. asynchoronous update - here we can use update in a separate task.
here another work process is assigned for the update process, and it runs concurrently with the program execution.
receive reasult after the task.
hopefully i could make u clear.
reward points if helpful.
thanks.....
‎2008 May 06 10:57 AM
I have now changed the way the update works, so no perform statement is required.