what is the use of keep and pass in disp
KEEP - Keep the data set even though the job terminates abnormally
PASS - pass the data set to further steps in the job
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the differences between COBOL and COBOL II?
Why do we use COMP-3 variables for computation, when we know that they are non displayable fields and require additional MOVE to numeric field before we populate it in output Reports?
Without using move verb how to move one variable to another.
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
how to convert vsam table into DB2 table?
What is perform what is varying?
how many bytes does s9(7)COMP-3 field occupies?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
In COBOL programming, what is PERFORM? What is VARYING?
if a pic 9(3) value 354,b pic x(2) value '46' then a)a>b 2)a<b 3)error
What is the Purpose of POINTER Phrase in STRING command
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.