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 is the difference between Call and a Link?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
what is label record is standard or omitted in file description of data division?
How do you come out of an EVALUATE statement?
how would find total records in files using seqientional
What are VS COBOL 11 special features?
What is COMP SYNC?
How to display string in the reverse order using occurs clause?
how can we fetch 3 records in cobol pgm any coding pls ?
What will happen if we try to create GDG (+2) generaton instead of (+1) generation?
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?