How can you execute a COBOL program via SYSIN in JCL?
Answer / vinay sonar
cut the COBOL program and paste in into
//SYSIN DD*
//
and then submit the job.
Here COBOL program acts like instream data for JCL
| Is This Answer Correct ? | 1 Yes | 7 No |
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
What statement marks the end of an in-stream or catalogued procedure?
Can we browse or edit the GDG dataset if it is a tape entry?
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.
hi iam learning mainframes,can anybody tell me how to check JCL errors.(after submiting the JCL we have check in spool or is there any other method)
I need exexution process for JCL programs
There is one QSAM is the VB file. i want to get the first characters in this file and change those characters from'abcd' to '1234' and creat a vasm file to put '1234' in it. how to do in only JCL. if it not QSAM, it's VASM and VB. how to do it.
What is catelog procedure and how many catelog procedure to use in one job?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
In how ways you can pass the data from Jcl to cobol ?
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 ?