what is a cataloged procedure ?
Answer / shakila vinayagam
A procedure that you catalog in a library is called a
cataloged procedure.
A cataloged procedure may consist of these JCL statements:
CNTL, command, DD, ENDCNTL, EXEC, IF/THEN/ELSE/ENDIF,
INCLUDE, OUTPUT JCL, and SET. Optionally, a cataloged
procedure can begin with a PROC statement and end with a
PEND statement. If coded, PROC must be the first statement
in the procedure.
The library containing cataloged procedures is a
partitioned data set (PDS) or a partitioned data set
extended (PDSE). The system procedure library is
SYS1.PROCLIB. The installation can have many more procedure
libraries with different names. You can also have
procedures in a private library. The name of a cataloged
procedure is its member name or alias in the library.
When a cataloged procedure is called, the calling step
receives a copy of the procedure; therefore, a cataloged
procedure can be used simultaneously by more than one job.
| Is This Answer Correct ? | 5 Yes | 1 No |
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
What is the purpose of dd?
What are the utility programs in jcl?
Suppose i have a file with 10 recs and i want to skip only the 7 th record and copy the rest into another file. How do i do it using SORT?
What is the differentiation between TRK,cyl, and Bytes... how they can be connected??
Can we create VSAM file by using IEBGENER?
How to find the length of variable length copybook using fileaid ??
List in order the hierarchical levels of jcl?
how GDGs are concatinated?
how to identify the file used in the JCL is an VSAM file. Just seeing the JCL code how can we track the file as VSAM file?
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
suppose i have 10 job steps and i want to execute only step 6.How to write?