How to Run same steps in a jcl 'n' number of time each time with different input files without repeating the steps n times?
How to Run same steps in a jcl 'n' number of time without repeating the steps n times?
Latest Answer: Hi,if you want to run the same steps repeated number of times.code all those steps in a Proc (either ctaalog or instream), and call the proc when ever and where ever u want.please correct me if i am wrong incase.jinka.saikrishna@gmail.com ...
What is the SORT CARD pertaining to the following statements:SD SORT-FILE.01 SORT REC. 05 NAME PIC X(10). 05 FILLER PIC X(45). 05 DEPIT PIC X(15). 05 AGE PIC 9(3). 05 SALARY PIC 9(6)V99
Latest Answer: Sort Fields=(1,10,CH,A,74,5,PD,A,71,3,ZD,D) ...
Latest Answer: No...it wont allocated....why because.....datastes will be allocated only when the job executes....but here.....JCL error means.....job is not executed ...
Latest Answer: its not intdr, its intrdr which is a internal reader used to submit the jcl through the cobol program. ...
The step contains more than 3273 DD statements then what will happen the job if I submit..?
Latest Answer: Maximum of 255 steps will be executed at once. but if you want to execute more then 255, then divide the jcl in parts. run the first JCL and after checking the return code run the next JCL within the same jcl. It is similar to running a job within ...
Latest Answer: The SYSOUT parameter is used to send the output which is generated during job execution.With the SYSPRINT DD statement you tell into which output queue you want the utility to place its messages and report.SYSOUT and SYSPRINT are two different output ...
Latest Answer: Data exception
Data field was un-initialized, or was initialized incorrectly.
Input data was incorrect.
Uncontrolled loop operated on decimal fields.
Record description did not match actual field lengths.
Fields in decimal arithmetic operation ...
How to send a Mainframe file to a mailbox using a JCL? Mailbox could be any? What parameters need to be passed in the JCL like - Host address, mail address, etc..?
Latest Answer: Try this out//YOURID0A JOB,P966EXTRCTKCC,REGION=4096K,MSGCLASS=H,CLASS=T, // NOTIFY=&SYSUID //SENDNOTE EXEC PGM=IEBGENER //SYSIN DD DUMMY ...
//MYJOB JOB(T,U202,SH1),'FRANK SMITH',CLASS=A //STEP01 EXEC PGM=PGM01 //INFILE DD DSN=TEST.PAYROLL.DATA,DISP=SHR //SYSOUT SYSOUT=A //STEP02 EXEC PGM=PGM02 //INFILE DD DSN=TEST.PERSONEL.DATA,DISP=SHR Which change to STEP02 above will specify that STEP02 CANNOT be automatically restarted by an operator if that step fails during execution?
Choice 1 //STEP02 EXEC PGM=PGM02,AR=NS Choice 2 //STEP02 EXEC PGM=PGM02,RST=NOP Choice 3 //STEP02 EXEC PGM=PGM02,ARST=NOP Choice 4 //STEP02 EXEC PGM=PGM02,OP=NST Choice 5 //STEP02 EXEC
View page << Previous 1 [2] 3 4 5 6 7 8 9 10 Next >>

Go Top