‎2006 Oct 02 10:16 AM
Hi all,
I have written a method in which I call a function in background task, I would like to perform a task after the function has ended succesfully. this is possible with the addition PERFORMING 'next_task' ON END OF TASK.
This is sadly not possible in a global class.
How can I get info back on the state of the function in the background?
greetings Fred.
‎2006 Oct 02 11:27 AM
Hi,
try using export import statement in FM
call function ...
flay = 'Y'.
export flag to memory id 'TESt'
endfunction
import flag from memory id 'TEST'.
if flag = 'Y'.
perform next_task.
endif.
Regards
amole
‎2006 Oct 06 6:42 AM
Hello Fred,
I am trying to implement a similar thing at my end. I need to get the resultant list generated by my program after the function call has been completed in the background task..
Did you solve this?
Rgds
Priyanka
‎2006 Nov 10 9:15 AM
Fred,
We have an option in SE36 to scheduling a task with triggering an EVENT. You could go through the wiziard available there for the correct event for your job.
Hope I could shed some light.
~thomas