What are the parameter we cannot use in procedure?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about Internal Sort
I have a PDS and want to omit few rows of all members of a PDS. How to do it?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
How do you send the output of a COBOL program to a member of a PDS?
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
What will happen when we try to pass data from JCL to COBOL using PARM parameter without declaring the length field in Linkage Section?
//ERFDS JOB //STEP1 //STEP2 //STEP3...COND=(4,LT) //STEP4 1.CONDITION IN STEP3 REFERS TO WHICH STEP'S RETURN CODE (STEP1 OR STEP2)? 2.IN ABOVE PROGRAM IF CONDITION SATISFIES IN STEP3 WHICH STEPS WILL EXECUTE?? AND WHY? IF CONDITION IN STEP3 SATISFIES
Ques: How can we code COND parameter in a JCL so that only even steps (or only odd steps) get execute??
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
Explain about LMGET�read a logical record from a data set
how to convert fb to vb in jcl ?
Suppose i have 2 steps in my pgm. Step1- creates a file, Step2 - generates report from file in step1, What changes have to be made in Step2, so that if the file in Step1 is empty Step2 should not be executed? No changes to be made to Step1.