What are the ways you can generate a copybook?
Answers were Sorted based on User's Feedback
Answer / nag(igate)
1. using 3.4 option without fileaid
2. using fileaid
| Is This Answer Correct ? | 1 Yes | 0 No |
Which is not true about evaluate statement
what are the isolation levels and where we use it in the db2 program
What is the difference between SEARCH and SEARCH ALL? What is more efficient?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
How to recover a deleted source physical file from library?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
given the following piece of code: CALL SUB-PGM USING A, B, C. CALL SUB-PGM USING A, C, C. (a) Both CALL statements will always produce same result. (d) Both CALL statements may produce different result. (c) Compile-time error because SUB-PGM is a dataname. (d) Compile-time error because A, B, C are used twice.
How to remove 2 duplicate records and copy only one using job control language?
What is report-item in COBOL?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
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?