Answer Posted / rishab
You need to compile your program.
Once the load module is generated you can use tso command:
TSO CALL 'abc.pqr.xyz(progA)'
Here abc.pqr.xyz is your load module
and progA is your program name (best practice to have your
program member name same as your program-id).
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the function of the dd dcb keyword?
What do you understand by jcl?
Explain how can the submitting users racf authority be overridden in a job stream?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
How can the submitting users racf authority be overridden in a job stream?
what is use of dsn parameter in dd statement?
How can a jobs execution priority be modified?
What is the difference between the positional and keyword parameters? Give examples.
Explain about LMFREE�free data set from its association with data ID
what sort card you will use to copy the data from one dataset to another dataset?
what is the use of IEBGENER utility?
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
what is JCL?
if the submitter of a job wants to inform another user about the job completion, how can it be done?