can any one plzzzzzz tell the jcl code for creating ps
using idcams
Answers were Sorted based on User's Feedback
Answer / bejjanki
Why you want to use "IDCAMS" when "IEFBR14" Utility is
already available.
IEFBR14 - Is used to create only files(PS/PDS).
//Jobcard
//STEP EXEC PGM=IEFBR14
//DD1 DD DSN=KK.PS.FILE,DISP=(,CATLG,DELETE),
// SPACE=(TRK,(10,2),RLSE),
// DCB=(LRECL=80,BLKSIZE=800,RECFM=FB),
//
Let me know if any concerns.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / harsha
//STEP001 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//DD1 DD DSN=...,DISP=...,
// DCB=...,UNIT=...,SPACE=...
//SYSIN DD DUMMY
| Is This Answer Correct ? | 6 Yes | 4 No |
//ERFDS JOB //STEP1 //STEP2 //STEP3...COND=(4,LT) //STEP4 1.CONDITION IN STEP3 REFERS TO WHICH STEP'S RETURN CODE (STEP1 OR STEP2)? 2.IN ABOVE PROGRAM IF CONDITION SATISFIES IN STEP3 WHICH STEPS WILL EXECUTE?? AND WHY? IF CONDITION IN STEP3 SATISFIES
How do You skip a Step In JCL?
In JCL I have 5 steps,I need to execute 1st,2nd and 5th steps only,can any one answer me please?
I've one sequential file, That file contains millians of Junk & CHAR recoreds example File 1 ,,,,,...,,,.....,.,.INFOSYS.....,,,,,,,,,,,WIPRO..........., ,...,..,. My questions is : I want omit the 44th posstion to 4 CHAR (WIPRO) remaining things I want output file (including Junk CHAR also)... How can we slove this problem & give me a syntax. Please provide the result as soon as possible.
What is Cataloged Procedures?
What is the difference between a symbolic and an override in executing a PROC?
What is the meaning of data definition name (ddname) and dataset name (dsname) in the DD statement?
what is the alternative to model parameter?
Name some of the JCL statements that are not allowed in procs.?
Can I send output of job to my remote device careerride123?
A job has 90 steps i want to execute only step7 and step15
How to find the number of duplicates in a file using Sort?