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

batch job with user name

Former Member
0 Likes
787

Hi,

Is it possible to create a batch job with another user name using JOB_OPEN?

and what is the use of JOB_GROUP option??

Thx in advance.

PRa

Hi,

Is it possible to create a batch job with another user name using JOB_OPEN?

and what is the use of JOB_GROUP option??

Thx in advance.

PRa

3 REPLIES 3
Read only

andreas_mann3
Active Contributor
0 Likes
581

use:

CALL FUNCTION 'JOB_OPEN'...

*--create Step

SUBMIT RFBIBL00 AND RETURN

USER SY-UNAME VIA JOB JOBNAME NUMBER JOBCOUNT

WITH DS_NAME = FILE

WITH CALLMODE = 'B'.

...

greetings

Read only

Former Member
0 Likes
581

Hi,

In the JOB_OPEN function module JOB_GROUP is a field which will hold the Summery of the Job, here in the function module you need to give the Group name.

If you wish you to run the Job in another name you can mention the user name in the SUBMIT statment

Regards

Sudheer

Read only

0 Likes
581

Sudheer,

I know that it is possible submit job on another user name. In the same way is it possible to create batch job on other user name using JOB_OPEN.

PRa