Answer Posted / tiny
PERFORM ... ...
END PERFORM
When the body of the perform will not be used in other
paragraphs. If the body of the perform is a generic type of
code (used from various other places in the program), it
would be better to put the code in a separate para and use
PERFORM paraname rather than in-line perform.It increases
the readability of the program.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the difference between structured cobol programming and object alternativelyiented cobol?
How arrays can be defined in COBOL?
What are the pertinent COBOL
What are the access modes of START statement?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
What are all the divisions of a COBOL program?
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
How to remove 2 duplicate records and copy only one using job control language?
Write a program to explain size error.
how to access the file from prodution from changeman tool and to submit a file to production
Differentiate between structured cobol programming and object-oriented cobol programming.
What are the different types of condition in cobol and write their forms.
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
) How do u handle errors in BMS macro?
I have a File that has duplicate records. I need only those records that occur more than thrice.?