A maximum of 100 chars can be passed to Cobol through Parm
in JCL, If we want to pass more than 100 Chars how we can
do it ?
Answers were Sorted based on User's Feedback
Answer / sweetie
As the PARM parameter is not able to pass more that 100
chars, we have to pass the parameter thru Instream with the
help of SYSIN DD *
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / k.suamn
we can use instrem data throug sysin or by keeping data to
be passed in a ps&theninvoke the ps.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / keerthi
We need to use TSQ so tat more data can be passed
| Is This Answer Correct ? | 0 Yes | 6 No |
Explain the purpose of dd dummy statement?
Suppose I have seven jobs to do, but I want to hold one than how can I do this?
How do you submit JCL via a Cobol program?
once we submitted the job to the operating system, how can we cancel the job before execution?
I have 2 steps in my exec statement , in first step I am creating a gdg, and the output of this step is going into second step as a input, and this second step is abended , now how could i approach in this case.
if the submitter of a job wants to inform another user about the job completion, how can it be done?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
Explain how can return codes be tested before execution of a job step?
I have two input files i/p1 name id-key flag date i/p 2 name id-key date if id-key matches in the both the files then it should write the output file from i/p1 with flag 'Y'. It should be done thru JCL sort card ,Please provide the info on this. ---Note : output file should have all records from i/p1 with proper Flag.
what is the meaning of keyword in jcl?what is is opposite?
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?