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

Starting new task with background

0 Likes
2,041

If I execute my program in background and my program is have a CALL FUNCTION func STARTING NEW TASK task

My question is a new task using dialog word process and background work process ?

Thank.

1 ACCEPTED SOLUTION
Read only

MarcinPciak
Active Contributor
0 Likes
802

SAP says

RFC calls with CALL FUNCTION are processed in work processes of type DIALOG

So for calling it in different work process you need to use addtions


CALL FUNCTION ... IN BACKGROUND TASK
                                IN UPDATE TASK.

Regards

Marcin

SAP says

RFC calls with CALL FUNCTION are processed in work processes of type DIALOG

So for calling it in different work process you need to use addtions


CALL FUNCTION ... IN BACKGROUND TASK
                                IN UPDATE TASK.

Regards

Marcin

1 REPLY 1
Read only

MarcinPciak
Active Contributor
0 Likes
803

SAP says

RFC calls with CALL FUNCTION are processed in work processes of type DIALOG

So for calling it in different work process you need to use addtions


CALL FUNCTION ... IN BACKGROUND TASK
                                IN UPDATE TASK.

Regards

Marcin