‎2009 May 13 4:32 PM
Hi Experts ,
I am writinng one function module , and now i need this function one time only can be executed by one process ? just like an async program ....
Is it possible to do that in abap 4 ?
And i also have one question that is is it possbile to share some vars between some "running" abap program ? .....
Thanks .
Best Regards,
Carlos Zhang
‎2009 May 13 4:55 PM
If you use the addition STARTING A NEW TASK in CALL FUNCTION than your FM would be calles as Asyncronous FM
CALL FUNCTION func STARTING NEW TASK task
Check help on the STARTING keyword.
Regards,
Naimesh Patel
‎2009 May 13 6:19 PM
1) You need to use CALL FUNCTION func STARTING NEW TASK task
2) You need to EXPORT to DATABASE inorder to use the variables from one program to another program, after using you can use DELETE DATABASE.
Thanks
Sudheer
‎2009 May 14 1:33 AM
thanks Sudheer .
Is this not good for the performance ?
Best Regards,
Carlos
‎2009 Jun 11 2:03 PM