how to submit a jcl by cobol program.
clear me with an example.
Answer Posted / leena_kulkarni
You just write out your JCL syntax to a file and assign it
to the internal reader to be automatically fired off when
you close the file.
SYNTAX:
When you close file, write down the below line.
//SYSUT2 DD SYSOUT=(*,INTRDR)
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is rmode(24)
What are the pertinent COBOL commands?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
input= ,,,, mainframe training ,,, hyderabad .... location.... output1=$ mainframe training in hyderabad location$ output2=**** mainframe training in hyderabad location ****. In this pgn when we give input considering the spaces the output is displayed in this format.Like in the place of ,,,, $ should be displayed likewise.So please helpmeout.
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
Name the sections present in data division.
What is the difference between comp and comp-3 usage?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
What are the cobol coding sheets?
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
how do you reference the printer file formats from cobol programs
how do you reference the variable block file formats from cobol programs
Whats the difference between search & search ALL?
What is the use of intialize verb?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.