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

JOB_SUBMIT

Former Member
0 Likes
841

Hi all,

Iam using job_submit f.m in my program . I have to pass AUTHCKNAM parameter to acess any user this program .how can i pass AUTHCKNAM parameter with all user can run that job .

Thanks

Hi all,

Iam using job_submit f.m in my program . I have to pass AUTHCKNAM parameter to acess any user this program .how can i pass AUTHCKNAM parameter with all user can run that job .

Thanks

6 REPLIES 6
Read only

Former Member
0 Likes
787

I got it

Read only

0 Likes
787

HI Priya,

Why dont you post it how you solved the isssue so that it will help others for future reference .

Reagrds,

Varun .

Read only

0 Likes
787

Hi vivek,

Insetead of using job_submit i used this statement its worked just like job_submit.

SUBMIT ZFL_DLC_FILEEVENT VIA JOB 'JOBNAME' NUMBER COUNT

AND RETURN.

Thanks

Read only

0 Likes
787

Hi Priya,

Good tht u hv shared the answer...if everybody does this many of us will b glad n this forum will b performing much better...

Regards

Sony

Read only

0 Likes
787

Hi PRiya,

I am not able to see how you solved this as there is no mention about the USER Parameter that has to be executed.

Would be great if u could pls elaborate your answer.

Thanks

Dany

Read only

Former Member
0 Likes
787

Hi Priya,

You can pass sy-uname for "AUTHCKNAM" as

CALL FUNCTION 'JOB_SUBMIT'

EXPORTING

  • ARCPARAMS =

authcknam = sy-uname

jobcount = jobcount

For more information on how to use this, do a where-used list on FM "JOB_SUBMIT" and you will get better idea..

Hope this helps.

Regards,

Vivek

PS: Award points if helpful