what is rediffine clause?in what situation it can use?give me
real time example?
Answer / naidu sekhar yandrapu
When u want to use same working storage area for different
variables. u must ensure that the space must not use at same
time of program execution.For example perform xyz uses a
space ABCD pic x(9) and it will not be used .then other
part of the program can use that space ABCD.
| Is This Answer Correct ? | 0 Yes | 0 No |
What do you feel makes a good program?
whats the difference between search and search all?
what is MSGLEVEL?
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
What is level 66 used for ?
Are you comfortable in cobol or jcl?
What is different between variable length and fixed length?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
What is the difference between a DYNAMIC and STATIC call in COBOL?
I am getting S00F abend when i try to compare two variable of different pic class,one variable is of 9(09) and another is S9(09) comp-3. First i moved the data from S9(09) comp-3 to 9(09), but no luck. So i tried to move the data from S9(09) comp-3 to X (09) and move to 9(09). I am getting same error message, Please help me to find solution for this ptoblem. ERROR MESSAGE - "The system or user abend S00F R=NULL was issued."
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
what is search and searchall?what is the diffrence between them?give an best example?