What is the function of //cntl statement?
No Answer is Posted For this Question
Be the First to Post Answer
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 we merge two input files from two different jobs into one output file ? Please ans any one ASAP?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.
Which statement is used to identify the private libraries in job?
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
Explain about Internal Sort
How to copy one PS file to multiple PS files with same data?
What is the parameter to be passed in the job card for the unlimited time , irrespective of the job class ?
what are the technical terms for // /* in jcl
I have an job having three job steps.Suppose i want to call a pgm in step2 and aproc in step3.How to write the code?
How to submit multiple jobs. These jobs are members in PDS. The second job should run if the first job runs successfully and so on.