WORKING-STORAGE SECTION.
1 GROUP-ITEM.
05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50.
05 AMOUNT-2 PIC 9(4)V99 USAGE COMP.
PROCEDURE DIVISION.
MOVE ZERO TO GROUP-ITEM.
ADD 50 TO AMOUNT-1.
DISPLAY AMOUNT-1.
STOP RUN.
how will be submit 1 jcl by other jcl? means that how 'll submit one job by other job??
which statement is used to end the in-stream procedure in a jcl?
What is the use of symbol // in jcl?
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?
How does the jcl specify the job to os?
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
describe the job statement, its meaning,syntax and significant keywords?
In how ways you can pass the data from Jcl to cobol ?
what is the compile process of cobol program expalin with code
What is the use of disp parameter?
How to get the last but one duplicate record of the file using Sort?