describe the dd statement,its meaning,syntax and keywords?
Answer / krithiga hari
DD statement contains the information about the data that
will be read or written within the job. The DD statement
must immediately follow the Exec statement. It should exist
for all the datasets.
Following are the parameters of DD statement.
ddname, DSN - Dta Set Name, DISP - Disposition (sattus,
normal disposition, ubnormal disposition)
Example:
//JOB1 JOB A123, 'KRITHIGA'
//STEP1 EXEC PGM=PGM1
//DDNAME DD DSN=DATA.ORG.JCL.TEST,
DISP=(NEW,CATLG,DELETE)
| Is This Answer Correct ? | 1 Yes | 0 No |
I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ( How do you code instream data in a JCL? )
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
i have step1,step2,step3 from where can i start coding cond parameter ?
wht r s722,s822,s122 and s222 abends pls reply fast
Must tape dataset definitions include vol=ser specifications?
There are a set of 10 files and a customer will be selecting random no of files(i.e they may be more than 2, may not be in the order).Sometimes he might just select one file or sometimes no files at all.How do you code a JCL for this? Is it possible to code just JCL alone for this problem?
My JCL have five steps & I created new versions of GDG in first step through fourth step & fifth step I was refered Step one GDG version. My JCL got abend at 4th step and how I can restart my JCL Please let me know the answers. //STEP1 EXEC GDG1(+1) DISP=(NEW) //STEP2 EXEC GDG1(+2) DISP=(NEW) //STEP3 EXEC GDG1(+3) DISP=(NEW) //STEP4 EXEC GDG1(+4) DISP=(NEW) //STEP5 EXEC GDG1(+1) DISP=(OLD)
11 Answers HCL, IBM, L&T, TCS,
I have a input file. Data like: ABCDEFGH.... i want out put file like AB BC CD DE....How can do this??
What it does If we specify TYPRUN=P & it is not substituted by SCAN 0r HOLD in VALUE SET.
in production region 100 steps are running,but i need to run only step5 without changing code how can i do it?
Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT COUNT(1)?
Can we delete the data using IEFBR14 , IEBGENER??