View previous topic :: View next topic
|
Author |
Message |
rajesh_m
New User
Joined: 15 Apr 2008 Posts: 39 Location: India
|
|
|
|
When ever we submit a job it will prompt jobname(jobid)..... is there any possibilty to submit a job with out any prompt. |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10889 Location: italy
|
|
|
|
You get the prompt when the submit command does not find a proper job card
check the thing You are submitting an put a valid job card in it |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
Also, make sure the job name being submitted is not only the userid. |
|
Back to top |
|
|
rajesh_m
New User
Joined: 15 Apr 2008 Posts: 39 Location: India
|
|
|
|
My intension is when ever u submit the job it should not prompt any thing and also when ever the job excution is completed it should not show maxcc=0 message also. |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10889 Location: italy
|
|
|
|
Quote: |
y intension is when ever u submit the job it should not prompt |
as I posted before ensure that the job is properly written |
|
Back to top |
|
|
acevedo
Active User
Joined: 11 May 2005 Posts: 344 Location: Spain
|
|
|
|
rajesh_m wrote: |
My intension is when ever u submit the job it should not prompt any thing and also when ever the job excution is completed it should not show maxcc=0 message also. |
are you talking about NOTIFY? |
|
Back to top |
|
|
Craq Giegerich
Senior Member
Joined: 19 May 2007 Posts: 1512 Location: Virginia, USA
|
|
|
|
rajesh_m
When you are submitting your jobs do you have a job card in the jcl or is the system generating one for you? |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello Rajesh,
To summarize, if what you submit has a valid job statement including a jobname of other than only the userid, and there is no NOTIFY, i believe you will have what you want. |
|
Back to top |
|
|
Anuj Dhawan
Superior Member
Joined: 22 Apr 2006 Posts: 6248 Location: Mumbai, India
|
|
|
|
Hi,
This happened to me when the JOB Name was less than eight characters. |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10889 Location: italy
|
|
|
|
Quote: |
This happened to me when the JOB Name was less than eight characters. |
sorry to disagree ( rather SUBMIT and JCL disagree )
just tested no issue at all with jobname
( unless some exits enforces something different from the vanilla environment )
maybe the job name was Your TSO userid |
|
Back to top |
|
|
dbzTHEdinosauer
Global Moderator
Joined: 20 Oct 2006 Posts: 6966 Location: porcelain throne
|
|
|
|
since your TSO userid is already used as an active job name. without the additional character to a jobcard that only uses the tso userid as job name, the submitted job would wait (duplicate job name) until the first userid job (TSO session) ended. |
|
Back to top |
|
|
Anuj Dhawan
Superior Member
Joined: 22 Apr 2006 Posts: 6248 Location: Mumbai, India
|
|
|
|
Hi,
enrico-sorichetti wrote: |
sorry to disagree ( rather SUBMIT and JCL disagree ) |
Ah..but I've to agree to your disagreement..when I used a JOB card as
Code: |
//JOB JOB (UU255507641),XX1234A,
// MSGCLASS=R,CLASS=0, |
it went fine; but when I use
Code: |
//XX1234A JOB (UU255507641),XX1234A,
// MSGCLASS=R,CLASS=0, |
(where XX1234A is my RACF ID.)
I got the following message
Code: |
IKJ56700A ENTER JOBNAME CHARACTER(S) - |
|
|
Back to top |
|
|
Anuj Dhawan
Superior Member
Joined: 22 Apr 2006 Posts: 6248 Location: Mumbai, India
|
|
|
|
dbzTHEdinosauer wrote: |
since your TSO userid is already used as an active job name. without the additional character to a jobcard that only uses the tso userid as job name, the submitted job would wait (duplicate job name) until the first userid job (TSO session) ended. |
Yup, agreed. The moment I read enrico's reply, it enlighten in mind. Good point to remember for me, Thanks Big B. |
|
Back to top |
|
|
|