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

Assign target server (instance)

Former Member
0 Likes
1,523

Hi All,

Is it possible to assign target server with executing FM 'JOB_SUBMIT' in background job?

In my SAP QA system, there are 2 instances (server). I want to set the background job to target specific server.

Thanks and regards,

Juli.

2 REPLIES 2
Read only

Former Member
0 Likes
1,000

The target server is set during the JOB_CLOSE call in parameter TARGETSYSTEM

You will schedule a job with JOB_OPEN (where you give job name), JOB_SUBMIT (or SUBMIT... VIA JOB) and JOB_CLOSE (which actually is used to release the job by specifying start time/immediate processing)

Read only

0 Likes
1,000

thanks vishnu.. i'll try now..