What is the purpose of the PARM keyword in the EXEC statement?
Answers were Sorted based on User's Feedback
Answer / venkatachalam
Passing the input to the COBOL Program. The length of the
parm parameter size only 100 characters.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / guest
The value after the PARM= specifies control information to
be passed to the executing program of the job step.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kranthi kumar m
parm is a activity level parameter,it i used to pass maximum
100 characters of data from jcl to cobol program,and it is
mainly used when we want to pass date n time..... if we want
to pass large volumes of data we dn't use pam parameter
instead of it we use 'sysin dd*'
Is This Answer Correct ? | 1 Yes | 0 No |
What is the purpose of dd?
how to resolve sb37,sd37 se37 abends
how to create gdg with out using idcams utility
Hi, Say I have 10 flat files and I want to copy all these 10 flat files to a GDG versions flat files (I have GDG base: FDWS01.TEST.RESTORE) in one shot. Can we do that in one shot using a JCL. May be by using IEBGENER. It's a bit urgent. So anyone's fast rely would be appreciated.. Thanks in advance.. 10 flat files ----------------------------------- FDWS01.SUB.RESTORE1 FDWS01.SUB.RESTORE2 FDWS01.SUB.RESTORE3 ; ; FDWS01.SUB.RESTORE10 TO GDG versions ----------------------- FDWS01.TEST.RESTORE.G0001V00 FDWS01.TEST.RESTORE.G0002V00 FDWS01.TEST.RESTORE.G0003V00 ; ; FDWS01.TEST.RESTORE.G0010V00
What is RESTART? How is it invoked?
what is a MODELDSCB?
If a field is declared as a comp-3 field and if we want to sort a dataset based on this field, then how will the sort card be??? e.g- if we want to sort by a field which is defined as a PIC X(5) then we will mention - sort fields=(1,5,ch,a). Likewise if a field is defined as PIC S9(10)COMP-3 then in this case how will the sort field be defined (because in this case a sign is also involved)???
Mention the types of job control statements?
what sort card you will use to copy the data from one dataset to another dataset?
Current version of GDG is ID.GDG.FILE.G0001V00. JCL has procedure with 2 steps like below, What will be the output file name in each step ? PROC starts Step 1 has ID.GDG.FILE(+1) Step2 has ID.GDG.FILE(+4) PEND Similarly, JCL has 2 steps in 2 separate procedure. What will be the output file names here ? PROC starts Step 1 has ID.GDG.FILE(+1) PEND PROC1 starts Step2 has ID.GDG.FILE(+4) PEND
How to concatenate different LRECL of files?
Explain COND used in JCL?