Define in-line perform?
Answer / jayaram
The set of COBOL statements is written in between perform and end-perform. We should not code any period for these statements untill end-perform. THis code is used in once if you want to use the same code again you will write code once more.
| Is This Answer Correct ? | 0 Yes | 0 No |
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
What is the difference between COMP & COMP-3 ?
What are the functions like c or c++ in cobol?
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
What does MAXCC 3 means? It is used in one my codes.
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
What is the difference between CALL BY VALUE and CALL BY CONTENT?
What is cobol?
what will happen if i give program name and member name as different? program runs successful or w'll abend?
S9(5)V9(2) occupies how many bytes memory ?
what is record label is empty or standard in file description of data division?
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks