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

Calling two jobs in a single program simultaneously

Former Member
0 Likes
453

Hi,

Please can anyone tell me the complete procedure that how can i call more than one job in a program simultaneously.

Means through one program i want to run more than one job that should run simultaneously.

Thanks,

Shailendra

2 REPLIES 2
Read only

pavel_parshenkov2
Participant
0 Likes
427

Hi,

I would do following:

1) create FM 1. exml. func1.

2) create FM 2. exml. func2.

In You Main program:

call FMs:

CALL FUNCTION func1 STARTING NEW TASK task1.

CALL FUNCTION func2 STARTING NEW TASK task2.

Also in FMs You can use submit report etc.

This task will be run separately

Best Regards.

Read only

Former Member
0 Likes
427

Hello,

Please read this: [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0401ea9-0be5-2910-b389-ce9675ab8af9].

Regards.