I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?
16 34390I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ( How do you code instream data in a JCL? )
9 24108There are a set of 10 files and a customer will be selecting random no of files(i.e they may be more than 2, may not be in the order).Sometimes he might just select one file or sometimes no files at all.How do you code a JCL for this? Is it possible to code just JCL alone for this problem?
9 18525How can I write the joblog in the spool on normal end of a job step and direct the joblog to a dataset only if the step abends?
2 8763
Is their any limit for data sets?
what sort card you will use to copy the data from one dataset to another dataset?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
Define concatenating?
How to resolve the error "WER488A JOIN CAPACITY EXCEEDED" I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem? I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
what happens in execution stage in job processing?
how would you create a temporary dataset? And where will you use them?
a dd statement has 2 types of parameters. Name them?
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
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?
How can values be passed from the job stream to an executable program?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
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