Answer Posted / guest
This error is faced when we execute the COBOL program. The
main reason for this error is that a variable is defined
with less characters and we are trying to move data which is
larger than the actual storage space.
| Is This Answer Correct ? | 39 Yes | 27 No |
Post New Answer View All Answers
Explain the function of job statement in jcl?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
what is the purpose of coding class parameter in job statement?
What statement can be used to send data to another mvs jes3 node?
What are some jcl statements that are not allowed in procedures?
write a jcl to execute a job by 7:00 am on jan 20,1986?
what is the JCL statement consists of?
what are the various stages of job processing?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
when does a dataset go uncataloged?
Explain the job statement in jcl?
How can a fb file convert to vb file using sort program?
Explain dd statement in jcl?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
What is condition checking in jcl? Is this possible?