Dear all,
I am writing a program for which I would like to enable parallel processing. As the programm is designed in classes and methods, I thought it would be nice and consistent to use methods calls instead of asynchronous function calls. I found a class for remote method calls but this does not appear asynchronous.
Any idea if it is possible?
Thanks
Christian
Chris,
You can do parallel processing by calling a function module.
Program A
Call function module B starting new task 'NEWTASK'
exporting
param1 = param1
exceptions
communication_failure = 1
system_failure = 2.
Add a comment