Answer Posted / rangarao chitipothu
STEPLID and JOBLIB both are used to specify the location of the load-modules to the operating system.
but here
---> In steplid is used for single step.
---> In joblib is used for multiple steps.
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
How jcl is used for testing batch programs?
i want to store 20 digits . how will u do it in cobol ?
what happens in execution stage in job processing?
what are JCLLIB and STEPLIB in JCL?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
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
For what purpose steplib and joblib are used ?
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
What parameters can be used to limit the number of records written to a sysout dataset?
what is use of disp parameter in dd statement?
what is DD statement is used in JCL?
What are steplib and joblib?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
In job processing, what happens in conversion stage?