what is JCLLIB and PROCLIB in jcl and their syntax
Answers were Sorted based on User's Feedback
Answer / raghu
//proccall jcllib order=proclib.name,disp=shr
//proclib dd dsn=proclib.name,disp=shr
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / ashok kumar
jcllib is used to identify procedure,include private liveries
syn:
//jclnam jcllib order=(lib1,lib2)
proclib is having achval proc private liberes
// procname proc
// steps.....
//.....
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / ch.mohan
jcllib is identify the path of proclib,and proclib is
identify the procedure name
syntax
//proclib jcllib order=userid.name.proclib.filename
| Is This Answer Correct ? | 6 Yes | 9 No |
what is mainframe?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
how to set dependancy for jobs?
Describe the JOB statement, its meaning, syntax and significant keywords?
If a JOBSTEP abends, AND without using COND also, all the subsequent steps execute, then what is the use of using EVEN ? Why do we use EVEN when without it also all the JOBSTEPs execute ?
How do you designate a comment in JCL?
what is the resolution for sb37 error
What are isolation levels? Where do we need to specify them in compiling JCL?
WORKING-STORAGE SECTION. 1 GROUP-ITEM. 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50. 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP. PROCEDURE DIVISION. MOVE ZERO TO GROUP-ITEM. ADD 50 TO AMOUNT-1. DISPLAY AMOUNT-1. STOP RUN.
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
What does the keyword DCB mean and what are some of the keywords associated with it?
Is their any set of rules for dd? Explain.