i want to avoid the positional parameter how to code it ?
Answers were Sorted based on User's Feedback
Answer / venkat
without specifying the value put a comma(,).
Ex:
//job00001 job ,,notify=&sysuid
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / nikita kekre
To avoid positional parameters,mark their presence with the
help of comma.
eg in Jobcard if i dnt wanna code accounting info and
programmer's name(both r positional parameters thn i cn
simple use commas)
//t12344J JOB ,,CLASS=A,MSGCLASS=A,NOTIFY=&SYSUID
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / pratim dasgupta
if only keyword parameters are coded! no need to give comma
even. if even one positional parameter is coded then comma
is necessary!!
Is This Answer Correct ? | 3 Yes | 0 No |
1) Is CLASS used for assigning Priority (as we say a job having class '6' will run before the job having class '5'? then what is the difference between CLASS and PRTY ? 2) In a same JCL, 2 JOB statements with different Classes and NO PRTY are submitted ? which will run first ? & with different classes and different PRTY also, which will run first now ?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
My JCL contains four steps //STP1 A(+1), DISP = NEW //STP2 A(+2), DISP = NEW //STP3 A(+3), DISP = NEW //STP4 A(+1), DISP = OLD STP3 was abended and I want restart my JCL from STP3 onwards & what are the precaution I want to take & what are the changes I need to make. Pls let me know.
Definition of COND parameter in JCL
What happens if both JOBLIB and STEPLIB is specified ?
If I update one or more members in a pds in the step 1, how can I reach these new contents to be used in the step 2 of the same job? To start a new job via intrdr is not satisfactory, because I must solve this problem in one job.
IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
What is the function of a dd statement?
Can we call instream to catalog and catalog to instream?
If your job fails at particular step then what would be the return code for next steps
what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include temporary file used for sorting in assign statement?