Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?
Answers were Sorted based on User's Feedback
Answer / cj
Can be done in JES3 using the following:
//*MAIN DEADLINE=(0700,B,012086)
Is This Answer Correct ? | 8 Yes | 3 No |
Answer / piyush mani
tnx 4 answer but can any1 tel me what is meaning of b in answer 3.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kumar
//job23 JOB (accounting),CLASS=X,MSGCLASS=X
//*
set sysdate = 862001
set systime = 07000000
//*
// step exec pgm = iebgener
//steplib dd dsn= '. . . . . '
//sysut1
//sysut2
//sysin dd dummy
/*
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / shafi
//JOB123 JOB (accounting),CLASS=X,MSGCLASS=X
//*
// SET SYSDATE=200186
// SET SYSTIME=070000
//*
//STEP1 EXEC PGM=IEFBR14
Is This Answer Correct ? | 1 Yes | 7 No |
Can we give two user name in NOTIFY parameter in JOBCARD
can we write a proc with in a proc
Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?
I have a input file. Data like: ABCDEFGH.... i want out put file like AB BC CD DE....How can do this??
How to ALTER the name of a GDG ?
Matching Logic in Jcl not in cobol.Could any one please answer this question
what are JCLLIB and STEPLIB in JCL?
Give the syntax of job specifying jcl statement.
i) Difference between ps, esds, ii) Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
What is the function of the dd mgmtclas keyword in sms datasets?
When cursor is not closed what is the error?
I have 10 steps, I want to run STEP1 TO STEP4 then I should not run STEP5 and STEP6. Aganin I want to execute from STEP7 to STEP10. ONLY using CONDITION CODES how can we execute this process? 1. Where we can set cond codes for STEP5 and STEP6? 2. How can we execute remaining steps from STEP7 to STEP10?