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
i want to see the jobs in skeleton queue in diff region. (eg. 7 regions are running means , i want to see all the jobs in 7 regions which are in skel queue using 1 command)
Brief description of inline procedure of jcl.
which utility is used to run a cobol-db2 program?
What are the valid DSORG values ?
What does a disposition of (NEW,CATLG,KEEP) mean?
What type of versions we r using in mainframe (jcl, cobol, db2, vsam, cics)?
Is it possible to take a PDS and write it to a GDG? If so, can you provide an example? Thanx
What is catelog procedure and how many catelog procedure to use in one job?
can we have more than one job in a single job card that is we are specifying only one 'job' statement in the jcl.
How to pass values in jcl to cobol?
when we use sysprint and sysout statements
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?