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
No Answer is Posted For this Question
Be the First to Post Answer
A job has 150 steps i want to execute only 57th step
What you mean by skeleton JCl?
What does the one advantange of using IEBUPDTE?????
How to use COND Parameter in jcl
What is notcat 2 - gs?
Hi Please try to be to-the-point. 1) How to INCLUDE a JCL segment in a JOB ? (A Small example) 2) What is SPOOL and what is SPOOL FULL ? and how to direct the output of a Jobstep to SPOOL ?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
Is it possible to left uncode disp?
Does the terms, JOBLOG, SPOOL and SYSOUT indicate the same thing, i.e., where JCL and JES messages and statements are written ?
What are the difference between jcl and jes?
What is JOBLIB ?
THERE IS ONE STEP AS BELOW: //STEPJS060 EXEC PGM=XYX, COND=((200,EQ,JS010),(0,NE,JS020.C),EVEN) COULD ANY ONE EXPLAIN HOW COND PARAMETER WORKS HERE? I AM CONFUSED BECOZ OF "EVEN".