Requires Free Membership to View
Interesting question! I do not know any pros or cons for using SECTIONs as procedure names in the PROCEDURE DIVISION of your COBOL program, as opposed to using paragraph names to name your procedures. I can explain the difference; maybe that would help you? If not, ask again!
There are several reasons for using paragraphs or sections to name parts of your program. One is documentation; the other is to allow execution via PERFORM statements (or INPUT and OUTPUT PROCEDURE phrases of the SORT statement). With SECTIONs, you could execute several paragraphs contained in the section or execute individual paragraphs. I guess that would be a PRO, unless you don't want that. :-) Example:
MAIN Section. * Perform all of the code and paragraphs in SubSect Perform SubSect. * Perform only paragraphs Para1 in SubSect Perform Para1. SubSect Section. Para1. Stuff1. . . Para2. Stuff2. . . Para3. Stuff3. . . EndSect Section. GoBack
This was first published in March 2005
Data Center Strategies for the CIO

Join the conversationComment
Share
Comments
Results
Contribute to the conversation