how to run batch program without jcl?

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


Please Help Members By Posting Answers For Below Questions

Explain the function of the dd dcb keyword?

961


What do you understand by jcl?

839


Explain how can the submitting users racf authority be overridden in a job stream?

888


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

1284


How can the submitting users racf authority be overridden in a job stream?

1017


what is use of dsn parameter in dd statement?

924


How can a jobs execution priority be modified?

1037


What is the difference between the positional and keyword parameters? Give examples.

991


Explain about LMFREE�free data set from its association with data ID

1328


what sort card you will use to copy the data from one dataset to another dataset?

978


what is the use of IEBGENER utility?

924


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

1735


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

2299


what is JCL?

952


if the submitter of a job wants to inform another user about the job completion, how can it be done?

1021