What are steplib and joblib?
No Answer is Posted For this Question
Be the First to Post Answer
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The DISP in the JCL is SHR and the program opens the file in EXTEND mode. What happens ?
How do you submit a JCL under CICS environment ?
what is the purpose of SYSOUT parameter in the DD statement?
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
Definition of COND parameter in JCL
Can we Execute a job without specifying Job Name in the Job Card?
What is use of restart and how to use it?
the command to open a dataset directly from the JCL instead of opening it separately using 3.4 option.
Can we change a FB file to VB file in JCL? Please help
what happens if job falls in loop ? how to resolve it ?
if we give TIME=0 how many sec that job/step
I have a Symbolic Parameter which can have a value say 01 or 02 etc. Now consider i have another Symbolic parameters which is used to get 3 digit code of months (JAN, FEB, etc) but for that i need to check the first symbolic parameter's value and provide its corresponding month's name in the second symbolic parameter. Say IF sym1 = 01 then sym2='Jan' ENDIF etc... In JCL, IF condition is used for RC, ABEND purposes of a step etc. When i use Symbolic parameter in IF clause it is showing Error message. Is there a way to get the above result possible in JCL. If you could provide me with an example, i would understand it better.