Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Perform statement not allowed in OO program

TJRP
Participant
0 Likes
601

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

3 REPLIES 3
Read only

uwe_schieferstein
Active Contributor
0 Likes
570

Hello Jim

How about CALL FUNCTION '...' IN UPDATE TASK ?

That is the analogous approach using function modules.

Regards

Uwe

Read only

Former Member
0 Likes
570

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.....

Read only

TJRP
Participant
0 Likes
570

I have now changed the way the update works, so no perform statement is required.