Welcome to myCobol.ovh Monday, 29 September 2025, 06:44

myCobol.ovh Glossary
Categories all   ·   Context   ·   Concept   ·   Syntax   ·   Event   ·   Standards  
Subjects all   ·   Cobol  
Letters all  #  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z
Terms  SBCS   scope terminator   section   section header   section-name   selection structure   sentence   separately compiled program   separator   separator comma   separator period   separator semicolon  ..more

section header
Category Syntax
Subject Cobol
A combination of words followed by a separator period that indicates the beginning of a section in any of these divisions: ENVIRONMENT, DATA, or PROCEDURE. In the ENVIRONMENT DIVISION and DATA DIVISION, a section header is composed of reserved words followed by a separator period. The permissible section headers in the ENVIRONMENT DIVISION are:
CONFIGURATION SECTION.
INPUT-OUTPUT SECTION.
The permissible section headers in the DATA DIVISION are:
FILE SECTION.
WORKING-STORAGE SECTION.
LOCAL-STORAGE SECTION.
LINKAGE SECTION.
In the PROCEDURE DIVISION, a section header is composed of a section-name, followed by the reserved word SECTION, followed by a separator period.