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

call function

Former Member
0 Likes
381

How to call a function module asynchronously ?

2 REPLIES 2
Read only

Former Member
0 Likes
307

u can do that with RFCs i guess

CALL FUNCTION Remotefunction <b>STARTING NEW TASK</b> Taskname

DESTINATION ...

EXPORTING...

TABLES ...

EXCEPTIONS...

chk this

http://help.sap.com/saphelp_nw04s/helpdata/en/22/042592488911d189490000e829fbbd/content.htm

Read only

Former Member
0 Likes
307

Hi,

The most common is using <b>IN UPDATE TASK</b> in the call, for example:

CALL FUNCTION 'RV_GROUPS_UPDATE'

<b>IN UPDATE TASK</b>

TABLES

xvbsk = it_xvbsk

xvbss = it_xvbss

yvbsk = it_yvbsk

yvbss = it_yvbss.