Cobol
Cobol
U41112-J-Z125-1-76 1
Target group and summary of contents Preface
2 U41112-J-Z125-1-76
Preface Target group and summary of contents
Bluish green print Fujitsu Siemens COBOL2000 compiler extensions to the COBOL
language standard ANS85. These include:
– implementor-defined extensions
– extensions from the Journal of Development (JOD)
– extensions from the X/OPEN Portability Guide
Orange print Language elements to be avoided in new programs, since they will
not be supported by future COBOL standards (obsolete elements).
It is advisable to remove them from old programs.
The "Contents" table gives an overview of the general structure and organization of the
manual.
The "Index" enables rapid access to desired information.
The most important terms and concepts used in this manual are defined in alphabetical
order in the "Glossary".
Other manuals are referred to in the text by their abbreviated titles. The full title of each
publication mentioned is given at the back of the manual under "Related publications".
The "Glossary" and "Index" sections have been excluded from the color qualification
system.
* The colors were chosen so as to ensure that readers who suffer from color-blindness will nevertheless be able
to distinguish the colored print from normal black print.
U41112-J-Z125-1-76 3
Acknowledgment Preface
1.3 Acknowledgment
The COBOL programming language described in this manual is based on the language
defined in the standard document "American National Standard for Information Systems -
Programming Language - COBOL, X.3.23-1985". In recognition of the efforts made to
develop and standardize COBOL, it is customary to precede a description of COBOL with
the following text:
"Any organization interested in reproducing the COBOL standard and specifications in
whole or in part, using ideas from this document as the basis for an instruction manual or
for any other purpose, is free to do so. However, all such organizations are requested to
reproduce the following acknowledgment paragraphs in their entirety as part of the preface
to any such publication (any organization using a short passage from this document, such
as in a book review, is requested to mention "COBOL" in acknowledgment of the source,
but need not quote the acknowledgment):
COBOL is an industry language and is not the property of any company or group of
companies, or of any organization or group of organizations.
No warranty, expressed or implied, is made by any contributor or by the CODASYL COBOL
Committee as to the accuracy and functioning of the programming system and language.
Moreover, no responsibility is assumed by any contributor, or by the committee, in
connection therewith.
The authors and copyright holders of the copyrighted materials used herein
FLOW-MATIC (trademark of Sperry Rand Corporation), Programming for the UNIVAC (R) I
and II, Data Automation Systems copyrighted 1958, 1959, by Sperry Rand Corporation;
IBM Commercial Translater Form No. F 28-8013, copyrighted 1959 by IBM; FACT, DSI
27A5260-2760, copyrighted 1960 by Minneapolis-Honeywell
have specifically authorized the use of this material in whole or in part, in the COBOL speci-
fications. Such authorization extends to the reproduction and use of COBOL specifications
in programming manuals or similar publications."
4 U41112-J-Z125-1-76
2 Introduction to the COBOL language
2.1 Glossary
This section contains definitions of the terms used to describe the COBOL language in this
manual. These terms do not necessarily have the same meaning for other programming
languages.
The definitions are brief summaries of basic characteristics. For detailed explanations and
syntax rules consult the later chapters of this manual.
Access mode
The physical representation, using either of the decimal point characters period (.) or
comma (,), of the decimal point position in a data item.
Alphabetic character
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, 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 and space.
U41112-J-Z125-1-76 5
Glossary Introduction to the COBOL language
Alphabet-name
Alphanumeric character
Alphanumeric function
A function whose value is composed of a string of one or more characters from the
computer’s character set.
A key, other than the prime record key, whose contents identify a record within an indexed
file.
Argument
Arithmetic expression
Arithmetic operator
A single character or a fixed two-character combination which belongs to the following set:
Character Meaning
+ Addition
- Subtraction
* Multiplication
/ Division
** Exponentiation
6 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Ascending key
A key upon the values of which data is ordered starting with the lowest value of key up to
the highest value of key in accordance with the rules for comparing data items.
A decimal point position which does not involve the existence of an actual character in a
data item. The assumed decimal point has logical meaning but no physical representation.
At end condition
Binary search
Blank lines
A blank line is one that is filled entirely with blanks in columns 7 through 72 in the COBOL
reference format.
Block
A physical unit of data that is normally composed of one or more logical records or a portion
of a logical record. The size of a block has no direct relationship to the size of the file within
which the block is contained or to the size of the logical record(s) that are either contained
within the block or that overlap the block. The term is synonymous with physical record.
Body group
U41112-J-Z125-1-76 7
Glossary Introduction to the COBOL language
Character
Character-string
Class (object-oriented)
A a set of objects with their attributes and methods, as described by the class definition.
Class condition
The class condition establishes whether the contents of a data item are
– completely numeric,
– completely alphabetic,
– completely uppercase,
– completely lowercase, or
– completely made up of characters defined by means of the class-name specified in the
SPECIAL-NAMES paragraph of the Environment Division.
Class-name (object-oriented)
A user-defined word that identifies a class.
Class-name
Clause
8 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Character Meaning
0 to 9 Digit
A to Z, a to z Letter
Ë Space (blank)
+ Plus sign
- Minus sign (hyphen)
* Asterisk
/ Stroke (virgule, slash)
= Equal sign
$ Currency sign
, Comma (decimal point)
; Semicolon
. Period (decimal point)
: Colon
" Quotation mark
( Left parenthesis
) Right parenthesis
> Greater than symbol
< Less than symbol
COBOL word
see "Word"
Collating sequence
The sequence in which the characters that are acceptable in a computer are ordered for
purposes of sorting, merging and comparing.
Column
A character position within a print line. The columns are numbered from 1, by 1, starting at
the leftmost character position of the print line and extending to the rightmost position of the
print line.
U41112-J-Z125-1-76 9
Glossary Introduction to the COBOL language
Combined condition
A condition that is the result of connecting two or more conditions with the "AND" or the
"OR" logical operator.
Comment entry
Comment line
A source line containing an asterisk (*) or slash (/) in the indicator area of the line, i.e. in
column 7 of the COBOL reference format.
Any combination of characters from the computer’s character set may appear in the
program text area of the comment lines. These comments are intended only for the
documentation of source lines.
The asterisk indicates a comment line. A slash indicates a comment line that generates a
page advance in the compilation unit before the line is printed.
Common program
A contained program in a nested source unit, whose name is provided with the COMMON
attribute. Such a program can be called by the directly superordinate program and also by
any "sibling program" or its "descendants".
Compilation group
A set of compilation units that are compiled together.
Compilation unit
A source unit that cannot be nested within other source units (program prototype, program
definition, class definition and interface definition). These units form the elements of a
compilation group and can be compiled separately.
Compile time
A statement, beginning with a compiler directing verb, that causes the compiler to take a
specific action during compilation. The compiler directing statements are COPY, REPLACE
and USE.
10 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Complex condition
A condition in which one or more logical operators act upon one or more conditions.
Computer-name
A system-name that identifies the computer upon which the program is to be compiled or
run.
Condition
A status of a program at run time for which a truth value can be determined. In this manual,
the term "condition" (condition-1, condition-2, ...) represents either a simple condition or a
combined condition consisting of the syntactically correct combination of simple conditions,
logical operators, and parentheses, for which a truth value can be determined.
Condition-name
A user-defined word assigned to a specific value, set of values, or range of values, within
the complete set of values that a conditional variable may possess; or the user-defined word
assigned to a status of a task switch or a user switch.
Condition-name condition
Causes a conditional variable to be tested to see whether its value matches any of the
values belonging to a condition-name.
Conditional expression
Conditional statement
A conditional statement specifies that the truth value of a condition is to be determined and
that the subsequent action of the object program is dependent on this truth value.
Conditional variable
U41112-J-Z125-1-76 11
Glossary Introduction to the COBOL language
Conformance
for objects:
A feature that enables an object with a given interface A to also be used where an object
with some other interface B is expected. The conformance between the interfaces ensures
that every operation of interface B is also supported by the conforming interface A.
for parameters:
The requirements for current and corresponding formal parameters as well as returning
parameters in calling and called run units.
Connective
Contiguous items
Items that are described by consecutive entries in the Data Division, and that bear a definite
hierarchic relationship to each other.
Control break
A change in the value of a data item that is referenced in the CONTROL clause.
More generally, a change in the value of a data item that is used to control the hierarchical
structure of a report.
The relative position within a control hierarchy at which the most major control break
occurred.
Control data-name
A data-name that appears in a CONTROL clause and refers to a control data item.
12 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Control footing
A report group that is presented at the end of the control group of which it is a member.
Control group
A contiguous set of data assigned to a control data item within the control hierarchy.
For a given control data item, the control group consists of the entire sequence of control
headings, control footings, and their associated report groups.
Control heading
A report group that is presented at the beginning of the control group of which it is a
member.
Control hierarchy
A designated sequence of report subdivisions defined by the positional order of FINAL and
the data-names within a CONTROL clause.
Conversion
The implicit transformation of numeric values from one format to another, or of index values
into table element numbers and vice versa.
– In the case of index values (binary numbers) and table element occurrence numbers,
transformation occurs according to the formula:
index value = (occurrence number - 1) * length of table element
Hence, conversion depends on the table used.
– In cases where USAGEs vary from one numeric data item to another.
Counter
A data item used for storing numbers or number representations in a manner that permits
these numbers to be increased or decreased by the value of another number, or to be
changed or reset to zero or to an arbitrary positive or negative value.
Currency symbol
U41112-J-Z125-1-76 13
Glossary Introduction to the COBOL language
Current record
The record which is available in the record area associated with the file.
Data clause
A clause that appears in a data description entry in the Data Division and provides infor-
mation describing a particular attribute of a data item.
Data item
A unit of data (excluding literals) defined by a COBOL program or by the rules for function
evaluation.
Data-name
A user-defined word that names a data item described in a data description entry in the
Data Division. When used in the general formats, "data-name" represents a word which
cannot be subscripted, indexed or qualified unless specifically permitted by the rules for that
format.
Debugging line
A debugging line is any line with "D" in its indicator area (column 7 in the COBOL reference
format).
Declaratives
A set of one or more sections, written at the beginning of the Procedure Division, the first
of which is preceded by the key word DECLARATIVES and the last of which is followed by
the key words END DECLARATIVES. A declarative is composed of a section header,
followed by a USE compiler directing sentence, followed by a set of zero, one or more
associated paragraphs.
14 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Declarative sentence
De-editing
The logical removal of all editing characters from a numeric edited data item in order to
determine that item’s unedited numeric value.
Delimiter
Descending key
A key upon the values of which data is ordered starting with the highest value of key down
to the lowest value of key, in accordance with the rules for comparing data items.
Direct indexing
With direct indexing, the index used is in the form of a direct subscript.
see "Direct subscripting"
Direct subscripting
With direct subscripting, the subscript is indicated either as an integral literal or as a data-
name described as a numeric elementary item with no character positions to the right of the
assumed decimal point.
Division
A set of zero, one, or more sections or paragraphs, called the division body, that are formed
and combined in accordance with a specific set of rules. There are four (4) divisions in a
COBOL program: Identification, Environment, Data and Procedure.
U41112-J-Z125-1-76 15
Glossary Introduction to the COBOL language
Division header
A combination of words followed by a period and a space that indicates the beginning of a
division. The division headers are:
IDENTIFICATION DIVISION.
ENVIRONMENT DIVISION.
DATA DIVISION.
PROCEDURE DIVISION
Dynamic access
The method of switching between sequential and random access. This method can be
specified for relative or indexed files only.
Editing character
Elementary item
An entry that indicates the end of a COBOL program. The end program header consists of
the keywords END PROGRAM, followed by the program name and a terminating period.
16 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Entry
Any descriptive set of consecutive clauses terminated by a period and written in the Identi-
fication Division, Environment Division, or Data Division of a COBOL compilation unit.
Execution time
A reserved word which terminates the scope of a particular Procedure Division statement.
Extend mode
The state of a file after execution of an OPEN statement, with the EXTEND phrase
specified, for that file and before the execution of a CLOSE statement for that file.
Extended access
A method of switching to and from sequential and random access. This access method may
only be specified for indexed files.
A data item which is described as part of an external record in one or more programs of a
run unit and which itself may be referenced from any program in which it is described.
A logical record which is described in one or more programs of a run unit and whose
constituent data items may be referenced from any program in which they are described.
External repository
An external library containing the interface descriptions of programs, classes and
other interfaces.
Factory definition
The source unit that describes a factory object.
U41112-J-Z125-1-76 17
Glossary Introduction to the COBOL language
Factory object
Every class has only one factory object, which produces all other objects of the class. The
factory object is specified by the factory definition of a class.
Figurative constant
A compiler generated value referenced through the use of certain reserved words, or a
user-defined constant that may be referenced by user-assigned names.
File
A collection of records.
File clause
A clause that appears as part of any of the following Data Division entries:
File description (FD)
Sort-merge file description (SD)
Report description (RD)
File connector
The storage area which contains information about a file and is used as the linkage between
a file-name and a physical file and between a file-name and its associated record area.
An entry in the FILE SECTION of the Data Division that is composed of the level indicator
FD, followed by a file-name, and then followed by a set of file clauses as required.
File name
A user-defined word that names a file described in a file description entry or a sort-merge
file description entry within the FILE SECTION of the Data Division.
File organization
The permanent logical file structure established at the time that a file is created.
18 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
A conceptual entity that contains the value of the current key within the key of reference for
an indexed file, or the record number of the current record for a sequential file, or the relative
record number of the current record for a relative file, or indicates that no next logical record
exists, or that the number of significant digits in the relative record number is larger than the
size of the relative key data item, or that an optional input file is not present, or that the end
condition already exists, or that no valid next record has been established.
Format
Function
A temporary data item whose value is determined by invoking a mechanism provided by the
implementor at the time the function is referenced during the execution of a statement.
Function-identifier
Function-name
A word that names a mechanism provided by the implementor to determine the value of a
function.
Global name
A name that is declared in only one program but which can be referenced by any program
contained directly or indirectly in this program. Global names can be: condition-names,
data-names, file-names, record-names, report-names as well as certain special registers.
Group item
U41112-J-Z125-1-76 19
Glossary Introduction to the COBOL language
I-O mode
The state of a file after execution of an OPEN statement, with the I-O specified, for that file
and before the execution of a CLOSE statement for that file.
I-O status
A value moved to a two-character data item to inform the COBOL program of the status of
an input-output operation. This value is only moved when the FILE STATUS clause has
been specified in the FILE-CONTROL paragraph.
Identifier
Imperative statement
A statement that either begins with an imperative verb and specifies an unconditional action
to be taken or is a conditional statement that is delimited by its explicit scope terminator
(delimited scope statement). An imperative statement may consist of a sequence of imper-
ative statements.
Implementor-name
CONSOLE*) Literal
TERMINAL*) Job variable name
SYSIPT*) TSW-0 to TSW-31
PRINTER, PRINTER01-PRINTER99 USW-0 to USW-31
SYSOPT*) COMPILER-INFO
ARGUMENT-NUMBER *) CPU-TIME
ARGUMENT-NAME*) PROCESS-INFO
ENVIRONMENT-NAME *) TERMINAL-INFO
ENVIRONMENT-VALUE*) DATE-ISO4
C01 to C08; C10, C11
20 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Index
A computer storage area or register, the contents of which represent the identification of a
particular element in a table.
A data item in which the value associated with an index-name can be stored.
Index-name
Indexed data-name
Indexed file
Indexed organization
The permanent logical file structure in which each record is identified by the value of one or
more keys within that record.
Indicator area
Inheritance
for classes:
A mechanism by which the interface and implementation (code) of one or more classes can
be used as a basis for another class. This subclass inherits from one or more superclasses.
The interface of an inheriting class conforms to the interface of the inherited classes.
for interfaces:
A mechanism by which the specification of one or more interfaces serves as the basis for
another interface. An inheriting interface conforms to the inherited interface.
U41112-J-Z125-1-76 21
Glossary Introduction to the COBOL language
Initial program
A program that is in the initial state whenever it is called within a run unit.
Initial state
Input file
Input mode
The state of a file after execution of an OPEN statement, with the INPUT phrase specified,
for that file and before the execution of a CLOSE statement for that file.
Input-output file
Input procedure
A set of statements that is executed each time a record is released to the sort file.
Integer
A numeric literal or a numeric data item that does not include any character positions to the
right of the assumed decimal point.
Where the term "integer" appears in general formats, "integer" must be a numeric literal
which is an integer, and it must be neither signed nor zero unless explicitly allowed by the
rules for that format.
Integer function
A function whose category is numeric and whose definition provides that all digits to the
right of the decimal point in any returned value are always set to zero.
22 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Interface definition
The source unit that defines an interface.
Internal data
The data that is described in a program, excluding all external data items and external files.
Data-items that are defined in the LINKAGE SECTION of a program are treated as internal
data.
A data item that is described in a program of a run unit. An internal data item can have a
global name.
Internal file
A condition occurring at the time of program execution when a particular value for a key of
a relative or indexed file is invalid.
Key
A data item which identifies the location of one or more data items which serve to identify
the ordering of data.
Key of reference
The key, either prime or alternate, currently being used to access records within an indexed
file.
Key word
A reserved word or function-name whose presence is required when the format in which
the word appears is used in a compilation unit.
U41112-J-Z125-1-76 23
Glossary Introduction to the COBOL language
Level indicator
Two alphabetic characters (FD, RD, SD, DB) that identify a specific type of file.
Level-numbers
A one or two digit number which, in the range 1 through 49, indicates the position of a data
item in the hierarchical structure of a logical record or which, in the case of level-numbers
66, 77 and 88, identifies special properties of a data description entry.
Library-name
A user-defined word that identifies a compilation unit library, which may contain more than
one COBOL text with various names.
Library-text
Line
Line number
Literal
A character-string whose value is implied by the ordered set of characters comprising the
string.
Logical operator
24 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Logical record
A data item at the highest level in the hierarchy (level-number 01) which does not occur in
any other record.
Mass storage
A storage medium on which data may be organized and maintained in both a sequential
and nonsequential manner.
Merge file
A collection of records to be merged by a MERGE statement. The merge file is created and
can be used only by the merge function.
Method
Executable statements in the Procedure Division of a method definition.
Method definition
The source unit that defines a method.
Method-name
A user-defined word that identifies a method.
Mnemonic-name
U41112-J-Z125-1-76 25
Glossary Introduction to the COBOL language
A COBOL program that contains other programs which in turn can contain further
programs. It accordingly comprises an outer program with one or more programs contained
in it.
The next sentence to which control will be transferred after execution of the current
statement is complete.
The next statement to which control will be transferred after execution of the current
statement is complete.
Next record
Noncontiguous items
Non-numeric item
A data item whose description permits its contents to be composed of any combination of
characters taken from the computer’s character set. Certain categories of non-numeric
items may be formed from more restricted character sets.
26 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Non-numeric literal
A character-string bounded by quotation marks. The string of characters may include any
character in the computer’s character set. Quotation marks must be doubled ("") to be
represented within a non-numeric literal.
Numeric character
Numeric function
Numeric item
A data item whose value is represented by the digits "0" through "9".
Its sign, if required, must be represented by a permitted form of "+" or "-".
Numeric literal
A literal composed of one or more numeric characters that may also contain either a
decimal point, or an algebraic sign, or both. The decimal point must not be the rightmost
character. The algebraic sign, if present, must be the leftmost character.
Object
An object is defined by a class and consists of a combination of data and methods that act
upon that data.
Object definition
The source unit that defines an object.
Object program
A set or group of executable machine language instructions and other material designed to
interact with data to provide problem solutions. In this context, an object program is
generally the machine language result of the operation of a COBOL compiler on a source
unit. Where there is no danger of ambiguity, the word ’program’ alone may be used instead
of the phrase ’object program’.
Object reference
An implicitly or explicitly defined data item that contains a unique reference to an object.
U41112-J-Z125-1-76 27
Glossary Introduction to the COBOL language
Object time
Object view
An object view causes the compiler to treat an object reference as if it were defined in the
specified form.
Open mode
The state of a file after execution of an OPEN statement for that file and before the execution
of a CLOSE statement for that file.
The precise open mode is specified in the OPEN statement either with INPUT,
OUTPUT, I-O or EXTEND.
Operand
In general, an operand may be defined as "that entity which is operated upon". However, in
this publication, any lowercase word (or words) that appears in a statement, paragraph,
clause or entry format may be considered an operand.
Operational sign
An algebraic sign, associated with a numeric data item or a numeric literal, to indicate
whether its value is positive or negative.
Optional file
A file which is declared as being not necessarily present each time the object program is
executed. The object program causes an interrogation for the presence or absence of the
file.
Optional word
A reserved word that is included in a specific format only to improve the readability of the
language and whose presence is optional to the user when the format in which the word
appears is used in a compilation unit.
Output file
28 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Output mode
The state of a file after execution of an OPEN statement, with the OUTPUT or EXTEND
phrase specified, for that file and before the execution of a CLOSE statement for that file.
Output procedure
A set of statements to which control is given during execution of a SORT statement after
the sort function is completed, or during execution of a MERGE statement after the merge
function has selected the next record in merged order.
Padding character
An alphanumeric character used to fill the unused character positions of a physical record.
Page
Page body
That part of the logical page in which lines can be written and/or spaced.
Page footing
A report group that is presented at the end of a report page and is output prior to a page
advance whenever this is caused by a page advance condition.
Page heading
A report group that is presented at the beginning of a report page and is output immediately
after page advance whenever this is caused by a page advance condition.
Paragraph
U41112-J-Z125-1-76 29
Glossary Introduction to the COBOL language
Paragraph header
A reserved word placed above the paragraphs in the Identification and Environment
Divisions for identification purposes.
The permissible paragraph headers are:
CLASS-ID.
METHOD-ID.
OBJECT.
FACTORY.
INTERFACE-ID.
PROGRAM-ID.
AUTHOR.
INSTALLATION.
DATE-WRITTEN.
DATE-COMPILED.
SECURITY.
In the Environment Division:
SOURCE-COMPUTER.
OBJECT-COMPUTER.
SPECIAL-NAMES.
REPOSITORY.
FILE-CONTROL.
I-O-CONTROL.
Paragraph-name
Phrase
A phrase is an ordered set of one or more consecutive COBOL character-strings that form
a portion of a COBOL procedural statement or of a COBOL clause.
Physical record
see "Block"
30 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Printable group
Printable item
A data item, the extent and contents of which are specified by an elementary report entry.
This elementary report entry contains a COLUMN NUMBER clause, a PICTURE clause,
and a SOURCE, SUM or VALUE clause.
Procedure
Procedure-name
Program-name
Program-text area
Columns 8 through 72 (inclusive) in the COBOL reference format.
Prototype
The definition of the interface of a method or program alone, i.e., without executable
statements and only with definitions that are needed in the interface.
Pseudo-text
A sequence of text words, comment lines, or the separator space in a compilation unit or
COBOL library bounded by, but not including, pseudo-text delimiters.
U41112-J-Z125-1-76 31
Glossary Introduction to the COBOL language
Pseudo-text delimiter
Punctuation character
Character Meaning
, Comma
; Semicolon
. Period
: Colon
" Quotation mark
( Left parenthesis
) Right parenthesis
Ë Space
= Equal sign
Qualified data-name
An identifier that is composed of a data-name followed by one or more sets of either of the
connectives OF and IN followed by a data-name qualifier.
Qualifier
Random access
An access mode in which the program-specified value of a key data item identifies the
logical record that is obtained from, deleted from, or placed into a relative or indexed file.
Record
32 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Record area
A storage area allocated for the purpose of processing the record described in a record
description entry in the FILE SECTION.
The total set of data description entries associated with a particular record.
Record key
A key, either the prime record key or an alternate record key, whose contents identify a
record within an indexed file.
Record name
A user-defined word that names a record described in a record description entry in the Data
Division.
Record number
Reference format
Reference modification
Definition of a data item through specification of the leftmost character position and the
length of the data item.
Reference-modifier
Relation
U41112-J-Z125-1-76 33
Glossary Introduction to the COBOL language
Relation character
Character Meaning
> Greater than
< Less than
= Equal to
>= Greater than or equal to
<= Less than or equal to
Relation condition
A condition which can yield a truth value. A relation condition causes two operands to be
compared. Either of these operands may be an identifier, a literal, or an arithmetic
expression.
Relational operator
Relative file
Relative indexing
With relative indexing, the name of the table element is followed by an index in the form
(index name +|- integer).
34 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Relative key
Relative organization
The permanent logical file structure in which each record is uniquely identified by an integer
value greater than zero, which specifies the record’s logical ordinal position in the file.
The ordinal number of a record in a file whose organization is relative. This number is
treated as a numeric literal which is an integer.
Relative subscripting
With relative subscripting, the name of the table element is followed by a subscript in the
form
(data-name + integer) or
(data-name - integer).
Report clause
A clause, in the REPORT SECTION of the Data Division, that appears in a report
description entry or a report group description entry.
An entry in the REPORT SECTION of the Data Division that is composed of the level
indicator RD, followed by a report name, followed by a set of report clauses as required.
Report file
An output file whose file description entry contains a report clause. The contents of a report
file consist of records that are written under control of the Report Writer Control System.
Report footing
Report group
In the REPORT SECTION of the Data Division, a 01-level entry and its subordinate entries.
U41112-J-Z125-1-76 35
Glossary Introduction to the COBOL language
An entry in the REPORT SECTION of the Data Division that is composed of the
level-number 01, the optional data-name, a TYPE clause, and an optional set of report
clauses.
Report heading
Report line
Report-name
A user-defined word that names a report described in a report description entry within the
REPORT SECTION of the Data Division.
A record that consists of the Report Writer print line and associated control information
necessary for its selection and vertical positioning.
Reserved word
A COBOL word which is specified in the list of reserved words and which may be used in
the COBOL compilation unit in accordance with the formats and rules, but which must not
appear in the programs as user-defined words or system names.
Run unit
Section
A section comprises a set of paragraphs or clauses. The contents are preceded by a section
header. A section can be empty or contain one or more paragraphs or clauses.
36 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Section header
A combination of words followed by a period and a space that indicates the beginning of a
section in the Environment, Data and Procedure Division. In the Environment and Data
Divisions, a section header is composed of reserved words followed by a period and a
space. The permissible section headers are:
In the Environment Division:
CONFIGURATION SECTION.
INPUT-OUTPUT SECTION.
In the Data Division:
FILE SECTION.
WORKING-STORAGE SECTION.
LINKAGE SECTION.
REPORT SECTION.
In the Procedure Division, a section header is composed of a section-name, followed by the
reserved word SECTION, followed by a segment-number (optional), followed by a period
and a space.
Section-name
Segment-number
A user-defined word which classifies sections in the Procedure Division for purposes of
segmentation. Segment-numbers may contain only the characters "0", "1", ..., "9". A
segment-number may be expressed either as a one or two digit number.
Sentence
A sequence of one or more statements, the last of which is terminated by a period followed
by a space.
Separator
U41112-J-Z125-1-76 37
Glossary Introduction to the COBOL language
Sequential access
An access mode in which logical records are obtained from or placed into a file in a consec-
utive predecessor-to-successor sequence determined by the order of records in the file.
Sequential file
Sequential organization
A permanent logical file structure in which the records are arranged and read in the same
order in which they were created.
Sign condition
The proposition, for which a truth value can be determined, that the algebraic value of a data
item or an arithmetic expression is either less than, greater than, or equal to zero.
Simple condition
Sort file
An entry in the FILE SECTION of the Data Division that is composed of the level indicator
SD, followed by a file-name, and then followed by a set of file clauses as required.
38 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Source unit
A sequence of statements that begins with the Identification Division and ends with an
associated END marker (may be nested).
Special character
Special-character word
Special registers
Compiler generated storage areas whose primary use is to store information produced in
conjunction with the use of specific COBOL features.
Statement
A syntactically valid combination of words and symbols written in the Procedure Division
beginning with a verb.
Subclass
A class that inherits from another class.
Subprogram
U41112-J-Z125-1-76 39
Glossary Introduction to the COBOL language
Subscript
Subscripted data-name
Sum counter
A signed numeric data item established by a SUM clause in the REPORT SECTION of the
Data Division. The sum counter is used by the Report Writer in connection with summing
operations.
Superclass
A class that is inherited by another class.
Switch-status condition
A condition which indicates whether a user or task switch has been set to "on" or "off". The
test is positive if the status of the switch corresponds to the setting given in the condition-
name.
Symbolic character
System name
Table
A set of logically consecutive items of data that are defined in the Data Division by means
of the OCCURS clause.
Table element
A data item that belongs to the set of repeated items comprising a table.
40 U41112-J-Z125-1-76
Introduction to the COBOL language Glossary
Text name
Text-word
Truth value
The representation of the result of the evaluation of a condition in terms of one of two
values, "true" or "false".
Unary operator
A plus (+) or a minus (-) sign, which precedes a variable or a left parenthesis in an arith-
metic expression and which has the effect of multiplying the expression by +1 or -1 respec-
tively.
User-defined word
A COBOL word that must be supplied by the user to satisfy the format of a clause or
statement.
Variable
A data item whose value may be changed during execution of the object program. A
variable used in an arithmetic expression must be a numeric elementary item.
Verb
A COBOL word that causes an action to be taken by the COBOL compiler and the object
program.
U41112-J-Z125-1-76 41
Glossary Introduction to the COBOL language
Word
42 U41112-J-Z125-1-76
Introduction to the COBOL language COBOL notation
1. Definition of a format
2. Elements
U41112-J-Z125-1-76 43
COBOL notation Introduction to the COBOL language
3. Words
Notation Meaning
Uppercase A word specially reserved for COBOL.
Uppercase, This word must be specified by the programmer as it is given in the format. It is
underlined a COBOL keyword.
Uppercase, This word may be specified by the programmer at the location given in the
not underlined format or it may be omitted. It is an optional COBOL word.
Lowercase Generic term used to represent COBOL words, literals, picture-strings,
comments, or a complete syntactical unit. It must be entered by the programmer
at the location given in the format. If more than one generic term of the same
kind occurs in the same format, an appended number or letter is used to
uniquely qualify that term for the descriptions.
Table 2-1: Notation used for COBOL words
An entry consisting of one or more words in uppercase followed by the words "clause" or
"statement" designates a clause or statement described elsewhere in this manual. In
programs, all COBOL words can appear in uppercase and lowercase as well as in
lowercase only.
4. Separators
The separators listed in the following table must be used as specified in the format.
*)
The predefined COBOL quotation mark is the double quote ("). To enable formal accep-
tance by the compiler of old COBOL programs in which the quotation mark is repre-
sented by the single quote or apostrophe (’), it is necessary to use a special compiler
option (for details see the relevant section in the "COBOL2000 User Guide" [1]).
The rules governing the use of separators are described in section 2.4.2.
44 U41112-J-Z125-1-76
Introduction to the COBOL language COBOL notation
Level indicators and level numbers which occur in the format must be supplied at the
appropriate point in the COBOL compilation unit. This manual uses the form 01, 02, ..., 09
to indicate level numbers 1, 2, ..., 9.
6. Brackets [ ]
A format specification placed in square brackets may be supplied or omitted at the option
of the user. If two or more items are stacked within brackets, one or none of them may be
specified.
7. Braces { }
If two or more items are stacked within braces, one of the enclosed items is required. If there
is only one item, the braces perform only a combining function for a subsequent ellipsis
(repetition symbol).
8. Parentheses ( )
Format items appearing within parentheses refer to table item numbers (indices) which
must be specified in order to differentiate the various items in a table.
9. Ellipsis ...
An ellipsis appearing in the text indicates the omission of one or more words when such an
omission does not impair comprehension.
An ellipsis appearing in the format indicates that the immediately preceding unit may, if
desired, be repeated any number of times after it has been specified once. A repeatable
unit is either a single word or a group of words combined by brackets or braces. In the latter
case, the ellipsis immediately follows the closing bracket or brace; the related opening
bracket or brace determines the beginning of the unit to be repeated.
10. Space Ë
If the characters ’+’, ’-’, ’>’, ’<’, ’=’, ’>=’, ’<=’ appear in a format, they must be entered
whenever the format is used. This applies even if these special characters are not under-
lined.
U41112-J-Z125-1-76 45
COBOL notation Introduction to the COBOL language
Example 2-1
(2) (2)
(1) identifier-1 (3)
ADD ...
literal-1
(6) (7)
[ON SIZE ERROR imperative statement-1]
[END-ADD]
46 U41112-J-Z125-1-76
Introduction to the COBOL language Reference format
Margin L
is located to the left of the leftmost character position in a line.
Margin C
is located between the sixth and seventh character position in a line.
Margin A
is located between the seventh and eight character position in a line.
Margin R
is located to the right of the rightmost character position in a line that is still relevant for the
compiler.
Sequence number area
contains six character positions (columns 1 to 6) located between Margin L and Margin C.
Indicator area
the seventh character position in a line.
Program-text area
contains the character positions 12 through 72 and is located between Margin A and
Margin R.
U41112-J-Z125-1-76 47
Reference format Introduction to the COBOL language
48 U41112-J-Z125-1-76
Introduction to the COBOL language Reference format
Continuation of lines
A sentence or entry requiring more than one line may be continued on subsequent lines
in the program-text area. The first line is called a continued line, the following lines are
called continuation lines. If a sentence or entry spans more than two lines then all
lines, except the first and last, are both continued and continuation lines.
A word, PICTURE character-string, or literal may be continued in the next line. If this
occurs, the following apply:
– Continuation of non-numeric literals
If a non-numeric literal is continued on the next line, a hyphen should be entered in
the indicator area (column 7) of the continuation line.
The continuation may follow anywhere in the program-text area (from column 8),
immediately preceded by a quotation mark. All blanks located at the end of the
continued line or following the quotation mark of the continuation line are regarded
as part of the literal.
– Continuation of words and numeric literals
If a word or a numeric literal is continued on the next line, a hyphen must be entered
in the indicator area (column 7) of the continuation line in order to show that the first
non-blank character in the program-text area of the continuation line is the
immediate successor of the last non-blank character of the continued line, i.e.
without any intervening space.
Blank lines
A blank line is a line that contains only spaces in columns 7 through 72. A blank line
may appear anywhere in the source unit, except immediately preceding a continuation
line.
Declaratives
The keyword DECLARATIVES and the keywords END DECLARATIVES which (respec-
tively) open and close the declaratives section of the Procedure Division must each
appear on a separate line. Both must be written starting in the program-text area, and
both must be terminated by a period followed by a space.
Comment lines
Explanatory comments may be included anywhere in the COBOL source unit in the
form of comment lines by setting an asterisk or a slash in the indicator area (column 7).
Any combination of characters from the character set of the data processing system
(EBCDIC) may be used in areas A or B of these lines. The contents of the comment
lines will be produced on the program listing (at the top of a new page if a slash has
been entered in the indicator area) and have no effect on the program.
U41112-J-Z125-1-76 49
Reference format Introduction to the COBOL language
Debugging lines
Debugging lines are indicated by a "D" in the indicator area (column 7) (see
"Debugging", page 747).
Pseudo-text
The pseudo-text, which consists of character strings and delimiters, lies in the
program-text area. If the indicator area of a line following the opening pseudo-text
delimiter contains a hyphen, it is possible to continue at any position of the program text
line. Text words are continued in accordance with the normal rules for the continuation
of lines.
END markers
END markers must be located in the program-text area.
50 U41112-J-Z125-1-76
Language concepts COBOL character set
When non-numeric literals, comments or comment lines are used, the character set is
extended to comprise the whole set of characters of the data processing system.
The characters which are permitted for use with each type of string and as separators
(delimiters) are defined in the subsections to follow.
2.4.2 Separators
A separator is a character or two contiguous characters formed according to the following
rules:
1. A space is a separator. Anywhere where a space can be used as a separator or as part
of a separator, it is also possible to use more than one space.
U41112-J-Z125-1-76 51
Separators Language concepts
2. Commas and semicolons can only be used as separators when they are immediately
followed by a space. They can be used to improve the readability of the program
anywhere where a space could also be used as a separator. A comma, on the other
hand, is not a separator if it is used in a PICTURE character-string.
3. A period can only be used as a separator when immediately followed by a space. It may
only be used to indicate the end of a sentence, or as shown in formats.
4. Left (opening) and right (closing) parentheses are separators. When used outside of
pseudo-text, they must appear as balanced pairs of left and right parentheses used to
delimit subscripts, reference modifiers, arithmetic expressions, conditions or the
repetition factor of a PICTURE symbol.
5. The quotation mark is a separator. An opening quotation mark must be immediately
preceded by a space, a left parenthesis or an opening pseudo-text delimiter. A closing
quotation mark assigned to an opening quotation mark must be immediately followed
by one of the separators space, comma, semicolon, period, right parenthesis or closing
pseudo-text delimiter. These immediately preceding and following separators are not
part of the separator quotation mark.
6. Pseudo-text delimiters are separators. An opening pseudo-text delimiter must be
immediately preceded by a space; a closing pseudo-text delimiter must be immediately
followed by one of the separators space, comma, semicolon or period.
Pseudo-text delimiters may only appear in balanced pairs delimiting pseudo-text.
7. A colon is a separator and must be specified when required in the general formats.
8. A space used as a separator may immediately precede all separators unless
a) the reference format rules prohibit it
b) it is followed by the closing quotation mark; in this case, a preceding space is
considered part of the non-numeric literal and not as a separator.
9. A space used as a separator may immediately follow any separator except the opening
quotation mark. A space following the opening quotation mark is considered part of the
non-numeric literal and not as a separator.
10. Any character which is part of a PICTURE character-string or of a non-numeric literal is
not treated as a separator.
11. PICTURE character-strings are delimited exclusively by the separators space, comma,
semicolon and period.
12. The rules governing the formation of separators do not apply to characters contained in
non-numeric literals, comment-entries or comment lines.
52 U41112-J-Z125-1-76
Language concepts COBOL words
1. User-defined words
U41112-J-Z125-1-76 53
COBOL words Language concepts
54 U41112-J-Z125-1-76
Language concepts COBOL words
program-name The name used to identify the program. The program-name is defined by its use
in the PROGRAM-ID paragraph of the Identification Division. It may also appear
in a CALL statement of a corresponding calling program.
program-proto- A user-defined word that identifies a program prototype.
type-name
record-name The name of a record. A record is declared by a 01-level entry in the FILE
SECTION, LINKAGE SECTION, WORKING-STORAGE SECTION, LOCAL-
STORAGE SECTION or in the SUB-SCHEMA SECTION.
report-name The name of a report. A report-name is defined by its occurrence in the REPORT
clause of an FD entry; it is used to name an RD entry in the REPORT SECTION.
section-name A section-name is used to name a section in the Procedure Division. A section-
name is written starting at Area A and is followed by the word SECTION.
segment-number A number to classify sections in the Procedure Division for purposes of
segmentation. It is defined by its use in a section header.
symbolic- A name for a figurative constant defined by the user character in the SYMBOLIC-
character CHARACTERS clause of the SPECIAL-NAMES paragraph.
text-name Name of an entry in the COBOL compilation unit library.
The entry is copied from the library by the COPY statement.
Table 2-4: COBOL user-defined words
U41112-J-Z125-1-76 55
System-names/Reserved words COBOL words
2. System-names
A system-name is a COBOL word which is used as an interface with the operating system
environment. System-names are defined by the implementor and may vary from compiler
to compiler. From the programmer’s point of view, the system-names of a specific compiler
are treated as reserved words.
The system names for COBOL2000 are:
3. Reserved words
Required words
A required word is a word whose presence is required when the format in which the
word appears is used in a compilation unit.
Required words are of two types:
56 U41112-J-Z125-1-76
COBOL words Reserved words
Keywords
Within each format, such words are uppercase and underlined. Keywords are only
allowed in the formats indicated. Keywords may be grouped as shown below:
– Verbs such as ADD, READ and CALL.
– Required words which are encountered in statement and entry formats.
– Words which have a specific functional significance, such as NEGATIVE,
SECTION, etc.
Some keywords may be abbreviated (e.g. PIC for PICTURE).
Special character words
These are the arithmetic operators and relation characters (see section 2.1,
"Glossary").
Optional words
Within each format, uppercase words which are not underscored are called "optional
words". These words may be used at the option of the user. The presence or omission
of an optional word has no effect on the meaning of the COBOL statement. However,
an optional word must not be misspelled or replaced with another word.
Special registers
Special registers are data items in which information produced with the use of certain
COBOL features is stored. The attributes of these registers are predefined, and each
register has a fixed name. Thus, the programmer does not have to define these
registers in the Data Division. The eleven special registers are listed in Table 2-5.
U41112-J-Z125-1-76 57
Reserved words COBOL words
58 U41112-J-Z125-1-76
COBOL words Reserved words
Figurative constants
The values of figurative constants are produced by the compiler and are indicated by
the reserved words listed in Table 2-6. Figurative constants must not be enclosed in
quotation marks. The singular and plural forms of a figurative constant are equivalent
and may be used optionally.
The figurative constant [ALL] symbolic-character stands for one or more of the
characters specified as the value of symbolic-character in the SYMBOLIC-
CHARACTERS clause of the SPECIAL-NAMES paragraph.
If a figurative constant represents a string of one or more characters, the compiler deter-
mines the length of the string according to the following rules:
1. If a figurative constant is specified in a VALUE clause or associated with another
data item (e.g. moved to or compared with another data item), it is first duplicated
to the right until the resultant string has at least as many character positions as the
other data item.
If this character-string has more character positions than the other data item follow-
ing the duplication operation, the extra positions will be truncated from the right.
Extension or truncation of the character-string of figurative constants takes place
prior to and independently of any application of the JUSTIFIED clause to the other
data item.
2. The character-string always has a length of 1 whenever the figurative constants
ZERO, SPACE, HIGH-VALUE, LOW-VALUE and QUOTE (including their plurals)
are not brought into contact with another data item, particularly whenever they
occur in a DISPLAY, STOP, STRING or UNSTRING statement.
3. If the figurative constant ALL literal is not brought into contact with another data
item, the length of the character-string is equal to the length of literal.
A figurative constant can be used wherever literal occurs in a format, except for the
following cases:
1. If literal is restricted to numeric literals, the only figurative constant allowed is ZERO
(ZEROS, ZEROES).
2. The figurative constant ALL literal cannot be brought into contact with numeric or
numeric-edited data items.
3. Apart from its use in the figurative constant ALL literal, the word ALL has no
function; it serves only to enhance readability.
U41112-J-Z125-1-76 59
Reserved words COBOL words
60 U41112-J-Z125-1-76
COBOL words Reserved words
U41112-J-Z125-1-76 61
Reserved words COBOL words
Statement:
MOVE ALL "12" TO ALPHA.
Contents of ALPHA:
C' 1212'
Statement:
MOVE ALL "ABC" TO ALPHA.
Contents of ALPHA:
C' ABCA'
[ALL] One or more repetitions of the Description:
symbolic-character character specified as the value SYMBOLIC C0 IS 193
of symbolic-character in the
SYMBOLIC-CHARACTERS Statement:
clause of the SPECIAL-NAMES MOVE ALL C0 TO ALPHA.
paragraph.
Contents of ALPHA:
X' C0C0C0C0'
Table 2-6: COBOL figurative constants and values
*)
In these examples it is assumed that, unless otherwise specified, ALPHA is a 4-byte
area with the data format DISPLAY.
The following table contains all the reserved words.
All words marked with * are treated as reserved words only if DML (Data Manipulation
Language) statements are being used for compilation; otherwise they may be employed
as user-defined words. Compilation with DML statements occurs when
SUB-SCHEMA SECTION is specified
62 U41112-J-Z125-1-76
COBOL words Reserved words
U41112-J-Z125-1-76 63
Reserved words COBOL words
64 U41112-J-Z125-1-76
COBOL words Reserved words
U41112-J-Z125-1-76 65
Reserved words COBOL words
Context-sensitive words
ALIGNED NONE
ANYCASE NORMAL
ARITHMETIC NUMBERS
ATTRIBUTE
AUTO ONLY
AUTOMATIC
PARAGRAPH
BACKGROUND-COLOR PREVIOUS
BELL
BLINK RECURSIVE
BYTE-LENGTH RELATION
REQUIRED
CALL-CONVENTION RETURN-CODE
CENTER REVERSE-VIDEO
CLASSIFICATION
CYCLE SECONDS
SECURE
EOL SIGNED
EOS SORT-CORE-SIZE
EXPANDS SORT-EOW
SORT-FILE-SIZE
FOREGROUND-COLOR SORT-MODE-SIZE
FOREVER STATEMENT
FULL STEP
STRONG
HIGHLIGHT SYMBOL
IINITIALIZED UCS-2
INTRINSIC UCS-4
UNDERLINE
LINAGE-COUNTER UNSIGNED
LOCALE UTF-8
LOCALIZE UTF-16
LOWLIGHT
YYYYDDD
MANUAL YYYYMMDD
66 U41112-J-Z125-1-76
COBOL words Reserved words
4. Function-names
A function-name is a word that is one of a specified list of words which may be used in a
COBOL program. The same word, in a different context, may appear in a program as a
user-defined word (see "Function-name" in chapter 9).
U41112-J-Z125-1-76 67
Literals Language concepts
2.4.4 Literals
A literal is a character-string whose value is determined by the characters of which it is
composed; alternatively, the string may represent a reserved word which corresponds to a
figurative constant. Literals are either numeric or non-numeric.
1. Non-numeric literals
Example 2-2
"CHARACTER"
"153.78"
"ADAM ""BDAM"" CDAM"
2. Numeric literals
There are two types of numeric literals: fixed-point literals and floating-point literals.
Numeric fixed-point literals
A fixed-point numeric literal is a string of characters chosen from the following set: the
digits 0-9, the plus sign, the minus sign, and the decimal point.
Fixed-point numeric literals must be formed according to the following rules:
1. The literal may contain 1 to 18 digits.
2. The literal may contain only one sign character. If a sign is used, it must be the
leftmost character of the literal. An unsigned literal is assumed to be positive.
3. The literal may contain only one decimal point. The decimal point may appear
anywhere in the literal, except as the rightmost character. A decimal point desig-
nates an assumed decimal point location. (The assumed decimal point in any
numeric literal or data item is the position where the compiler and the generated
program assume the decimal point to be, though no internal memory position is
reserved for a separate decimal point character.) A literal with no decimal point is
an integer.
The term integer is used to describe a numeric literal which is unsigned and greater
than zero and which has no character positions to the right of the assumed decimal
point.
68 U41112-J-Z125-1-76
Language concepts Literals
Example 2-3
(Here, the assumed decimal point is represented by the character V.)
Literal Location of assumed point Internal sign No. of digit positions
assigned
+123 123V + 3
3.765 3V765 + 4
-45.7 45V7 - 3
Example 2-4
+1.5E-2=1.5*10-2
U41112-J-Z125-1-76 69
Character-string/Comment-entry Language concepts
2.4.6 Comment-entry
A comment-entry in the Identification Division is an entry consisting of any combination of
characters from the character set of the data processing system.
The logical characteristics of a record or a file differ from the way in which the data is physi-
cally stored in the computer.
70 U41112-J-Z125-1-76
Language concepts Level concept
2. Level concept
The level concept permits the structuring of a logical record. Data processed by a COBOL
program can be described as elementary items, group items, records and files (for file
description see chapters 4 through 6).
Elementary items
An elementary item is the smallest unit of data bearing a name, i.e. it is not divisible into
further elementary items. An elementary item is described with a PICTURE clause
(except in the case of description with COMP-1, COMP-2, or index data items).
The length of an elementary item must not exceed 65535 bytes.
Group items
Several elementary items combined form a group item. Thus, a number of elementary
items may be addressed simultaneously under the name of the group item. Each group
consists of an elementary item or a series of elementary items. Groups, in turn, may be
combined to form two or more group items. Consequently, an elementary item may
belong to more than one group item (see Figure 2-1, Figure 2-2). The name of a group
item must not be described with the PICTURE clause.
Records
A record is a data item which is not subordinate to another data item. It consists of one
or more group items with one or more elementary items, or it is itself an elementary
item. The description of a record must start in Area A.
U41112-J-Z125-1-76 71
Level concept Language concepts
Level-numbers
Data is divided into various levels. These levels are indicated by means of level-
numbers. The numbers 01 to 49 are allowed as level-numbers. In addition, there are
special level-numbers: 66, 77, and 88. In a compilation unit, every level-number must
be given a separate entry.
Since a record represents the largest organizational unit, level-numbers for records
start at 01. Hierarchically subordinate items are assigned numerically higher level-
numbers (from 02 to 49). The level-number of a subordinate data item must be greater
than that of a higher-ranking data item by one or more units. Once an elementary item
has been described, only those level-numbers which have already appeared in the
record description entry are permitted.
Example 2-5
right: wrong:
01 DATA RECORD. 01 DATA RECORD.
05 GROUP-ITEM-1. 05 GROUP-ITEM-1.
10 ELEMENTARY-ITEM-11 ... 10 ELEMENTARY-ITEM-11 ...
10 ELEMENTARY-ITEM-12 ... 10 ELEMENTARY-ITEM-12 ...
10 ELEMENTARY-ITEM-13 ... 10 ELEMENTARY-ITEM-13 ...
05 GROUP-ITEM-2. 03 GROUP-ITEM-2.
10 ELEMENTARY-ITEM-21 ... 10 ELEMENTARY-ITEM-21 ...
10 ELEMENTARY-ITEM-22 ... 10 ELEMENTARY-ITEM-22 ...
There are three types of data for which no level concept exists. These are assigned the
level numbers 66, 77, and 88:
– Level number 66 is given to the names of data items described with the RENAMES
clause (see the section on “RENAMES clause“ on page 275).
– Level number 77 is given to structure-independent data items of the WORKING-
STORAGE SECTION or LINKAGE SECTION (see the section on “Level number“
on page 235).
– Level number 88 is given to the explanation of condition-names (see the section on
“VALUE clause“ on page 297).
Further rules are described in the section on “Level number“ on page 235.
72 U41112-J-Z125-1-76
Language concepts Level concept
01 RECORD-A
05 GROUP-ITEM-1 05 ELEMENTARY-ITEM-6
02 GROUP-ITEM-2
07 GROUP-ITEM-4
08 ELEMENTARY-ITEM-3
10 ELEMENTARY-ITEM-1 10 ELEMENTARY-ITEM-2
Fig. 2-1: Relationship between group items and elementary items in a record
01 RECORD-A.
05 GROUP-ITEM-1.
07 GROUP-ITEM-2.
08 GROUP-ITEM-3.
10 ELEMENTARY-ITEM-1...
10 ELEMENTARY-ITEM-2...
08 ELEMENTARY-ITEM-3...
07 GROUP-ITEM-4.
08 ELEMENTARY-ITEM-4...
08 ELEMENTARY-ITEM-5...
05 ELEMENTARY-ITEM-6...
Fig. 2-2: Group items and elementary items in a record
Figure 2-1 shows the structure of a sample record; Figure 2-2 demonstrates how to use
level numbers to represent this structure in the record description entry. In this example,
GROUP-ITEM-3 and ELEMENTARY-ITEM-3 are a subordinate part of GROUP-ITEM-2;
similarly, GROUP-ITEM-2 and GROUP-ITEM-4 are a subordinate part of GROUP-ITEM-1.
U41112-J-Z125-1-76 73
Data classes/Data categories Language concepts
3. Data classes
The six categories of data items are grouped into four classes: alphabetic, numeric, and
alphanumeric and object. For alphabetic and numeric items, the classes and categories are
synonymous. The alphanumeric class includes the categories "alphanumeric edited",
"numeric edited" and "alphanumeric" (without editing).
Each elementary item fits into one of the classes and also into one of the categories.
Group items are always classified as alphanumeric at object time, regardless of the class
of the elementary items subordinate to them.
Table 2-7 below illustrates the relationship between the classes and categories of data
items.
4. Data categories
The following subsections describe the data items in the various categories, as shown
above under "Data classes". The category of a data item is determined by the type of the
PICTURE and USAGE clauses which are present in the description element (for further
details see "PICTURE clause", page 256 and "USAGE clause", page 285).
If the data item is a function, it is class and category alphanumeric or numeric (see chapter
9, "Intrinsic functions").
74 U41112-J-Z125-1-76
Language concepts Data classes/Data categories
U41112-J-Z125-1-76 75
Data classes/Data categories Language concepts
76 U41112-J-Z125-1-76
Language concepts Data classes/Data categories
Alphanumeric items
An alphanumeric item is one whose contents, when represented in standard data
format, are any characters from the EBCDIC set.
Its picture-string is restricted to combinations of the symbols A, X, and 9. The item is
treated as if its picture-string contained all X’s.
A picture-string which contains all A’s or all 9’s does not define an alphanumeric item.
The data format of an alphanumeric item is always DISPLAY.
U41112-J-Z125-1-76 77
Alignment of data Language concepts
5. Algebraic signs
6. Alignment of data
The alignment of data within elementary data items depends on the category of the
receiving item. The alignment within group items is the same as for alphanumeric receiving
items.
Numeric data items
If the receiving item is described as a numeric item, the data being sent is aligned on
the decimal point and is moved to the character positions of the receiving item. If the
data being sent is shorter than the receiving item, the unused character positions are
filled with zeros. If the data being sent is longer than the receiving item, it is truncated
from the left or right as appropriate.
If an assumed decimal point is not supplied explicitly, the receiving item is treated as if
it had an assumed decimal point immediately following its rightmost character;
alignment and moving are as described above.
Numeric edited data items
If the receiving item is a numeric edited item, alignment and moving of the data being
sent take place as in the case of numeric receiving items; leading zeros can be replaced
by other characters through special editing specifications.
Alphanumeric, alphanumeric edited, and alphabetic data items
If the receiving item is alphanumeric (other than numeric edited), alphanumeric edited,
or alphabetic, then the data being sent is moved from left to right into the character
positions of the receiving item. If the data being sent is shorter than the receiving item,
the unused character positions are filled with spaces. If the data being sent is longer
than the receiving item, the excess characters of the data being sent are truncated.
If the JUSTIFIED clause is specified for the receiving item, refer to the section on
“JUSTIFIED clause“ on page 245.
78 U41112-J-Z125-1-76
Language concepts Alignment of data
U41112-J-Z125-1-76 79
Alignment of data Language concepts
1. Data formats
80 U41112-J-Z125-1-76
Language concepts Alignment of data
Example 2-6
Slack bytes within records
01 A.
02 B PICTURE X(5).
02 C.
03 D PICTURE XX.
[03 slack byte PICTURE X. Inserted by the compiler.]
03 E PICTURE S9(6) COMP SYNCHRONIZED.
Slack bytes are also added by the compiler when a group item is described with an
OCCURS clause and contains an aligned data item defined with USAGE as BINARY,
COMPUTATIONAL, COMPUTATIONAL-1, COMPUTATIONAL-2, COMPUTATIONAL-5
or INDEX. To decide whether to add slack bytes, the following steps are performed:
– The compiler calculates the size of the group including all intra-record slack bytes
required.
– This sum is divided by the largest m required by any elementary item within the
group.
– If the remainder r of this division is equal to zero, no slack bytes will be needed. If r
is unequal to zero, m-r slack bytes must be added.
U41112-J-Z125-1-76 81
Alignment of data Language concepts
Insertion of slack bytes takes place at the end of each occurrence of the group item
which contains the OCCURS clause, in order to ensure that all occurrences of table
items begin at the same kind of boundary. In example 2-7, all occurrences of D begin
one byte beyond a double-word boundary.
Example 2-7
Occurrences of slack bytes in tables
01 A.
02 B PICTURE X.
02 C OCCURS 10 TIMES.
03 D PICTURE X.
[03 slack bytes PICTURE XX. Inserted by the compiler.]
03 E PICTURE S9(4)V99 COMP SYNC.
03 F PICTURE S9(4) COMP SYNC.
03 G PICTURE X(5).
[03 slack bytes PICTURE XX. Inserted by the compiler.]
If aligned data items defined as BINARY, COMPUTATIONAL, COMPUTATIONAL-1,
COMPUTATIONAL-2, COMPUTATIONAL-5 or INDEX follow an entry with an OCCURS
DEPENDING clause, then slack bytes are added on the basis of the item which is
repeated with the maximum number. If the length of this item is not divisible by the m
required by the data, then only certain values of the data-name used in the
DEPENDING phrase produce a correct alignment of the items. The programmer should
be aware of this situation and try to avoid it. These values are ones in which the length
of the data item, multiplied by the number of occurrences plus the number of slack bytes
calculated on the basis of the maximum number of occurrences, is divisible by m with
no remainder.
82 U41112-J-Z125-1-76
Language concepts Alignment of data
Example 2-8
Occurrences of slack bytes in tables with the DEPENDING phrase
01 A.
02 B PICTURE 99.
02 C PICTURE X OCCURS 50 TO 99 TIMES
DEPENDING ON B.
[02 slack bytes PICTURE X. Inserted by the compiler.]
02 D PICTURE S99 COMP SYNC.
In this example, when references to D are required, B is restricted to odd values.
01 A.
02 B PICTURE 999.
02 C PICTURE XX OCCURS 20 TO 99 TIMES
DEPENDING ON B.
[02 slack bytes PICTURE X. Inserted by the compiler.]
05 D PICTURE S99 COMP SYNC.
In this example, all values of B provide correct references to D.
U41112-J-Z125-1-76 83
Uniqueness of references Language concepts
2.5.1 Qualification
Function
Every user-defined name explicitly referenced in a COBOL compilation unit must be unique.
A name is unique when there is no other name consisting of the same sequence of
characters and hyphens, or the name occurs in a hierarchy of names, so that it can be refer-
enced unambiguously. This occurs by specifying one or more names on a higher level of
the hierarchy. The higher levels are called qualifiers, and the process that causes the name
to be unique is called qualification. A name must be qualified sufficiently to be unique;
however, it is not absolutely necessary to specify all levels of the hierarchy. Within the Data
Division, all data names used for qualification purposes must be given a level number or a
level identifier. Thus, two identical data names cannot be subordinate elements of a single
group item, unless they can be uniquely qualified. In the Procedure Division, two identical
paragraph names are only allowed to occur in the same section if they are not referenced.
If a paragraph name is referenced, it must be unique, i.e. it must be qualified when it occurs
in more than one section.
In the qualification hierarchy, the names belonging to a level identifier are the most
important, followed by the names belonging to level 01, then those belonging to level 02 to
49. A section name is the only qualifier available for paragraph names. The uppermost
name in the hierarchy must be unique, and cannot be qualified. Subscripted or indexed data
names and conditional variables, as well as procedure names and data names, can be
made unique by means of qualification. The name of a conditional variable can be used as
a qualifier for each of its condition names.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IN IN
data-name-2... file-name
data-name-1 OF OF
condition-name IN
file-name
OF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
84 U41112-J-Z125-1-76
Language concepts Uniqueness of references
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IN
paragraph-name section-name
OF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IN
text-name library-name
OF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 4
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IN
LINAGE-COUNTER file-name
OF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 5
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
PAGE-COUNTER IN
report-name
LINE-COUNTER OF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 6
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IN IN
data-name-2 report-name
OF OF
data-name-1
IN
report-name
OF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. Each qualifier must be of a successively higher level and within the same hierarchy as
the name it qualifies.
2. The same name must not appear on more than one level of the hierarchy.
3. A data name must not be subscripted or indexed when used as a qualifier.
U41112-J-Z125-1-76 85
Uniqueness of references Language concepts
General rules
1. A data-name or a condition-name, if assigned to more than one data item within the
compilation unit, must be qualified whenever it is referenced in the Procedure,
Environment or Data Division (except in the REDEFINES clause, where qualification is
not needed and may be used).
2. A paragraph-name is only allowed to occur more than once within a section if it is not
referenced. If it is referenced, it is only allowed to occur once within a section, or must
be qualified when it occurs in more than one section. When a paragraph-name is
qualified by a section-name, the word SECTION must not be used. A paragraph-name,
when referenced from within the same section, need not be qualified.
3. A name may be qualified even when qualification is not required; if uniqueness may be
ensured by more than one combination of qualifiers, then each such combination is
permitted. The total set of the qualifiers for a given data-name must not be identical to
a subset of qualifiers for another data-name.
4. If more than one COBOL library is available to the compiler at compile time, then every
time text-name is referenced it must be qualified by library-name.
5. If data-name is qualified in a contained or containing program of a nested program, the
same data-name must not be used for a unit of data (record or data item) that is
declared as external or global in one of the group of nested programs.
86 U41112-J-Z125-1-76
Language concepts Subscripting
2.5.2 Subscripting
Function
Subscripts are used when an individual element is to be accessed within a table (see the
section on “OCCURS clause“ on page 247 ).
Format 1
Format 2
Describes subscripting with qualification.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name-1 IN IN
data-name-2 data-name-3 ...
condition-name OF OF
({subscript-1}... )
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
For a description of qualification with associated rules see the section on "Qualification"
(page 84).
1. data-name-1 is the name of the table element. Its data description entry must either
contain an OCCURS clause, or it must be subordinate to a data item which contains an
OCCURS clause.
2. subscript-1... may be represented by
– an integer literal
– a data-name with a positive integer as its value
– relative subscripting
– an arithmetic expression with the value of a positive integer
– the word ALL.
U41112-J-Z125-1-76 87
Subscripting Language concepts
The data-name itself may be qualified but not indexed. ALL may be specified only if the
subscripted identifier is specified as a function argument.
3. One subscript must be specified for each OCCURS clause which is subordinate to data-
name. Since a table may have up to seven dimensions, references to an element in a
table may require up to seven subscripts.
4. The subscript is enclosed in parentheses. The left parenthesis immediately follows the
spaces after the name of the table element (data-name). When more than one subscript
appears within a set of parentheses, these subscripts may be separated either by
commas followed by at least one space, or by spaces only.
In the case of relative subscripting, the operational signs between data-name and
integer must also be delimited by spaces.
5. The subscript, or set of subscripts, identifies the table element which is to be refer-
enced. A data-name to which one or more subscripts have been added is called a
subscripted data-name or identifier.
6. When more than one subscript is used, they are entered proceeding from the outermost
to the innermost table.
The subscript may contain a plus sign. The lowest valid subscript is 1. Consequently,
neither zero nor negative numbers are permitted for subscripting. The highest allowable
subscript value, in any particular case, is the maximum number of occurrences of the
item, as specified in the OCCURS clause.
88 U41112-J-Z125-1-76
Language concepts Indexing
2.5.3 Indexing
Function
Indices are used when an individual element is to be accessed within a table (see the
section on “OCCURS clause“ on page 247).
Format 1
Format 2
+
({index-1 integer }... )
-
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
For a description of qualification with associated rules see the section on "Qualification"
(page 84).
U41112-J-Z125-1-76 89
Indexing Language concepts
1. The values of indices may be stored without conversion (SET statement) in data items
defined with the USAGE IS INDEX clause. These data items are then called index data
items (see "USAGE clause" and "SET statement").
2. An index may be modified only by a SET, SEARCH or PERFORM statement (see the
descriptions of these statements).
90 U41112-J-Z125-1-76
Language concepts Function-identifier
2.5.4 Function-identifier
A function-identifier is a syntactically correct combination of character-strings and
separators that uniquely references the data item resulting from the evaluation of a function.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION function-name-1 [({argument-1}...)] [reference-modifier]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. argument-1 must be an identifier, a literal, or an arithmetic expression. Specific rules
governing the number, class, and category of argument-1 are given in the definition of
each function (see chapter 9, "Intrinsic functions").
2. A reference-modifier may be specified only for functions of the category alphanumeric.
3. A function-identifier which references an alphanumeric function may be specified
anywhere in the general formats that an identifier is permitted and where the rules
associated with the general formats do not specifically prohibit reference to functions,
except as follows:
a) as a receiving operand of any statement,
b) where the rules associated with the general formats require the data item being ref-
erenced to have particular characteristics (such as class and category, usage, size,
sign, and permissible values) and the evaluation of the function according to its def-
inition and the particular arguments specified would not have these characteristics.
4. A function-identifier which references an integer or numeric function may be used only
in an arithmetic expression.
General rules
1. The class and other characteristics of the function being referenced are determined by
the function definition.
2. At the time reference is made to a function, its arguments are evaluated individually in
the order specified in the list of arguments, from left to right. An argument being
evaluated may itself be a function-identifier or may be an expression containing
function-identifiers. There is no restriction preventing the function referenced in evalu-
ating an argument from being the same function as that for which the argument is
specified.
U41112-J-Z125-1-76 91
Reference modification Language concepts
Function
Reference modification defines a data item through specification of the position of the
leftmost character and the length of the data item.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name-1
(leftmost-char-position: [length])
FUNCTION function-name-1 [({argument-1}... )]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name-1 and FUNCTION function-name-1 are not part of the reference-modifier. They
are included here for the sake of clarity.
Syntax rules
1. data-name-1 must reference a data item that is described with USAGE IS DISPLAY.
2. leftmost-character-position and length must be arithmetic expressions.
3. Unless otherwise specified, reference modification may be used wherever an alphanu-
meric identifier is permitted.
4. data-name-1 may be qualified or subscripted.
5. The function referenced by function-name-1 and its arguments (if any) must be an
alphanumeric function.
General rules
92 U41112-J-Z125-1-76
Language concepts Reference modification
4. Reference modification creates a unique data item that forms a subset of the data item
referenced by data-name-1 or function-name-1. This unique data item is defined as
follows:
a) leftmost-character-position specifies the character position of data-name-1 at which
the subfield is to begin.
leftmost-character-position must give a positive nonzero integer value that is less
than or equal to the number of character positions of data-name-1 or function-
name-1 and its arguments (if any).
b) length denotes the length of the unique data item. length must give a positive non-
zero integer value.
c) The sum of leftmost-character-position and length minus 1 must not exceed the
number of characters of the data item referenced by data-name-1 or function-name-
1. If "length" is not specified, the unique data item extends from the position denoted
by leftmost-character-position to the last character (inclusive) of the data item refer-
enced by data-name-1 or function-name-1.
5. The unique data item is considered to be an elementary item without a JUSTIFIED
clause. If function-name-1 is specified, the data item has "alphanumeric" class and
category. If data-name-1 is specified, it has the same category and class as the data
item referenced by data-name-1, except that the categories "numeric", "numeric edited"
and "alphanumeric edited" are considered to be alphanumeric category and class.
Example 2-9
A data item CARREG contains a 10-character car registration, the last 6 characters of
which are to be transferred to a subitem SHORTREG:
Program extract:
...
01 CARREG PIC X(10).
01 SHORTREG PIC X(6).
...
U41112-J-Z125-1-76 93
Identifier Language concepts
2.5.6 Identifier
Identifier is a term used to reflect that a data name, if not unique in a program, must be
followed by a syntactically correct combination of qualifiers, subscripts or indices necessary
to ensure uniqueness.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION function-name-1 [({argument-1}...)] [reference-modifier]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IN IN file-name-1
data-name-1 data-name-2 ...
OF OF report-name-1
94 U41112-J-Z125-1-76
Language concepts Object-view
Format
Syntax rules
1. identifier-1 must be an object reference or a predefined object identifier, which must not
be SUPER or NULL or a further object view.
2. identifier-1 may also be a class name.
3. The object view may not be specified as a receiving operand.
General rules
1. An object view returns an object reference that points to the same object as identifier-1
and assumes the same interface for conformance checks as specified in the AS phrase.
2. If class-name-1 is specified without either of the optional phrases, the implicit result is
the same as for USAGE IS OBJECT REFERENCE class-name-1. If the
object referenced by identifier-1 is not an object of class-name-1 or a subclass
of class-name-1, an exception condition occurs.
3. If the FACTORY phrase is specified without the ONLY phrase, the implicit result is the
same as for USAGE IS OBJECT REFERENCE class-name-1. If the object referenced
by identifier-1 is not the factory object of class-name-1 or a subclass of class-name-1,
an exception condition occurs.
4. If the ONLY phrase is specified and the FACTORY phrase is not specified, the implicit
result is the same as for USAGE OBJECT REFERENCE class-name-1 ONLY. If
the object referenced by identifier-1 is not an object of class-name-1, an exception
condition occurs.
U41112-J-Z125-1-76 95
Object-view Language concepts
5. If both the FACTORY phrase and the ONLY phrase are specified, the implicit result is
the same as for USAGE OBJECT REFERENCE class-name-1 ONLY. If the object
referenced by identifier-1 is not the factory object of class-name-1, an exception
condition occurs.
6. If interface-name-1 is specified, the implicit result is the same as for USAGE OBJECT
REFERENCE interface-name-1. If the object referenced by identifier-1 does not
conform to interface-name-1, an exception condition occurs.
7. If UNIVERSAL is specified, the implicit result is the same as for USAGE OBJECT
REFERENCE without any of the optional phrases. No exception condition occurs.
8. The exception condition can be handled with the ON EXCEPTION phrase in
an INVOKE statement. If this is not the case, the program run is aborted.
96 U41112-J-Z125-1-76
Language concepts Predefined object references
General format
NULL
SELF
[class-name-1 OF] SUPER
NULL
NULL is a predefined object reference that contains the null object reference value, which
never references an object.
Format
NULL
Syntax rules
U41112-J-Z125-1-76 97
SELF Language concepts
Format
SELF
Syntax rules
General rules
1. SELF and SUPER both reference the object that was used to invoke the method in
which the reference to SELF or SUPER appears.
2. If SELF is specified for a method invocation, the method resolution is based upon the
set of methods defined for the runtime class of the object dynamically referenced by
SELF.
98 U41112-J-Z125-1-76
Language concepts Condition-name
3. If SUPER is specified for a method invocation, the method resolution ignores all the
methods defined in the class containing the invocation and all the methods defined in
any subclass of that class. Thus the invoked method can only be one that is inherited
from a superclass.
4. If class-name-1 is specified, the search for the method will occur only in the methods
defined for it.
2.5.9 Condition-name
If referenced explicitly, a condition-name must be unique or be made unique by means of
qualification and/or subscripting. This is not necessary if the uniqueness of the reference is
guaranteed by the naming conventions for the scope themselves.
If qualification is used in order to render a condition-name unique, the associated condi-
tional variable can be used as the first qualifier. Also, in the case of qualification, the
hierarchy of names that are assigned to the conditional variable must be used in order to
render a condition-name unique.
If the reference to a conditional variable necessitates subscripting, the same combination
of subscripts is required when referencing one of its condition-names.
With regard to the qualification and subscripting of condition-names, the same format and
restrictions are applicable as for the identifiers except that data-name-1 is replaced by
condition-name-1.
In the general format in the following sections, "condition-name-n" always refers to a
condition-name that, depending on the requirements, is qualified or subscripted.
U41112-J-Z125-1-76 99
Table handling Language concept
100 U41112-J-Z125-1-76
Table handling Table definition
Example 2-10
01 TABLE1.
02 TABLE-ELEMENT PIC XXX OCCURS 20 TIMES.
The data item TABLE1 comprises 20 data items of identical length. These items are given
the name TABLE-ELEMENT:
TABLE1: 1. TABLE-ELEMENT (1) PIC XXX.
2. TABLE-ELEMENT (2) PIC XXX.
.
.
.
20. TABLE-ELEMENT (20) PIC XXX.
One-dimensional tables
The OCCURS clause is entered in the data description entry of the table element.
Example 2-11
01 TABLE2.
02 TABLE-ELEMENT OCCURS 2 TIMES.
03 ELEMENT-ITEM-1 PIC X(4).
03 ELEMENT-ITEM-2 PIC X(4).
TABLE2 is the name of the table.
TABLE-ELEMENT is the element which occurs twice within the one-dimensional TABLE2.
ELEMENT-ITEM-1 and ELEMENT-ITEM-2 are elements which are subordinate to TABLE-
ELEMENT.
Multi-dimensional tables
U41112-J-Z125-1-76 101
Table definition Table handling
Example 2-12
01 TABLE3.
02 BLK OCCURS 2 TIMES.
03 RECORD OCCURS 2 TIMES.
04 ITEM OCCURS 2 TIMES PIC X(10).
BLK is an element which occurs twice within a one-dimensional table.
RECORD is an element in a two-dimensional table. It occurs twice within each occurrence
of BLK.
ITEM is an element in a three-dimensional table. It occurs twice within each occurrence of
RECORD.
TABLE BLK (1) RECORD (1, 1) ITEM (1, 1, 1)
ITEM (1, 1, 2)
RECORD (1, 2) ITEM (1, 2, 1)
ITEM (1, 2, 2)
BLK (2) RECORD (2, 1) ITEM (2, 1, 1)
ITEM (2, 1, 2)
RECORD (2, 2) ITEM (2, 2, 1)
ITEM (2, 2, 2)
Fig. 2-3 Schematic representation of TABLE
A VALUE clause must not appear in a record description entry with an OCCURS clause, or
in any record description entry subordinate to that entry. However, for the definition of
condition-names, the VALUE clause is allowed and required here as well.
Initial values may be assigned to a table in the WORKING-STORAGE SECTION or LOCAL-
STORAGE SECTION by using the VALUE clause.
102 U41112-J-Z125-1-76
Table handling Table definition
Example 2-13
WORKING-STORAGE SECTION.
01 WOCHE VALUE
"MONTAG DIENSTAG MITTWOCH DONNERSTAG
"FREITAG SAMSTAG SONNTAG ".
02 TAG PIC X(10) OCCURS 7 TIMES.
01 WEEK.
02 WDAY PIC X(10) OCCURS 7 TIMES VALUE FROM (1)
"MONDAY" "TUESDAY" "WEDNESDAY" "THURSDAY"
"FRIDAY" "SATURDAY" "SUNDAY".
01 UGE.
02 FILLER OCCURS 7 TIMES.
03 DAG PIC X(10) VALUE FROM (1)
"MANDAG" "TISDAG" "ONSDAG" "TORSDAG"
"FREDAG" "LOERDAG" "SOENDAG".
All the elements within a table have the same data-name. To identify individual occurrences
of table elements, occurrence numbers (indexes) enclosed in parentheses are appended to
the data-name.
Example 2-14
01 TABLE4.
02 ELEMENT OCCURS 10 TIMES.
.
.
.
MOVE ELEMENT OF TABLE4 (8) TO ...
Here the eighth table element is accessed.
An occurrence number must be supplied for each dimension.
There are two techniques for referencing table elements:
– subscripting
– indexing
U41112-J-Z125-1-76 103
Subscripting Table handling
2.6.2 Subscripting
One method of specifying occurrence numbers is to append one or more subscripts to the
data-name. A subscript is an integer whose value represents the occurrence number of a
table element or one of the items subordinate to that table element. The subscript may be
represented
– by an integer literal
– by a data-name defined as a numeric elementary data item without any character posi-
tions to the right of the assumed decimal point
– by an arithmetic expression that is neither a direct nor a relative subscript.
In either case, the subscript must be enclosed in parentheses and must be written immedi-
ately following any qualification for the name of the table element. The referenced table
element must have appended to it as many subscripts as the associated table has dimen-
sions. A subscript must therefore be supplied for each OCCURS clause, including the
OCCURS clause which contains the data-name within the defined hierarchy.
In example 2-12 (three-dimensional table), the following are required:
– one subscript for references to BLK
– two subscripts for references to RECORD
– three subscripts for references to ITEM.
Subscripts are written proceeding from the outermost to the innermost table.
Thus, for example,
ITEM (1, 2, 2)
identifies the second element ITEM
within the second element RECORD
within the first element BLK.
A reference to a data item must not be subscripted unless the data item is a table element,
or unless it is an item or condition-name within a table element.
There are three forms of subscripting:
– direct subscripting
– relative subscripting
– subscripting by means of an arithmetic expression
104 U41112-J-Z125-1-76
Table handling Subscripting
Direct subscripting
With direct subscripting, the subscript is specified either by an integer literal or by a data-
name. The data-name must be defined as a numeric elementary item with no character
positions to the right of the assumed decimal point. In the preceding example, direct
subscripting was used.
Relative subscripting
A subscript can consist of an arithmetic expression that supplies an integer as its result.
If a subscript consists of an arithmetic expression that is neither a direct nor a relative
subscript, then the required occurrence number is calculated from the value of the arith-
metic expression at object time.
At both compile time and object time, arithmetic expressions are processed more slowly
than direct or relative subscripts. For this reason, swapping of data-name and integer in
relative subscripts should be avoided, as too should the enclosure of a direct or relative
subscript in parentheses since such expressions are considered to be arithmetic expres-
sions.
If a subscript ends with a data-name or an index, then an immediately following subscript
must not begin with a left parenthesis since this would initiate subscripting of the data-name
or index.
U41112-J-Z125-1-76 105
Indexing Table handling
2.6.3 Indexing
Another technique for referencing table elements is indexing. Indexing is made possible by
supplying the INDEXED BY phrase in the OCCURS clause.
The index does not require its own data description entry. At object time, the value of an
index is a binary value representing a displacement from the beginning of the table. The
value of this binary number is calculated from the number and length of the table element
as follows:
binary value of index = (occurrence number - 1) * length of table element
The value of an index may only be set using the SET, SEARCH or PERFORM statement.
The initial value is undefined and must be set explicitly.
There are two forms of indexing:
– direct indexing
– relative indexing
Direct indexing
Direct indexing obtains when an index is used in the manner of a direct subscript.
Example 2-15
01 TABLE1.
02 TABLE-A PIC XX OCCURS 10 TIMES INDEXED BY INDEX-A.
02 TABLE-B PIC X(3) OCCURS 5 TIMES INDEXED BY INDEX-B.
.
.
SET INDEX-A TO 7.
.
MOVE "X7" TO TABLE-A (INDEX-A).
106 U41112-J-Z125-1-76
Table handling Indexing
Relative indexing
As specified in the standard, the value of an index should correspond to a valid occurrence
number of the associated table. This compiler also permits corresponding occurrence
numbers for 0, ZERO, or negative numbers, and values beyond the maximum permissible
occurrence numbers, if the binary value of the index remains within the range (repre-
sentable in 4 bytes) -231 to +231-1. In these cases, the index must be set (e.g. with SET
UP or SET DOWN) to a valid occurrence number before it is used, or corresponding relative
indexing must be used to ensure that only valid table elements are addressed.
U41112-J-Z125-1-76 107
Indexing and subscripting compared Table handling
108 U41112-J-Z125-1-76
Language concepts Statements and sentences
U41112-J-Z125-1-76 109
Statements and sentences Language concepts
110 U41112-J-Z125-1-76
Language concepts Statements and sentences
U41112-J-Z125-1-76 111
Statements and sentences Language concepts
In addition to the separator period (implicit scope terminator), the following explicit scope
terminators can be used to support structured programming:
END-ACCEPT END-DIVIDE END-RECEIVE END-SUBTRACT
END-ADD END-EVALUATE END-RETURN END-UNSTRING
END-CALL END-IF END-REWRITE END-WRITE
END-COMPUTE END-INVOKE END-SEARCH
END-DELETE END-MULTIPLY END-START
END-DISPLAY END-PERFORM END-STRING
END-READ
112 U41112-J-Z125-1-76
Language concepts Statements and sentences
U41112-J-Z125-1-76 113
Statements and sentences Language concepts
114 U41112-J-Z125-1-76
Language concepts Processing a COBOL program
U41112-J-Z125-1-76 115
EBCDIC character set Language concepts
116 U41112-J-Z125-1-76
Language concepts EBCDIC character set
U41112-J-Z125-1-76 117
Euro symbol Language concepts
Note: COBOL2000 supports the Euro symbol to the extent that the Euro symbol is allowed
in character strings and comments of a COBOL program. The Euro symbol is also allowed
in the CURRENCY-SIGN clause, and its use is supported in the PICTURE clause. More de-
tails on this can be found in the BS2000/OSD Softbooks [13].
118 U41112-J-Z125-1-76
3 Controlling the compiler
U41112-J-Z125-1-76 119
COPY statement Source text manipulation
COPY statement
Function
The COPY statement inserts texts from a library into a compilation unit. At the same time,
it permits parts of the new texts to be replaced.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
OF
COPY text-name library-name [SUPPRESS]
IN
word-1 word-2
identifier-1 identifier-2
REPLACING BY ....
literal-1 literal-2
==pseudo-text-1== ==pseudo-text-2==
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. text-name is the name of the text which is to be inserted in the compilation unit. The text
is stored as a library element ("member") with this name in a library.
text-name is a user-defined word with a length of 1 to 30 characters.
2. If text-name is qualified by library-name, the specified library is searched for the text.
If text-name is not qualified by library-name, up to ten libraries are searched for the text.
Assignment of libraries at compile time is described in more detail in the "COBOL2000
User Guide" [1].
3. The COPY statement must be preceded by a space or some other separator symbol.
4. pseudo-text-1 must contain at least one text word, while pseudo-text-2 may be empty
(====) or may contain only spaces, comma, semicolon and comment lines.
5. Text words* in pseudo-text-1 and pseudo-text-2 and text words which form identifier-1,
identifier-2, literal-1, literal-2, word-1, word-2 may be continued on the next line. The
pseudo-text separator (==), on the other hand, must not be continued.
6. word-1 and word-2 may be any single COBOL word except "COPY".
7. Lowercase letters that are used in text words are equivalent to the corresponding
uppercase letters.
120 U41112-J-Z125-1-76
Source text manipulation COPY statement
General rules
1. Execution of a COPY statement causes the library text specified via text-name to be
copied to the compilation unit. The library text then replaces the entire COPY statement
(including the terminating separator period).
2. If SUPPRESS is specified, the library text is not included in the compilation unit list.
3. If REPLACING is not specified, the library text is copied unchanged.
COPY...REPLACING...
4. If REPLACING is specified, the library text is copied and the text preceding BY
(A-operand) is replaced by the text following BY (B-operand).
5. Text is replaced only if each text word in the text preceding BY matches, character for
character, the corresponding library text.
6. identifier-1, word-1 and literal-1 are treated as pseudo-text containing nothing but
identifier-1, word-1 and literal-1.
7. The comparison of the library text with the text preceding BY (A-operand, the result of
which decides whether or not a text is replaced, is carried out as follows:
a) Everything which precedes the first text word in the library text is copied into the
compilation unit. Starting with the first of the A-operands (pseudo-text-1, identifier-
1, word-1, literal-1), each A-operand is in turn compared with the corresponding
number of library text words, starting each time with the first library word.
b) Each of the separators comma (,Ë), semicolon (;Ë) or space in pseudo-text-1 or in
the library text is treated as a single space. Each string of one or more spaces is
treated as a single space.
c) If there is no match, the comparison is repeated with the next A-operand. This
process is continued until a match is found or until there are no more A-operands.
U41112-J-Z125-1-76 121
COPY statement Source text manipulation
d) When all A-operands of the REPLACING phrase have been compared with the
library text without finding a match, the first word of the library text is copied into the
compilation unit. The next library text word is then regarded as the first word and the
comparison operation is started again with the first A-operand.
e) Whenever a match occurs between an A-operand and the library text, the corre-
sponding B-operand (pseudo-text-2, identifier-2, word-2 or literal-2) is placed in the
compilation unit and replaces the library text corresponding to the A-operand. The
library text word following the last text word which was replaced is then regarded as
the first text word and the comparison operation is repeated starting with the first A-
operand.
f) The comparison cycle is repeated until the last library text word has been either
copied or replaced.
8. Comment lines or empty lines in the library text or pseudo-text-1 are treated as space
characters for the comparison. Any comment lines or empty lines in pseudo-text-2 are
moved to the compilation unit unchanged. Comment lines and empty lines in the library
text are copied unchanged into the compilation unit unless they are located within a text
word sequence which matches pseudo-text-1 and which is therefore replaced.
9. Debugging lines are permitted within a library text or pseudo-text. Text words in a
debugging line are subjected to the comparison rules as if there were no ’D’ in the
indicator area (column 7) of the debugging line. A debugging line lies within a pseudo-
text if the opening pseudo-text separator appears on a line which precedes the
debugging line.
10. Each word copied from the library, but not replaced, is copied so that it starts in the
same area of the line as in the library text.
If a text word in the library text starts in area A, but a preceding text word has been
replaced by a longer text, then the following word begins in area B if there is insufficient
space in area A.
If replaced by pseudo-text, each text word begins in the same area as specified in
pseudo-text-2. If replaced by identifier-2, literal-2 and word-2, the replacement text
begins in the area in which the leftmost replaced text word would stand if it had not been
replaced.
Text from a library is copied to the same area of the compilation unit which it occupied
in the library. For this reason, it must comply with the rules of the COBOL reference
format
11. If there is a COPY statement in a debugging line, the copied text is treated as if it were
also in debugging lines. This also applies to additional lines created by replacements in
the compilation unit.
12. If a COPY statement with the REPLACING phrase causes a line to be lengthened such
that additional lines are required, corresponding continuation lines are generated.
These lines may contain a continuation character in column 7.
122 U41112-J-Z125-1-76
Source text manipulation COPY statement
13. If parts of a text word are to be replaced, the string to be replaced must be enclosed
between appropriate separators (e.g. colons or parentheses) in the library text and in
the A-operand of the REPLACING phrase, thus identifying it as a separate text word
(see example 3-4).
Example 3-1
Assume a German library text named ADR, stored in library ADRLIB and consisting of the
following lines:
05 STRASSE PIC X(20).
05 PLZ PIC 9(5).
05 ORT PIC X(20).
05 LAND PIC X(20).
(1) Though appearing in the source listing, the COPY statement is treated as com-
ments during compilation.
U41112-J-Z125-1-76 123
COPY statement Source text manipulation
Example 3-2
In order to modify library text, the REPLACING phrase is specified in the COPY statement:
COPY ADR OF ADRLIB
REPLACING ADRESSE BY ADDRESS
STRASSE BY STREET
==PLZ PIC 9(5)== BY ==POST CODE PIC X(8)==
ORT BY TOWN
LAND BY COUNTRY.
After execution of this COPY statement, the compilation unit contains:
01 ADRESSE.
COPY ADR OF ADRLIB
REPLACING ADRESSE BY ADDRESS
STRASSE BY STREET
==PLZ PIC 9(5)== BY ==POST CODE PIC X(6)== MU LR2LR2LR2LR2LR2 (1)
ORT BY TOWN
LAND BY COUNTRY.
05 STREET PIC X(20).
05 POST CODE PIC X(6).
05 TOWN PIC X(20).
05 COUNTRY PIC X(20).
(1) Though appearing in the source listing, the COPY statement is treated as com-
ments during compilation.
The changes only affect this compilation unit; the text in the library remains unchanged.
Example 3-3
124 U41112-J-Z125-1-76
Source text manipulation COPY statement
Example 3-4
U41112-J-Z125-1-76 125
REPLACE statement Source text manipulation
REPLACE statement
Function
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
REPLACE {==pseudo-text-1== BY ==pseudo-text-2==}... .
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
REPLACE OFF.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
126 U41112-J-Z125-1-76
Source text manipulation REPLACE statement
4. All REPLACE statements in a compilation unit or in a library text are executed only after
all COPY statements in the compilation unit or library text have been executed. The
operands of a REPLACE statement cannot be modified with the REPLACING phrase
of a COPY statement.
5. The text which results from execution of a REPLACE statement must not contain either
a REPLACE statement or a COPY statement.
6. Lowercase letters that are used in text words are equivalent to the corresponding
uppercase letters.
7. The comparison operation whose results determine whether or not a text is to be
replaced is executed as follows (the term "source text" is used here to mean both the
compilation unit text and the library text):
a) Starting with the first text word of the source text after the REPLACE statement and
the first word of pseudo-text-1, pseudo-text-1 is compared with the corresponding
number of consecutive text words.
b) pseudo-text-1 matches the source text only if the sequence of text words in pseudo-
text-1 is identical, character for character, with the corresponding sequence of text
words in the source text.
c) If no match is found, the comparison is repeated with each subsequent occurrence
of pseudo-text-1 until a match is found or until there is no further pseudo-text-1.
d) When each specified pseudo-text-1 has been compared with the source text
without finding a match, the next word of the source text is regarded as the first text
word and the comparison operation starts again with the first pseudo-text-1.
e) If a match between pseudo-text-1 and the source text is found, this part of the
source text is replaced with the corresponding pseudo-text-2. The text word in the
source text which immediately follows the replaced text is then regarded as the first
text word and the comparison operation starts again with the first pseudo-text-1.
f) The comparison operation continues until the last text word affected by the
REPLACE statement has been replaced or has been compared as the first text
word with every pseudo-text-1.
8. Comment lines and empty lines in the source text or in pseudo-text-1 are treated as
spaces for the comparison operation. The order of the text words in the source text and
in pseudo-text-1 is defined by the reference format (see "Reference format", page 47).
Any comment lines or empty lines in pseudo-text-2 are transferred unchanged to the
compilation unit. Any comment line or empty line in the source text which lies within a
sequence of text words which matches pseudo-text-1 will not appear in the final version
of the program text.
U41112-J-Z125-1-76 127
REPLACE statement Source text manipulation
9. Debugging lines are permitted in the pseudo-text. Text words in pseudo-text-1 which lie
in a debugging line are treated, during comparison, as if there were no ’D’ in the
indicator area (column 7).
10. Except for the COPY and REPLACE statements themselves, the syntax of the source
text cannot be checked until all COPY and REPLACE statements have been fully
executed.
11. Text words introduced by a REPLACE statement are placed in the program text in
accordance with the reference format. When text words from pseudo-text-2 are moved
to the program text, additional spaces are inserted only where they existed in the
original text or in pseudo-text-2. This includes the implicit space between lines of the
compilation unit.
12. If a REPLACE statement introduces additional lines to the compilation unit, the indicator
area of each of these lines is marked with the character specified in the first line which
was replaced. The only exception to this is where the original compilation unit line
contained a hyphen: in this case, the inserted line contains a space.
If a COPY statement with the REPLACING phrase causes a line to be lengthened such
that additional lines are required, corresponding continuation lines are generated.
These lines may contain a continuation character in column 7.
If the replacement operation requires continuation of a literal in a debugging line, there
is an error in the compilation unit.
128 U41112-J-Z125-1-76
Compiler directives
General
U41112-J-Z125-1-76 129
Compiler directives
Conditional compilation
Some compiler directives can be used to include or omit selected lines of source code in
the compilation. This is called conditional compilation.
The DEFINE, EVALUATE and IF directives are intended for this purpose.
Defined condition
Format
Syntax rules
General rules
130 U41112-J-Z125-1-76
Compiler directives DEFINE
DEFINE directive
The DEFINE directive defines integral constants that can be used in an IF directive,
EVALUATE directive or constant definition.
Format
Syntax rules
1. If the OVERRIDE phrase is not used, one of the following conditions must apply:
– constant-name-1 may only be defined once within the compilation group.
– The last DEFINE directive that defines the same constant has the same value.
2. constant-expression can be formed from integers, constant names and
(,), +, -, *, /.
3. The integers and the value of constant-expression must each be greater than
-2147483648 and less than +2147483648.
General rules
1. The DEFINE directive is processed concurrently with the execution of the COPY and
REPLACE statement.
2. The defined constants may only be used other directives, but not in program text.
3. constant-name-1 may be overridden with OVERRIDE.
U41112-J-Z125-1-76 131
EVALUATE Compiler directives
EVALUATE directive
The EVALUATE directive supports the conditional compilation of multiple alternatives.
Format 1
arithmetic-expression-1
>>EVALUATE
boolean-expression-1
arithmetic-expression-2 THROUGH
{ >>WHEN [ arithmetic-expression-3]}
boolean-expression-2 THRU
[source-text-1]}...
[>>WHEN OTHER
[source-text-2]]
>>END-EVALUATE
Format 2
>>EVALUATE TRUE
{>>WHEN constant-boolean-expression-1
[source-text-1]}...
[>>WHEN OTHER
[source-text-2]]
>>END-EVALUATE
132 U41112-J-Z125-1-76
Compiler directives EVALUATE
Syntax rules
All formats:
1. The parts of the compiler directive introduced with >> must be specified together with
the succeeding operands, each in a separate line.
source-text-1 and source-text-2 must begin on a new line.
2. source-text-1 and source-text-2 may contain any source code lines, including
directives. source-text-1 and source-text-2 may each span multiple lines.
Format 1
1. All operands of one EVALUATE directive must be of the same category. For this rule, an
arithmetic expression is of category numeric and a boolean expression is of category
boolean.
2. If the THROUGH phrase is specified, all selection items must be of category numeric.
The words THRU and THROUGH are equivalent.
3. arithmetic-expression can be formed from integers, constant names and
(,), +, -, *, /.
General rules
All formats
1. The EVALUATE directive is processed during the execution of the COPY REPLACE
statements.
2. As soon as a WHEN phrase evaluates to TRUE, the associated source-text-1 is
compiled, and all other lines, including >>END-EVALUATE, are ignored. If none of the
WHEN phrases evaluate to TRUE, then source-text-2, if specified, is compiled, and all
other lines are ignored.
Format 1
3. Only comparisons between arithmetic expressions and/or the DEFINED condition are
supported as a boolean-expression.
4. arithmetic-expression-1 and boolean-expression-1 are compared against the values in
the WHEN phrase in accordance with the following rules:
a) If THROUGH is not specified, a TRUE result is returned when arithmetic-
expression-1 or boolean-expression-1 is equal to arithmetic-expression-2
or boolean-expression-2,
b) If THROUGH is specified, a TRUE result is returned when arithmetic-expression-1
lies in the value range of arithmetic-expression-2 and arithmetic-expression-3.
U41112-J-Z125-1-76 133
IF Compiler directives
IF directive
The IF directive supports the conditional compilation of one or two alternatives.
Format
>>IF constant-boolean-expression-1
[source-text-1]
[>>ELSE
[source-text-2]]
>>END-IF
Syntax rules
1. The parts of the compiler directive introduced with >> must be specified together with
the succeeding operands, each in a separate line.
source-text-1 and source-text-2 must begin on a new line.
2. The source lines must be entered as specified in the format, and both source-text-1 and
source-text-2 may span multiple lines. The source texts may also include compiler
directives.
General rules
1. The IF directive is processed during the execution of COPY and REPLACE statements.
2. If conditional-expression-1 is true, source-text-1 is compiled, and source-text-2
is ignored.
3. If conditional-expression-1 is not true, source-text-1 is ignored, and source-text-2, if
present, is compiled.
4. Only comparisons between arithmetic expressions and/or the DEFINED condition are
supported as constant-boolean-expression-1 (for details on arithmetic expressions, see
EVALUATE).
Notes:
Nesting is limited to 256 levels, and no two COPY statements may be placed on the same
line. Expressions with AND, OR and NOT are not allowed.
134 U41112-J-Z125-1-76
Compiler directives LISTING
LISTING directive
The LISTING directive controls whether or not source text is to be listed.
Format
ON
>>LISTING
OFF
General rules
1. If the compiler does not produce a source listing (see ’Controlling the Compiler’ in the
User Guide), the LISTING directive is ignored; otherwise, the following rules apply:
2. The LISTING directive is executed after the COPY and REPLACE statements.
3. The >>LISTING ON/OFF directive is always listed, even if the listing itself is being sup-
pressed by a LISTING directive.
4. If OFF is specified, except for another LISTING OFF directive, source text will not be
listed until a LISTING ON directive is encountered.
5. If ON is specified or implied, source text will be listed until either a LISTING OFF direc-
tive is encountered or the end of the compilation group is reached.
U41112-J-Z125-1-76 135
PAGE Compiler directives
PAGE directive
The PAGE directive generates a page feed and thus supports the documentation of the
source listing.
Format
>>PAGE [comment-text]
Syntax rules
1. comment-text may contain any characters in the computer's coded character set.
2. comment-text is not checked syntactically.
General rules
136 U41112-J-Z125-1-76
Compiler directives SOURCE FIXED
General description
The next COBOL standard permits the source formats free and fixed, and enables these
formats to be switched at will. For COPY elements to be imported, the format set in the
source applies. If the COPY element is to be independent of this format, the format must be
set in the COPY element itself. This format then applies only to the corresponding COPY
element.
Function
The SOURCE FIXED directive protects the source format of COPY elements from external
interference.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
>>SOURCE [FORMAT IS] FIXED.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
This directive is currently treated as a comment, since the compiler supports only the
fixed source format.
U41112-J-Z125-1-76 137
SOURCE FIXED Compiler directives
138 U41112-J-Z125-1-76
4 Structure of a COBOL compilation group
U41112-J-Z125-1-76 139
General structure COBOL compilation group
{compilation unit}...
Compilation unit:
Program-prototype
Program-definition
Class-definition
Interface-definition
Program prototype:
[IDENTIFICATION DIVISION.]
PROGRAM-ID. {program-prototype-name-1} IS PROTOTYPE.
[environment-division]
[data-division]
[procedure-division]
END PROGRAM program-prototype-name-1.
140 U41112-J-Z125-1-76
COBOL compilation group General structure
[IDENTIFICATION DIVISION.]
INITIAL
COMMON
RECURSIVE
PROGRAM-ID. program-name-1 [IS INITIAL COMMON PROGRAM ].
COMMON INITIAL
COMMON RECURSIVE
RECURSIVE COMMON
[environment-division]
[data-division]
[procedure-division [nested program-definition]...]
[END PROGRAM program-name-1.]
U41112-J-Z125-1-76 141
General structure COBOL compilation group
Class definition:
[IDENTIFICATION DIVISION.]
CLASS-ID. class-name-1 [IS FINAL] [INHERITS FROM{class-name-2}...].
[environment-division]
[IDENTIFICATION DIVISION.]
FACTORY.
[environment-division]
[data-division]
[object-oriented procedure-division]
END FACTORY.
[IDENTIFICATION DIVISION.]
OBJECT.
[environment-division]
[data-division]
[object-oriented procedure-division]
END OBJECT.
Interface definition:
[IDENTIFICATION DIVISION.]
INTERFACE-ID. interface-name-1
[INHERITS FROM {interface-name-2}...].
[environment-division]
[object-oriented procedure-division]
END INTERFACE interface-name-1.
142 U41112-J-Z125-1-76
COBOL compilation group General structure
PROCEDURE DIVISION.
[{methods-definition}...]
Methods definition:
[IDENTIFICATION DIVISION.]
METHOD-ID. method-name-1 [OVERRIDE] [IS FINAL].
[environment-division]
[data-division]
[procedure-division]
END METHOD method-name-1.
Syntax rules
General rules
1. In the program prototype compilation unit, all sections in the Data Division except for the
Linkage Section and everything in the Procedure Division except for the Procedure
Division header are ignored. The ignored parts must still contain the correct COBOL
syntax.
U41112-J-Z125-1-76 143
General structure COBOL compilation group
144 U41112-J-Z125-1-76
COBOL compilation group END markers
Function
ENDE markers indicate the end of a known source unit, where a source unit is a sequence
of statements that begins with an Identification Division and ends with an END marker. A
source unit that is not nested with other source units is a compilation unit (see also section
4.2).
FACTORY, OBJECT and METHOD are not separately compilable source units.
Format
PROGRAM program-prototype-name1
PROGRAM program-name-1
CLASS class-name-1
END FACTORY .
OBJECT
METHOD [method-name-1]
INTERFACE interface-name-1
Syntax rules
1. An END marker must be present in every source unit that contains, is contained in, or
precedes another source unit.
2. If a PROGRAM-ID paragraph for program-name-2 is stated between a PROGRAM-ID
paragraph for program-name-1 and its associated END marker, then the END marker
for program-name-2 must precede the END marker for program-name-1.
3. program-name-1 must be identical to the program name declared in the PROGRAM-ID
paragraph of the program to which the END marker refers.
4. class-name-1 must be identical to the class name declared in the corresponding
CLASS-ID paragraph.
5. method-name-1 must be identical to the method name declared in the corresponding
METHOD-ID paragraph.
6. interface-name-1 must be identical to the interface name declared in the corresponding
INTERFACE-ID paragraph.
7. program-prototype-name-1 must be identical to any one of the program prototype
names declared in the corresponding PROGRAM-ID paragraph.
U41112-J-Z125-1-76 145
END markers COBOL compilation group
146 U41112-J-Z125-1-76
5 Identification Division
IDENTIFICATION DIVISION.
ID DIVISION.
program-id paragraph
class-id paragraph
factory paragraph
object paragraph
method-id paragraph
interface-id paragraph
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 147
PROGRAM-ID paragraph IDENTIFICATION DIVISION
5.3 Paragraphs
PROGRAM-ID paragraph
Function
Format 1
INITIAL
COMMON
RECURSIVE
PROGRAM-ID. program-name [IS INITIAL COMMON PROGRAM ].
COMMON INITIAL
COMMON RECURSIVE
RECURSIVE COMMON
Format 2
Syntax rules
1. The program-name must be a user-defined word and must begin with a letter. A
program name should not begin with the letter "I" to avoid potential conflicts with the
names of COBOL runtime modules or modules of other runtime systems.
2. The programs of a nested program must have different names.
3. The COMMON clause may only be specified for the contained programs of a nested
program. It must not be specified in the outermost containing program.
148 U41112-J-Z125-1-76
IDENTIFICATION DIVISION PROGRAM-ID paragraph
4. The INITIAL clause may not be specified if any program that is directly or indirectly
contained in a recursive program.
5. The RECURSIVE clause may not be specified if any program that is directly or indirectly
contained in a program containing the INITIAL clause.
1. The effect of the INITIAL clause is that the program is set to its initial state each time it
is called (see "Initial state", page 716).
2. The COMMON clause causes the program to have the COMMON attribute. Such a
program can be called not only by the directly superordinate program but also by its
"sibling programs" and their "descendants".
3. The RECURSIVE clause specifies that the program and all programs contained within
it are recursive. The program may be called while it is active and may call itself. If the
RECURSIVE clause is not specified in a program or implied for a program, the program
may not be called while it is active.
The following applies to user-defined words when generating the *OMF format (see the
“COBOL 2000 User Guide”):
1. The 8th character must not be a hyphen.
2. The operating system uses only the first eight characters of program-name to
identify the module. Therefore, these characters should be unique for every name in a
particular module/program library.
3. Only the first 7 characters of the program name are used when generating shared code.
U41112-J-Z125-1-76 149
PROGRAM-ID paragraph IDENTIFICATION DIVISION
Example 5-1
150 U41112-J-Z125-1-76
IDENTIFICATION DIVISION PROGRAM-ID paragraph
Example 5-2
x = permitted call
U41112-J-Z125-1-76 151
CLASS-ID paragraph IDENTIFICATION DIVISION
CLASS-ID paragraph
Function
The CLASS-ID paragraph indicates that this Identification Division is introducing a class
definition and specifies the name of the class and its attributes.
Format
Syntax rules
General rules
152 U41112-J-Z125-1-76
IDENTIFICATION DIVISION FACTORY/OBJECT paragraph
FACTORY paragraph
Function
The FACTORY paragraph indicates that this Identification Division is introducing a factory
definition.
Format
FACTORY.
OBJECT paragraph
Function
The OBJECT paragraph indicates that this Identification Division is introducing an object
definition.
Format
OBJECT.
U41112-J-Z125-1-76 153
METHOD-ID paragraph IDENTIFICATION DIVISION
METHOD-ID paragraph
Function
Format
Syntax rules
1. If the OVERRIDE phrase is specified, there must be a method with the same
method-name-1 in one of the inherited classes. The method in the superclass may not
be defined with the FINAL clause.
2. If the OVERRIDE phrase is not specified, there should not be a method with the same
method-name-1 in any of the inherited classes.
3. The OVERRIDE clause may not be specified in an interface method.
4. The FINAL clause may not be specified in an interface definition.
5. If method-name-1 is the same as a method-name inherited by the classes, the interface
of method-name-1 must be conform with the interface of the inherited method(s).
6. The names of the methods in a class must be unique.
General rules
154 U41112-J-Z125-1-76
IDENTIFICATION DIVISION METHOD-ID paragraph
5. If a given user-defined word is defined in the Data Division of this method definition and
in the Data Division of the containing factory definition or object definition, the use of
that word in this method refers to the declaration in this method. The declaration in the
containing factory object or object definition is inaccessible to this method.
U41112-J-Z125-1-76 155
INTERFACE-ID paragraph IDENTIFICATION DIVISION
INTERFACE-ID paragraph
Function
INTERFACE-ID. interface-name-1
[INHERITS FROM {interface-name-2}...].
Syntax rules
General rules
156 U41112-J-Z125-1-76
6 Environment Division
U41112-J-Z125-1-76 157
General description ENVIRONMENT DIVISION
General format
ENVIRONMENT DIVISION.
[configuration-section]
[input-output-section]
158 U41112-J-Z125-1-76
Environment Division CONFIGURATION SECTION
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CONFIGURATION SECTION.
Syntax rules
U41112-J-Z125-1-76 159
SOURCE-COMPUTER paragraph Environment Division
SOURCE-COMPUTER paragraph
Function
The SOURCE-COMPUTER paragraph identifies the data processing system on which the
compilation unit is to be compiled; it may also be used to specify debugging aids.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. All clauses of this paragraph apply to the program in which they are explicitly or implicitly
specified.
2. When the paragraph is not specified, or if it is specified but the computer-name is not,
the computer upon which the compilation unit is being compiled is the compilation
computer.
3. If the WITH-DEBUGGING-MODE clause is specified, all debugging lines are compiled
as specified in the rules described in section 11.9.
4. If the WITH-DEBUGGING-MODE clause is not specified in a program, any debugging
lines are compiled as if they were comment lines.
160 U41112-J-Z125-1-76
Environment Division OBJECT-COMPUTER paragraph
OBJECT-COMPUTER paragraph
Function
The OBJECT-COMPUTER paragraph describes the data processing system on which the
program is to be executed.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
OBJECT-COMPUTER. [computer-name
WORDS
MEMORY SIZE integer CHARACTERS
MODULES
Syntax rules
1. computer-name and the MEMORY-SIZE clause are used for documentation purposes
only and are treated as comments.
2. computer-name must be a user-defined COBOL word.
3. If the PROGRAM COLLATING SEQUENCE clause is specified, the collating sequence
associated with alphabet-name (see "SPECIAL-NAMES paragraph", page 162) is used
to determine the truth value of any non-numeric comparisons:
a) explicitly specified in relation conditions
b) explicitly specified in condition-name condition
c) implicitly specified by the presence of a CONTROL clause in a report description
entry (see the section “CONTROL clause“ on page 639).
4. If the PROGRAM COLLATING SEQUENCE clause is not specified, the native collating
sequence is used (EBCDIC).
5. The PROGRAM COLLATING SEQUENCE clause is also applied to any non-numeric
merge or sort keys unless the COLLATING SEQUENCE phrase of the respective
MERGE or SORT statement is specified (see the section “MERGE statement“ on page
429 and the section “SORT statement“ on page 504).
For examples on the use of the PROGRAM COLLATING SEQUENCE and ALPHABET
clauses, see "SPECIAL-NAMES paragraph" (page 162).
U41112-J-Z125-1-76 161
SPECIAL-NAMES paragraph Environment Division
SPECIAL-NAMES paragraph
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SPECIAL-NAMES.
162 U41112-J-Z125-1-76
Environment Division SPECIAL-NAMES paragraph
1. In a class definition, only the CURRENCY SIGN clause may be specified in the
SPECIAL-NAMES paragraph.
2. In an interface definition, only the ALPHABET, CURRENCY SIGN and
DECIMAL-POINT clauses may be used in the SPECIAL-NAMES paragraph.
General rule
The individual clauses of the SPECIAL-NAMES paragraph must, if they are used, be
specified in the order given in the format.
The individual clauses of the SPECIAL-NAMES paragraph are described below.
Implementor-name
Syntax rules
1. implementor-name is a system-name and must be a name from the left column of the
following table.
Implementor-names and their meanings:
Implementor-name Meaning
CONSOLE System or main console or subconsole
TERMINAL The user' s data display unit
SYSIPT System logical input file
PRINTER System logical printer file
PRINTER01-PRINTER99
SYSOPT System logical output file
C01 to C08 Skip to channel 1 through 8
C10 to C11 Skip to channel 10 or 11
JV-job-variable-name Job variable describing the link name of a job variable (see
below)
TSW-0 to TSW-31 Task switches
USW-0 to USW-31 User switches
COMPILER-INFO Compiler information
Table 6-1 Implementor-names and their meanings
U41112-J-Z125-1-76 163
SPECIAL-NAMES paragraph Environment Division
General rules
Example 6-1
Use of job variables:
IDENTIFICATION DIVISION.
PROGRAM-ID. JVTEST.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
JV-JV1 IS JOB-VAR-1.
...
PROCEDURE DIVISION.
...
DISPLAY "xyz" UPON JOB-VAR-1.
Prior to the program call:
/SET-JV-LINK LINK-NAME=*JV1,JV-NAME=JV1TEST
164 U41112-J-Z125-1-76
Environment Division SPECIAL-NAMES paragraph
U41112-J-Z125-1-76 165
SPECIAL-NAMES paragraph Environment Division
ALPHABET clause
Syntax rules
1. If the literal phrase is specified in the ALPHABET clause, any given character for literal-
1, literal-2 etc. which is referenced by alphabet-name in the PROGRAM COLLATING
SEQUENCE clause (see "OBJECT-COMPUTER paragraph", page 161) or in the
COLLATING SEQUENCE phrase of the SORT or MERGE statement (see Chapter 8)
may be used once only (see examples 6-10 and 6-11).
2. The following rules apply to literal-1, ..., literal-11:
a) If the literals are numeric, they must be unsigned integers with a value from 1 to 256.
b) If the literals are non-numeric and associated with the THROUGH, THRU or ALSO
phrase, each literal must be one character long.
c) The literals must not specify a symbolic-character figurative constant. Literal-6 must
not be a figurative constant.
3. The words THROUGH and THRU are equivalent.
4. The NATIVE and EBCDIC phrases mean the same thing in BS2000.
General rules
1. The ALPHABET clause provides a means for relating a name to a particular character
set and/or collating sequence. When referenced in the PROGRAM COLLATING
SEQUENCE clause (see "OBJECT-COMPUTER paragraph", page 161) or the
COLLATING SEQUENCE phrase of a SORT or MERGE statement (see chapter 8)
alphabet-name specifies a collating sequence. When alphabet-name-1 is referenced in
the SYMBOLIC-CHARACTERS clause or in a CODE-SET clause of a file description
entry (for sequentially organized files), the ALPHABET clause specifies a character set.
a) If the STANDARD-1 phrase is specified, the character set or collating sequence is
that defined in the American National Standard Code for Information Interchange
(ASCII), X3.4-1968.
b) If the STANDARD-2 phrase is specified, the character set identified is the Interna-
tional Reference Version of the ISO 7-bit code, as defined in International Standard
646, "7-Bit Coded Character Set for Information Processing Interchange". Each
character of the standard character set is associated with a corresponding
character from the native character set.
c) If the NATIVE or EBCDIC phrase is specified, the native character set or native
collating sequence is used (EBCDIC).
166 U41112-J-Z125-1-76
Environment Division SPECIAL-NAMES paragraph
d) If the literal phrase of the ALPHABET clause is specified, the alphabet-name must
not be referenced in a CODE-SET clause (see the section “CODE-SET clause“ on
page 214).
– The value of the literal specifies the ordinal number of a character (beginning
with 1) within the native character set, if the literal is numeric. This value must
not exceed the number of characters in the native character set (256).
– The value of the literal specifies the actual character within the native character
set, if the literal is non-numeric. If the value of the non-numeric literal contains
multiple characters, each character in the literal is inserted into the collating
sequence in the order specified (see example 6-2).
– The order in which the literals appear in the ALPHABET clause specifies, in
ascending sequence, the ordinal number of the character within the collating
sequence being specified (see example 6-3).
– All characters within the EBCDIC collating sequence which are not explicitly
specified in the literal phrase assume a position, in the collating sequence being
specified, greater than any of the explicitly specified characters. The relative
order within the set of these unspecified characters is unchanged from the
EBCDIC collating sequence.
– If the THROUGH/THRU phrase is specified, the set of contiguous characters in
the EBCDIC character set beginning with the character specified by the value
of literal-1, and ending with the character specified by the value of literal-2, is
assigned a successive ascending position in the collating sequence being
specified. In addition, the set of contiguous characters specified by a given
THROUGH/THRU phrase may contain characters of the EBCDIC character set
in either ascending or descending sequence (see example 6-4).
– If the ALSO phrase is specified, the characters of the EBCDIC character set
specified by the value of literal-1 and literal-3 are assigned to the same ordinal
position in the collating sequence being specified or in the character set (see
example 6-5).
If alphabet-name-1 is referenced in a SYMBOLIC CHARACTERS clause, only
literal-1 is used to represent the character in the EBCDIC character set.
2. The character that has the highest ordinal position in the program collating sequence
specified is associated with the figurative constant HIGH-VALUE. If more than one
character has the highest position in the program collating sequence, the last character
specified is associated with the figurative constant HIGH-VALUE (see examples 6-6
and 6-7).
U41112-J-Z125-1-76 167
SPECIAL-NAMES paragraph Environment Division
3. The character that has the lowest ordinal position in the program collating sequence
specified is associated with the figurative constant LOW-VALUE. If more than one
character has the lowest position in the program collating sequence, the first character
specified is associated with the figurative constant LOW-VALUE (see examples 6-8 and
6-9).
Example 6-2
ALPHABET ALPHATAB IS "AJKCDF".
First character is A
Second character is J
.
.
Sixth character is F
Example 6-3
ALPHABET ALPHATAB IS "A" "C" "D" "Z".
First character in the collating sequence is "A"
Second character in the collating sequence is "C"
Third character in the collating sequence is "D"
Fourth character in the collating sequence is "Z"
Example 6-4
ALPHABET ALPHATAB IS "A" THRU "I".
First character is A
Second character is B
Third character is C
.
.
Eighth character is H
Ninth character is I
Example 6-5
ALPHABET ALPHATAB IS "A" ALSO "B" ALSO "C" ALSO "D".
The characters A, B, C, and D will be associated with the lowest ordinal positions in the
collating sequence.
168 U41112-J-Z125-1-76
Environment Division SPECIAL-NAMES paragraph
Example 6-6
ALPHABET ALPHATAB IS 193 THRU 1, 255 THRU 194.
The highest ordinal position in the collating sequence is occupied by the character that
appears in the 194th position of the EBCDIC character set, i.e. the character A.
A is associated with the figurative constant HIGH-VALUE.
Example 6-7
ALPHABET ALPHATAB IS 193 THRU 1, 255 THRU 197, "A" ALSO "B" ALSO "C".
Positions 1 through 193 of the collating sequence are associated with the characters
which appear at positions 193 to 1 of the EBCDIC character set.
Positions 194 through 253 of the collating sequence are associated with the characters
which appear at positions 255 to 197 of the EBCDIC character set.
Position 254 is assigned the characters A, B, C; with this all characters in the EBCDIC
character set are associated with a position in the collating sequence. The highest-
order position (254) is occupied by the characters A, B, C. Being the character specified
last, C is associated with the figurative constant HIGH-VALUE.
Example 6-8
ALPHABET ALPHATAB IS "0" "1" "2".
The lowest ordinal character in the collating sequence is 0. Hence 0 is associated with
the figurative constant LOW-VALUE.
Example 6-9
ALPHABET ALPHATAB IS "A" ALSO "B" ALSO "C".
The lowest ordinal position in the collating sequence is occupied by the characters A,
B, C. The character A, which was specified first, is associated with the figurative con-
stant LOW-VALUE.
U41112-J-Z125-1-76 169
SPECIAL-NAMES paragraph Environment Division
Example 6-10
PROGRAM COLLATING SEQUENCE and ALPHABET clauses:
IDENTIFICATION DIVISION.
PROGRAM-ID. ABC.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
OBJECT-COMPUTER.
PROGRAM COLLATING SEQUENCE IS ALPHATAB.
SPECIAL-NAMES.
TERMINAL IS T
ALPHABET ALPHATAB IS "X" "Y" "Z".
DATA DIVISION.
WORKING-STORAGE SECTION.
77 ITEM-1 PIC X(3) VALUE "ABC".
77 ITEM-2 PIC X(3) VALUE "XYZ".
PROCEDURE DIVISION.
MAIN.
IF ITEM-1 > ITEM-2
THEN
DISPLAY "Collating sequence ok" UPON T
END-IF
STOP RUN.
With the definition of the alphabet-name ALPHATAB in the SPECIAL-NAMES paragraph,
the character X was assigned to the first position in the collating sequence, Y to the second
and Z to the third.
All remaining characters of the EBCDIC character set are assigned a position in the
collating sequence implicitly, since their positions in the collating sequence are higher than
those of the specified characters X, Y, Z and their order in the collating sequence was taken
from the EBCDIC character set without alteration.
Positions 1 through 231 in the EBCDIC character set correspond to positions 4 through 234
in the collating sequence.
Positions 235 through 256 in the EBCDIC character set correspond to positions 235
through 256 in the collating sequence.
Thus, A occupies position 197, B position 198, and C position 199.
Hence, the relation ITEM-1 > ITEM-2 is true.
170 U41112-J-Z125-1-76
Environment Division SPECIAL-NAMES paragraph
Example 6-11
U41112-J-Z125-1-76 171
SPECIAL-NAMES paragraph Environment Division
Syntax rules
1. No symbolic name for a character may be used more than once in the SYMBOLIC
CHARACTERS clause.
2. The relationship between each separate symbolic name and its corresponding integer
results from the sequence within the SYMBOLIC CHARACTERS clause: symbolic-
character-1 is paired with integer-1, symbolic-character-2 with integer-2, and so on.
3. An integer must be specified for each symbolic name which is specified.
4. The position specified within the collating sequence by integer-1 must exist in the native
character set. If IN is specified, the position must exist in the character set named by
alphabet-name-2.
5. The internal representation of symbolic-character is identical to that of the corre-
sponding character in the native character set or in the character set specified with
alphabet-name-2.
6. symbolic-character is a figurative constant.
Example 6-12
IDENTIFICATION DIVISION.
PROGRAM-ID. SYMCHAR.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T
SYMBOLIC CHARACTERS HEX-0A IS 11.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 PRINT-RECD.
02 CNTRLBYTE PIC X.
02 PRINT-LINE PIC X(132).
PROCEDURE DIVISION.
MAIN SECTION.
P1.
MOVE HEX-0A TO CNTRLBYTE.
DISPLAY CNTRLBYTE UPON T.
STOP RUN.
The symbolic name HEX-0A is assigned to the eleventh character of the EBCDIC character
set (this character corresponds to the hexadecimal value 0A).
The MOVE statement uses this symbolic name in order to move the hexadecimal value 0A
into the control byte.
172 U41112-J-Z125-1-76
Environment Division SPECIAL-NAMES paragraph
CLASS clause
Syntax rules
1. The CLASS clause enables the user to associate a name with the character set defined
in this clause. This class-name may be referenced in a class condition only. Characters
specified by the values of literal-4, literal-5, ... form the exclusive character set named
by class-name.
The value of each literal specifies:
a) The ordinal number of a character in the native character set, if the literal is numeric.
b) The actual character in the native character set, if the literal is non-numeric. If the
value of this non-numeric literal contains more than one character, each of these
characters is included in the character set named by class-name.
2. If THROUGH is specified, the contiguous characters in the native character set
beginning with literal-4 and ending with literal-5 are included in the special character set
identified by class-name. The THROUGH phrase may be used to specify this character
string in either ascending or descending order.
Example 6-13
SPECIAL-NAMES.
CLASS HEXADECIMAL-CHARACTERS
194 THRU 199, 241 THRU 250.
194 through 199 corresponds to the letters A through F
241 through 250 corresponds to the digits 0 through 9
U41112-J-Z125-1-76 173
SPECIAL-NAMES paragraph Environment Division
Syntax rules
1. When used in the CURRENCY SIGN clause, literal-6 is limited to a single character,
which must not be one of the following:
– digits 0 through 9
– uppercase letters A, B, C, D, P, R, S, V, X, Z, or the space
– lowercase letters a - z
– special characters
* (asterisk)
+ (plus)
- (minus)
, (comma)
. (period)
: (colon)
; (semicolon)
( (left parenthesis)
) (right parenthesis)
" (quotation mark)
/ (slash)
= (equal sign)
2. If the CURRENCY SIGN clause is not present, only the currency sign $ may be used
as the currency symbol in a PICTURE string.
3. The Euro sign € is also allowed in the CURRENCY SIGN clause.
174 U41112-J-Z125-1-76
Environment Division SPECIAL-NAMES paragraph
Syntax rule
The DECIMAL-POINT IS COMMA clause means that the functions of comma and
period are exchanged in the character-string of the PICTURE clause and in numeric
literals.
General rule
U41112-J-Z125-1-76 175
REPOSITORY paragraph Environment Division
REPOSITORY paragraph
The REPOSITORY paragraph defines the class and interface names that may be used
within the scope of the corresponding Environment Division.
Format
REPOSITORY.
CLASS class-name-1
[ INTERFACE interface-name-1 ...]
PROGRAM program-prototype-name-1
Syntax rules
General rule
1. No class/interface names that directly or indirectly reference the currently defined class
in their REPOSITORY paragraph may be specified in the REPOSITORY paragraph
within a class/interface definition.
2. class-name-1 is the name of a class that may be used throughout the scope of the
containing Environment Division.
3. interface-name-1 is the name of an interface that may be used throughout the scope of
the containing Environment Division.
4. program-prototype-name-1 is the name of a program prototype that may be used
throughout the scope of the containing Environment Division.
5. The information contained in the repository for class-name-1 provides a complete
characterization of the used class.
176 U41112-J-Z125-1-76
Environment Division REPOSITORY paragraph
U41112-J-Z125-1-76 177
INPUT-OUTPUT SECTION Environment Division
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
INPUT-OUTPUT SECTION.
FILE-CONTROL. {file-control-entry}...
[I-O-CONTROL. [input-output-control-entry]]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
178 U41112-J-Z125-1-76
Environment Division FILE-CONTROL paragraph
FILE-CONTROL paragraph
Function
The FILE-CONTROL paragraph is used to give each file a name. The files are assigned to
one or more external devices, and the information required for file processing is made
available. This information indicates how the data is organized and how it is to be accessed.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FILE-CONTROL.
SELECT clause
ASSIGN clause
[ORGANIZATION clause]
[PADDING CHARACTER clause]
[RECORD DELIMITER clause]
[ACCESS MODE clause]
[RESERVE clause]
[FILE STATUS clause].
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FILE-CONTROL.
SELECT clause
ASSIGN clause
[ACCESS MODE clause]
[FILE STATUS clause]
ORGANIZATION clause
[RESERVE clause].
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 179
FILE-CONTROL paragraph Environment Division
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FILE-CONTROL.
SELECT clause
ASSIGN clause
[ACCESS MODE clause]
[ALTERNATE RECORD KEY clause]
[FILE STATUS clause]
ORGANIZATION clause
RECORD KEY clause
[RESERVE clause] .
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The SELECT clause must be the first file control entry, followed by the ASSIGN clause.
All other clauses may appear in any order.
In the pages that follow, the SELECT and ASSIGN clauses are described first, followed by
the remaining clauses in alphabetical order.
180 U41112-J-Z125-1-76
Environment Division SELECT clause
SELECT clause
Function
The SELECT clause is used to give a name to each file in the program. Files used in input
and output procedures and files occurring in the USING or GIVING phrases of a SORT or
MERGE statement are specified in a SELECT clause.
Format 1 applies to all files except sort files.
Format 2 suitable for sort files
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SELECT [OPTIONAL] file-name
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SELECT sort-file-name
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. file-name stands for the name by which a file is referenced in the compilation unit
(internal file-name). Each file-name used in a program may only occur in one SELECT
clause.
2. Each file specified in a SELECT clause must have a file description (FD) entry or a
sort-file description (SD) entry in the Data Division of the same program or method.
3. The OPTIONAL phrase is required for files that are not necessarily present at object
time. When a file is not present at object time, the first READ statement for that file
passes control to the associated at end condition. The OPTIONAL phrase is permitted
only for files opened in INPUT, I-O or EXTEND mode.
4. sort-file-name in format 2 designates a sort file.
U41112-J-Z125-1-76 181
SELECT clause Environment Division
General rules
Format 1
1. If no SET-FILE-LINK command is given for a file when the program is executed, the runt-
ime system creates a file named FILE.COB85.linkname at OPEN OUTPUT. The link
name is formed from the specifications in the ASSIGN clause (see the "ASSIGN
clause“, page 183).
2. If the OPTIONAL phrase refers to an external file, OPTIONAL must be specified in all
programs that describe this external file.
Format 2
3. No further clauses other than the ASSIGN clause are permitted.
4. Each sort-file described in the Data Division must be designated once, and only once,
as a file-name in the FILE-CONTROL paragraph.
5. The following file-names must not be used in SELECT clauses within a program that
uses SORT:
MERGExx(xx = 01,...,99)
SORTIN
SORTINxx(xx = 01,...,99)
SORTOUT
SORTWK
SORTWKx(x = 1,...,9)
SORTWKxx(xx = 01,...,99)
SORTCKPT
182 U41112-J-Z125-1-76
Environment Division ASSIGN clause
ASSIGN clause
Function
The ASSIGN clause assigns an external device to a file of the COBOL program. One
ASSIGN clause is required for each file in the program.
Syntax rules
U41112-J-Z125-1-76 183
ASSIGN clause Environment Division
General rules
1. The type of file organization must be specified in the ORGANIZATION clause (see page
190).
2. Only the first entry in the ASSIGN clause is evaluated; all other entries are ignored
(PRINTER literal-1 is regarded as one entry).
3. If the ASSIGN clause refers to an external file, the ASSIGN clause must be used in the
same form in all programs that describe this external file. The contents of the literal or
data-name may, however, be different.
184 U41112-J-Z125-1-76
Environment Division ACCESS MODE clause
Function
The ACCESS MODE clause determines the manner in which the records of a file are to be
accessed.
Syntax rules
1. The RELATIVE KEY phrase specifies the key field whose content is used for retrieving
or placing a logical record in a file.
2. data-name-1 must not be subscripted or indexed.
3. The data item referenced by data-name-1 must be defined as an unsigned integer.
1. data-name-1 must not be specified within the record description entry of the associated
file.
U41112-J-Z125-1-76 185
ACCESS MODE clause Environment Division
General rules
186 U41112-J-Z125-1-76
Environment Division ALTERNATE RECORD KEY clause
Function
The ALTERNATE RECORD KEY clause defines a further, alternative key, in addition to the
primary key, which can be used to access the records of an indexed file.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
ALTERNATE RECORD KEY IS data-name [WITH DUPLICATES]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. data-name must specify an alphanumeric data item in a record description entry, and
this record description entry must be associated with the file name to which the
ALTERNATE RECORD KEY clause is subordinate.
2. data-name may be any fixed-length field, with a length of 1 to 127 bytes, within the
record. data-name may be qualified, but not subscripted or indexed.
3. data-name may not reference a group item which contains an element with an
OCCURS clause with DEPENDING ON phrase.
4. If the file contains variable-length records, the alternate key must be contained within
the first x character positions of the record, where x equals the minimum record size
specified for the file (see "RECORD clause", page 225), i.e. the length of the alternate
key must fit into the shortest possible record.
5. Several (up to 30) alternate record keys may be specified for one file.
6. data-name must not refer to a data item whose start address (the leftmost character
position) is identical with the start address of the primary record key or of any other
alternate record key. Apart from this restriction, the primary record key and any
alternate record key(s) may overlap.
General rules
1. The data description of data-name and the relative position of the data item defined as
a key must be the same as those specified when the file was created. The number of
alternate record keys must match the number specified when the file was created.
2. WITH DUPLICATES specifies that the value of the related alternate record key may
occur in more than one record. Records with identical key values are also called
"duplicates". If WITH DUPLICATES is not specified, the value of the related alternate
key must be unique, i.e. it may not occur more than once in the file.
U41112-J-Z125-1-76 187
ALTERNATE RECORD KEY clause Environment Division
3. If there are several record description entries in a file, data-name needs to be described
in only one of these entries. The position of the key field in the record defined by data-
name is used implicitly for all keys in the other record description entries.
4. If the ALTERNATE RECORD KEY clause(s) refers/refer to an external file, the same
number of ALTERNATE RECORD KEY clauses must be specified in any program that
uses this external file; the length and position of the key fields in the record and, where
applicable, the DUPLICATES phrase, must also be defined so as to be consistent.
188 U41112-J-Z125-1-76
Environment Division FILE STATUS clause
The FILE STATUS clause specifies a data item that indicates the status of input/output
operations during processing. In addition, by specifying a further item, an additional error
code is made available.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FILE STATUS IS data-name-1 [, data-name-2]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. data-name-1 and data-name-2 must be defined in the WORKING-STORAGE
SECTION, LOCAL-STORAGE SECTION or LINKAGE SECTION of the Data Division.
2. data-name-1 must be a two-byte numeric (USAGE DISPLAY only) or alphanumeric
item.
3. data-name-2 must be a 6-character group item with the following format:
01 data-name-2.
02 data-name-2-1 PIC 9(2) COMP.
02 data-name-2-2 PIC X(4).
General rules
1. If the FILE STATUS clause is specified, the runtime system copies the I-O status to
data-name-1.
2. If specified, data-name-2 is assigned as follows:
a) If data-name-1 has the value 0, the contents of data-name-2 are undefined.
b) If data-name-1 has a non-zero value, data-name-2 contains the additional error
code. The value 64 in data-name-2 indicates that this code is the (BS2000) DMS
code; the value 96 in data-name-2 indicates that the code is the (POSIX) SIS code.
The command HELP DMS <contents-of-data-name-2-2> or HELP SIS <contents-
of-data-name-2-2> supplies more detailed information on the corresponding error
code.
3. The I-O status is copied during the execution of each OPEN, CLOSE, READ, WRITE,
or REWRITE statement that references the specified file, and prior to the execution of
each corresponding USE procedure (see "I-O status", page 695ff).
U41112-J-Z125-1-76 189
ORGANIZATION clause Environment Division
ORGANIZATION clause
Function
General rules
1. File organization is defined at the time a file is created and cannot be changed subse-
quently.
2. If the ORGANIZATION clause is omitted, ORGANIZATION IS SEQUENTIAL is
assumed.
3. For an external file, the same ORGANIZATION clause must be defined in all programs
that describe this external file.
190 U41112-J-Z125-1-76
Environment Division PADDING CHARACTER clause
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name
PADDING CHARACTER IS
literal
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 191
RECORD DELIMITER clause Environment Division
Function
The RECORD DELIMITER clause indicates the method of determining the length of a
variable-length record on the external medium.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
STANDARD-1
RECORD DELIMITER IS
BS2000
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
The RECORD DELIMITER clause is treated as a comment by the compiler.
192 U41112-J-Z125-1-76
Environment Division RECORD KEY clause
U41112-J-Z125-1-76 193
RESERVE clause Environment Division
RESERVE clause
Function
The RESERVE clause allows the user to modify the number of input/output areas (buffers)
to be allocated to the program by the compiler.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
AREA
RESERVE integer
AREAS
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
The RESERVE clause is treated as a comment by the compiler.
194 U41112-J-Z125-1-76
Environment Division I-O-CONTROL paragraph
I-O-CONTROL paragraph
Function
The I-O-CONTROL paragraph defines the events which, if they occur, cause restart points
to be established. It may also specify a memory area that is to be shared by different files.
In addition, it defines special input/output conditions and, in the case of sequentially
organized files, also the location of multiple file tapes.
A Margin indication
LR2OULRLR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
↓
I-O-CONTROL.
U41112-J-Z125-1-76 195
MULTIPLE FILE TAPE clause Environment Division
Function
The MULTIPLE FILE TAPE clause is required when more than one file shares the same
physical reel of tape.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
MULTIPLE FILE TAPE CONTAINS {file-name-1 [POSITION integer-1]}...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
General rules
1. When all file-names are supplied in the same order in which they appear on a reel, the
POSITION phrase may be omitted.
2. If any of the files is not specified, then the positions must be supplied as relative to the
beginning of the tape.
3. Irrespective of the number of files that share the reel of tape, only those used by the
program need be specified.
4. Only one file may be opened on the same reel at any given time.
5. REWIND can be carried out when the last file of the tape has been processed.
6. If the MULTIPLE FILE TAPE clause is specified for an external file, then the MULTIPLE
FILE TAPE clause must be specified in all programs that describe this external file. If
position numbers are specified, these must be the same in all programs.
196 U41112-J-Z125-1-76
Environment Division RERUN clause
RERUN clause
Function
A RERUN clause indicates where and when restart-point records are to be issued. A
restart-point record describes the status of a program at a specified point during program
execution. It is produced automatically by the operating system upon the request of the
program and contains all information necessary to restart the program from that point. The
RERUN clause controls such requests by the COBOL object.
For further information on the RERUN clause, see "COBOL2000 User Guide" [1].
The RERUN clause in the I-O CONTROL paragraph enables programs containing a SORT
or MERGE statement to be restarted.
Syntax rules
1. file-name-1 must be the name of a sequential tape file; it must be described in the
FILE SECTION.
2. implementor-name has the format
SYSnnn
where 000 ≤ nnn ≤ 244
U41112-J-Z125-1-76 197
RERUN clause Environment Division
198 U41112-J-Z125-1-76
Environment Division RERUN clause
b) END OF REEL or END OF UNIT with file-name-1 specified in the ON clause: the
restart points are written to file-name-1, which must refer to an output file. Addition-
ally, the usual end-of-reel handling is carried out for file-name-2. file-name-2 may be
either an input or output file.
c) END OF REEL or END OF UNIT with implementor-name in the ON clause: The re-
start points are written to a separate file (see 8b). File-name-2 may be an input or
an output file.
d) integer-1 RECORDS: The restart points are written to the file specified by file-
name-1 or implementor-name, respectively, whenever integer-1 records have been
processed. File-name-2 may be either an input or an output file with any organiza-
tion or type of access; it must not be referenced in the USING/GIVING phrase or in
an INPUT/OUTPUT procedure during sort (see section 11.4, "Sorting of records").
10. The CLOCK-UNITS phrase is treated by the compiler as a comment.
11. The condition-name phrase is also treated by the compiler as a comment.
12. If an external file is specified by file-name-1, the behavior is undefined.
Syntax rules
General rules
1. When the OF phrase is not specified, the checkpoint is written prior to each sort
operation.
2. When file-name-2 is specified, checkpoints are written for this specific sort operation
only.
U41112-J-Z125-1-76 199
SAME AREA clause Environment Division
Function
The SAME AREA clause indicates that a number of files are to share a specified input/
output area during program execution.
Format 1 applies to all files except sort files, unless RECORD is specified
Format 2 is suitable for sort files
Syntax rules
1. More than one SAME AREA clause may be included in a program. In this case, the fol-
lowing must be observed:
A specific file-name must not appear in more than one SAME AREA clause. The same
is true of the SAME RECORD AREA clause.
A specific file-name may concurrently appear in a SAME RECORD AREA clause. In
this case, all file-names appearing in the SAME AREA clause must also appear in the
SAME RECORD AREA clause. The SAME RECORD AREA clause may also contain
other file-names that do not appear in the SAME AREA clause.
2. The SAME AREA clause indicates that the specified files (no sort-files) are to share the
input/output areas assigned to them.
3. The SAME RECORD AREA clause indicates that the specified files are to share the
same storage areas for processing the current logical record.
A logical record in the SAME RECORD AREA clause is considered a logical record of
all files which are opened for OUTPUT and whose names are supplied in that SAME
RECORD AREA clause. It is also a logical record of the file (in this clause) from which
the most recent input occurred. This is equivalent to an implicit overwriting of all record
areas, where the records are aligned on the leftmost character position.
200 U41112-J-Z125-1-76
Environment Division SAME AREA clause
General rules
1. If SAME AREA is used, only one file may be open at any given time.
2. If the RECORD phrase is used, all specified files may be open at the same time.
3. General rule 1 applies in the case of files that are specified in the SAME AREA clause
as well as the SAME RECORD AREA clause.
4. The SAME [RECORD] AREA clause must not be specified for external files.
Syntax rules
General rule
The SAME RECORD AREA clause indicates that two or more files should share the
storage area in which the current logical record is being processed. All of the files can
be open at the same time. A logical record in the "same record area" is considered as
a logical record of each opened output file whose file-name occurs in the SAME
RECORD AREA clause; it is also considered as a logical record of the last read input
U41112-J-Z125-1-76 201
SAME AREA clause Environment Division
file whose file-name occurs in the SAME RECORD AREA clause. This is equivalent to
an implicit redefinition of the internal storage area, where the records are aligned on the
leftmost character position.
202 U41112-J-Z125-1-76
7 Data Division
U41112-J-Z125-1-76 203
General description Data Division
A data description in a COBOL compilation unit is separate from the declaration of execu-
tion procedures. This permits the programmer a great number of options for modifying a
data description entry without any change to the procedures which are related to that entry.
Therefore, to a certain extent, the procedures of a COBOL compilation unit may be seen as
data-independent.
General format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
DATA DIVISION.
FILE SECTION.
file-description-entry.{record-description-entry}..
sort-file-description-entry.{record-description-entry}......
report-file-description-entry.
WORKING-STORAGE SECTION.
77-level-description-entry.
...
record-description-entry.
LOCAL-STORAGE SECTION.
77--level-description-entry.
...
record-description-entry.
LINKAGE SECTION.
77-level-description-entry.
...
record-description-entry.
REPORT SECTION.
[report-description-entry. {report-group-description-entry.}...]...
SUB-SCHEMA SECTION.
database-description-entry.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
204 U41112-J-Z125-1-76
Data Division General description
FILE SECTION
All data which is, or is meant to be, stored on external media must first be described in the
FILE SECTION before it can be processed by a COBOL program. The FILE SECTION is
used to define the structure of files. Each file is defined by a file description entry and one
or more record description entries. Record description entries are written immediately fol-
lowing the file description entry.
WORKING-STORAGE SECTION
Information intended for internal use must be described in the WORKING-STORAGE
SECTION. The WORKING-STORAGE SECTION describes records and structurally non-
contiguous data items (refer to "General format") which are not part of external files. Data
described in the WORKING-STORAGE SECTION may be in the “last-used” or initial state
(see section 11.4) on calling the source unit. The WORKING-SRORAGE SECTION may be
specified in a program, a factory or object definition or a method definition within a class
definition.
LOCAL-STORAGE SECTION
Data described in the LOCAL-STORAGE SECTION constitutes automatic data and is
initialized with values specified in the associated VALUE clause. The LOCAL-STORAGE
SECTION may occur in both recursive and non-recursive legal source units. Data in this
section is always in the initial state on calling the source unit. The LOCAL-STORAGE
SECTION may not contain any EXTERNAL clause and can be specified in the Data
Division of a program or a method.
Note: Information concerning internal use can be described in the WORKING-STORAGE
SECTION or the LOCAL-STORAGE SECTION.
LINKAGE SECTION
Information transmitted from one source unit to another must be described in the LINKAGE
SECTION. The LINKAGE SECTION is located in a called source unit and describes data
items in the calling source unit, which may reference the called source unit. The LINKAGE
SECTION is only meaningful in methods and in programs that are called as subprograms.
If a data item from the LINKAGE SECTION of a program that was not a called from another
source unit is accessed, the contents of the accessed data item are undefined.
The structure and contents of the WORKING STORAGE SECTION, LOCAL-STORAGE
SECTION and LINKAGE SECTION are basically identical.
U41112-J-Z125-1-76 205
General description Data Division
REPORT SECTION
The contents and appearance of all listings created by the Report Writer must be described
in the REPORT SECTION.
(see chapter 10, “Report Writer”)
SUB-SCHEMA SECTION
All information pertaining to the description of database structures must be entered in the
SUB-SCHEMA SECTION.
The SUB-SCHEMA SECTION may not be specified in a program for which the
RECURSIVE clause has been defined. It is otherwise ignored.
206 U41112-J-Z125-1-76
Data Division File description (FD) entry
Function
The file description (FD) entry specifies the physical structure and the record names for
a given file. A sort-file description (SD) entry provides information concerning the
physical structure, identification, and size of the records on a sort-file.
A file description entry must be written for each file to be processed by the program. The
information contained in this entry generally pertains to the physical aspects of the file, that
is, the description of the data as it appears on the input or output medium.
FD file-name
FD file-name
U41112-J-Z125-1-76 207
File description (FD) entry Data Division
FD file-name
SD sort-file-name
208 U41112-J-Z125-1-76
Data Division File description (FD) entry
1. The following Table provides a summary of the functions of clauses used in file descrip-
tion entries.
Clause Function
BLOCK CONTAINS Specifies physical block length
DATA RECORDS Specifies the names of the records in the file
EXTERNAL Declares a file as external
GLOBAL Declares a file as global
LABEL RECORDS Gives the names and values of the label records contained in
the file
RECORD Specifies logical record size
BLOCK CONTAINS Specifies physical block length
DATA RECORDS Specifies the names of the records in the file
RECORDING MODE Specifies the format of the logical records.
VALUE OF Specifies the values of some data items of a label.
Table 7-1 Functions of file description clauses
1. The level indicator SD identifies the beginning of the sort-file description entry and must
precede the file-name.
2. The clauses following the name of the file are optional and may appear in any order.
3. One or more record description entries for data-name-1,... must follow the sort-file
description entry.
U41112-J-Z125-1-76 209
File description (FD) entry Data Division
210 U41112-J-Z125-1-76
Data Division BLOCK CONTAINS clause
Function
The BLOCK CONTAINS clause specifies the maximum size of a physical block.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CHARACTERS
BLOCK CONTAINS [integer-1 TO] integer-2
RECORDS
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. A block must contain at least 20 characters and must not exceed a maximum length of
32763 characters.
2. The CHARACTERS or RECORDS phrase indicates whether block length is to be
specified as a multiple of characters or logical records.
3. If neither CHARACTERS nor RECORDS is specified, CHARACTERS will be assumed.
4. integer-1 TO integer-2 indicates the number of characters or records in a given block,
depending on the phrase used (either CHARACTERS or RECORDS).
5. When only integer-2 is specified, it refers to the maximum size of the block. When
integer-1 and integer-2 are specified, they refer to the minimum and maximum size of
the block, respectively. However, integer-1, when specified, is used only for documen-
tation purposes and is treated as a comment by the compiler.
The maximum block size specified by this clause has the following meaning:
The blocks of the file must not be longer but can be shorter than the specified length.
This is frequently the case with unblocked or blocked records whose length is variable.
6. When the CHARACTERS phrase is used, the block size is specified in terms of the
number of characters contained within the block, regardless of the types of characters
used to represent the data items within the block (see "USAGE clause", page 285). In
this case, both integer-1 and integer-2 must include slack bytes and four characters for
the record length field of each record of the block.
U41112-J-Z125-1-76 211
BLOCK CONTAINS clause Data Division
7. When the CHARACTERS phrase is used, and only integer-2 is specified, integer-2
indicates the exact length of the physical block. When both integer-1 and integer-2 are
specified, they refer to the minimum or maximum physical block length, respectively.
8. When the RECORDS phrase is used, the block size is specified in terms of logical
records. In this case, the compiler calculates the block size by multiplying the number
of characters in the maximum size logical record by the value specified in integer-2. In
the case of variable-length records, four characters are added for the record length field.
9. When the BLOCK CONTAINS clause is omitted, the compiler assumes that the records
are not blocked, i.e. BLOCK CONTAINS 1 RECORDS is assumed. Consequently, the
BLOCK CONTAINS clause may be omitted when all blocks of the file contain one, and
only one, record.
General rules
1. The following table shows how the compiler calculates the block sizes in terms of char-
acters and includes the appropriate phrases contained in the BLOCK CONTAINS
clause.
Legend for Table 7-2:
F = fixed-length records
V = variable-length records
BL = block length
RL = record length
RLmax = maximum record length
BLF = block length field (has the value 4)
RLF = record length field (has the value 4)
n = integer
212 U41112-J-Z125-1-76
Data Division BLOCK CONTAINS clause
2. The CHARACTERS phrase should be used if the RECORDS phrase would produce a
block size that is not accurate enough.
Let us assume, for example, that a block contains 4 records consisting of one 50-
character record and three 100-character records. If BLOCK CONTAINS 4 RECORDS is
specified, and the maximum record length is defined as 100 characters, the compiler
will calculate a block size of 4*(100+4)+4 = 420 characters. In this case, however, since
each block actually requires only (50+4)+3*(100+4)+4 = 366 characters, the exact block
size could be specified by using the following clause instead:
BLOCK CONTAINS 366 CHARACTERS.
3. If the BLOCK CONTAINS clause is specified for an external file, the BLOCK CONTAINS
clause must be specified in all programs that describe this external file; the block length
calculated from the information specified in the BLOCK CONTAINS clause must be the
same, regardless of whether it results from the number of "RECORDS" or the number
of "CHARACTERS".
U41112-J-Z125-1-76 213
CODE-SET clause Data Division
CODE-SET clause
Format
The CODE-SET clause specifies the character code set used to represent data on the
external media.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CODE-SET IS alphabet-name
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. When the CODE-SET clause is specified for a file, all data in that file must be described
as USAGE IS DISPLAY, and any signed numeric data must be described with the SIGN
IS SEPARATE clause.
2. The alphabet-name clause referenced by the CODE-SET clause must not specify the
literal phrase (see "SPECIAL-NAMES paragraph", page 162).
General rules
1. If the CODE-SET clause is specified, alphabet-name specifies the character code con-
vention used to represent data on the external media. It also specifies the algorithm for
converting the character codes on the external media from/to the native character
codes. This code conversion occurs during the execution of an input or output operation
(see "SPECIAL-NAMES paragraph", page 162).
2. If the CODE-SET clause is not specified, the native character code set (EBCDIC) is
assumed for data on the external media.
3. If the CODE-SET clause refers to an external file, an identical CODE-SET clause must
be specified in all programs that describe this external file.
214 U41112-J-Z125-1-76
Data Division DATA RECORDS
Function
The DATA RECORDS clause is used only for documentation. It specifies the names of the
records in a file.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
RECORD IS
DATA {data-name-1}...
RECORDS ARE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. data-name-1 is the name of a record. It must be preceded by level number 01 in the file
description entry.
2. The presence of more than one data-name indicates that the file contains more than
one type of record. These records may be of differing sizes, formats etc. The order in
which they are listed is not significant.
U41112-J-Z125-1-76 215
EXTERNAL clause Data Division
EXTERNAL clause
Function
With the EXTERNAL clause, a file can be defined as external. External files can be
accessed by any program in which the file is described.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IS EXTERNAL
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
If a file is defined as external, the records in that file are also implicitly external.
General rules
1. If the file description entry for a sequential file contains the LINAGE clause and the
EXTERNAL clause, the LINAGE-COUNTER special register is implicitly an external
data item.
2. The following may not be used as names for external records:
– external record-names from the WORKING-STORAGE SECTION
– PROGRAM-ID names of the run unit, except for program names of contained
programs of a nested program
– names used as entry points in the ENTRY statement
– names that identify interfaces (LZS-name, etc.).
3. The effect of the FILE STATUS clause for external files is always local to the program,
i.e. the file status is supplied only by I-O operations in the program that contains a corre-
sponding specification in the file description entry.
4. The EXTERNAL clause may not be specified in a LOCAL-STORAGE SECTION.
5. The EXTERNAL clause may not be specified in file or record description entries for files
that use a common I-O area (SAME RECORD AREA clause).
6. The EXTERNAL clause may not be specified for files that are assigned to the system
devices SYSIPT, SYSOPT, PRINTER or PRINTERnn.
7. The EXTERNAL clause may not be specified for files for which user labels and
corresponding USE procedures are defined.
216 U41112-J-Z125-1-76
Data Division EXTERNAL clause
8. An external file must be essentially described in the same manner via explicit clauses
or implicit default values in all programs that wish to access the file. The following table
shows how and to what extent the descriptions must match:
Clauses / specifications In all programs
Name of external file same to full length (30 characters)
OPTIONAL phrase (SELECT clause) same specification*)
ASSIGN TO data-name same form of assignment
ASSIGN TO PRINTER literal same form of assignment
ORGANIZATION clause same form of organization
ACCESS MODE clause same access method
RELATIVE KEY phrase same number of digits
RECORD KEY clause same length and position
ALTERNATE RECORD KEY clause same number, position, length and DUPLICATES
phrase
BLOCK CONTAINS clause same block size in bytes
MULTIPLE FILE TAPE clause same position number
RECORD clause same minimum and maximum record length
LABEL RECORDS clause same specification*)
REPORT clause (Report Writer) same specification*)
LINAGE clause same specification*)
CODE SET clause same specification*)
RECORDING MODE clause same specification*)
*)
Same specification means that the relevant clause may either be specified in none of
the programs or must be specified the same in all programs.
All programs that access the same external file must have been compiled with the same
value of the compiler option ENABLE-UFS-ACCESS or with the same module format
(see the COBOL2000 User Guide [1]).
9. If a file is defined as external, this does not mean that the associated file-name is
implicitly a global name.
The following applies to the names of external files when generating the *OMF format (see
also the COBOL2000 User Guide):
1. The eighth character must not be a hyphen.
2. Only the first 7 characters of the name are used for identification. These characters
should therefore be unique for each external name in the run unit.
U41112-J-Z125-1-76 217
GLOBAL clause Data Division
GLOBAL clause
Function
The GLOBAL clause can only be used within a nested program. It defines a file-name
(data-name or report-name; see the section “Data description entry” and the “Report
Writer” chapter for details) as global. A global name can be accessed by the program defin-
ing it and by any other program contained directly or indirectly in that program.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IS GLOBAL
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
218 U41112-J-Z125-1-76
Data Division LABEL RECORDS clause
Function
The LABEL RECORDS clause specifies whether labels are present, and identifies them if
they are.
Syntax rules
1. For data-name-1, record description entries must be present for the file concerned.
data-name-1... must not appear as operands in the DATA RECORDS clause of this file.
The data-name may optionally be used to specify, in the LINKAGE SECTION, a record
used for label handling.
2. The OMITTED phrase specifies that there are either no unique labels for this file, or the
existing labels are non-standard, and the user does not wish to use a USE procedure
for label processing (e.g. he may want to process the labels as records).
3. The STANDARD phrase specifies that labels are present for the file and that these
labels are in accordance with system conventions (see the "DMS" manual [9]).
4. In the following discussion, all references to data-name-1 also apply to data-name-2,
etc.
When data-name-1 is specified, this indicates either the presence of user labels in
addition to standard labels, or the presence of nonstandard labels. data-name-1 defines
the name of a user label record.
When processing user labels, data-name-1 may be defined for any files except unit-
record files.
U41112-J-Z125-1-76 219
LABEL RECORDS clause Data Division
General rules
1. OMITTED may not be specified for files which are assigned with "ASSIGN TO literal".
2. For the format of system labels, see the "DMS" manual [9].
3. User labels are formatted as follows:
a) Each user label is 80 characters long.
b) Positions 1-3 of a user header label must contain the characters UHL.
c) Positions 1-3 of a user trailer label must contain the characters UTL.
d) Position 4 shows the relative location of the label in a sequence of header or trailer
labels; in other words, this position must contain a digit from 1 to 9. If only one label
(UHL and/or UTL) is present, position 4 must contain the character "1".
e) Positions 5-80 are formatted according to user specifications.
For further details, see the "DMS" manual [9].
4. User header labels follow standard file header labels of the system, however, they
precede the first record.
5. User trailer labels follow standard end-of-file labels of the system.
6. Nonstandard labels can be from 1 to 4095 characters long. Their format and contents
are defined by the user.
7. If data-name-1 is specified, then all Procedure Division references to the specified data-
names or to items subordinate to these data-names must appear within user declara-
tives (USE procedures).
8. If the LABEL RECORDS clause refers to an external file, an equivalent LABEL
RECORDS clause must be specified in all programs that describe this external file.
220 U41112-J-Z125-1-76
Data Division LINAGE clause
LINAGE clause
Function
The LINAGE clause provides a means of specifying, for an output file, the size of a logical
page in terms of the number of lines. It can also be used to specify the size of the top and
bottom margins on the logical page and the line number, within the page body, at which the
footing area is to begin.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name-1 data-name-2
LINAGE IS LINES WITH FOOTING AT
integer-1 integer-2
data-name-3 data-name-4
LINES AT TOP LINES AT BOTTOM
integer-3 integer-4
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
U41112-J-Z125-1-76 221
LINAGE clause Data Division
8. The LINAGE clause provides a means of specifying the size of a logical page in terms
of the number of lines. The logical page size is the sum of the values of each phrase in
the LINAGE clause except the FOOTING phrase. If the LINES AT TOP or LINES AT
BOTTOM phrases are not specified, the value for this function is zero. If the FOOTING
phrase is not specified, no footing area is defined (see Table 7-3).
top margin
1
2
3
page body data-name-1/ . Number of print lines
LINAGE IS integer-1 .
.
n
9. The size of a logical page must not necessarily correspond to the size of a physical
page.
10. The value of integer-1 or the data item referenced by data-name-1 specifies the number
of lines that can be written and/or spaced on the logical page. This part of the logical
page, in which these lines can be written and/or spaced, is called the page body.
11. The value of integer-3 or the data item referenced by data-name-3 specifies the number
of lines forming the top margin of the logical page. This area is left blank.
12. The value of integer-4 or the data item referenced by data-name-4 specifies the number
of lines forming the bottom margin of the logical page. This area is left blank.
13. The value of integer-2 or the data item referenced by data-name-2 specifies the line
number within the page body at which the footing area begins.
14. The footing area comprises the area of the logical page between the line specified by
integer-2 or data-name-2 and the line represented by integer-1 or data-name-1.
222 U41112-J-Z125-1-76
Data Division LINAGE clause
15. The values of integer-1, integer-3 and integer-4 (or the values of data items data-name-
1, data-name-3 and data-name-4, if specified) are used at object time by an OPEN
statement (with the OUTPUT phrase) to specify the number of lines in each of the
indicated parts of the first logical page. At the same time, the value of integer-2 or of
data item referenced by data-name-2 (if specified) is used to define the footing area.
If a page overflow occurs during execution of a WRITE statement with the ADVANCING
phrase, the values of integer-1, integer-3 and integer-4 are used to specify the number
of lines that comprise each of the indicated sections of the next logical page.
The value of integer-2 or of data item referenced by data-name-2 (if specified) is then
used to define the footing area of the next logical page.
General rules
U41112-J-Z125-1-76 223
LINAGE clause Data Division
4. If the LINAGE clause refers to an external file, an equivalent LINAGE clause must be
specified in all programs that describe this external file. In contrast to the Standard, the
compiler described here requires specifications only of the same type (i.e. either only
data-name specifications or only integer specifications). The contents of the data items
or the numerical values may be different.
224 U41112-J-Z125-1-76
Data Division RECORD clause
RECORD clause
Function
The RECORD clause defines the length of the records in a file and controls the external
record format (for sequentially organized files, see also the “RECORDING MODE
clause“).
Format 1 Indicates fixed-length records by specifying the number of character posi-
tions in a record.
Format 2 Indicates variable-length records, whereby the size of the record must lie
within a certain range.
Format 3 Indicates variable-length records, whereby the minimum and maximum
number of character positions are specified.
Syntax rules
1. The length of each record is precisely defined by its record description entry. The length
specification in the RECORD clause is ignored in this respect.
2. The number of character positions in each record description entry for the file must be
equal to integer-1.
3. integer-1 must be at least 1 and can be as large as 32767. When the RECORD clause
is used in a sort file description entry, the maximum permitted value for integer-1 is
equal to 32755 minus the sort key length.
4. Only fixed-length records may be declared if files with relative organization are to be
processed with the DMS access method UPAM (see the COBOL2000 User Guide [1]).
[DEPENDING ON file-name-1]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 225
RECORD clause Data Division
Syntax rules
1. In any record description entry, it is impermissible for the length specification to be less
than integer-2 or more than integer-3.
2. integer-3 must be larger than integer-2.
3. integer-2 must be at least 1, while integer-3 can be up to 32763. When the RECORD
clause is used in a sort file description entry, the maximum permitted value for integer-
3 is equal to 32751 minus the sort key length.
4. data-name-1 must be described as an unsigned integer data item in the WORKING-
STORAGE, LOCAL-STORAGE or LINKAGE SECTION.
General rules
1. If integer-2 is omitted, it is assumed that the length of the shortest record is 1. For each
SORT or MERGE statement, the sort key must lie completely within the range of this
minimal length.
2. If integer-3 is omitted, the length of the longest record in the record description entry for
this file is assumed. This number also provides the block size.
3. If data-name-1 is specified, the number of character positions in the record must be
moved to data-name-1 before a RELEASE, REWRITE or WRITE statement is executed
for this file.
4. If data-name-1 is specified, its contents remain unchanged when a RELEASE,
REWRITE or WRITE statement is executed or when a READ or RETURN statement
terminates abnormally.
5. During execution of a RELEASE, REWRITE or WRITE statement, the record length is
determined as follows:
a) If data-name-1 is specified: by the contents of the data item referenced by data-
name-1.
b) If data-name-1 is omitted and the record description entry has no OCCURS clause
with DEPENDING ON phrase: by the number of character positions in the record.
c) If data-name-1 is not specified and the record description entry contains no OC-
CURS clause with DEPENDING ON phrase: by the fixed portion of the record de-
scription entry (i.e. all data description entries without the DEPENDING ON phrase)
and by the number of occurrences of the table elements during execution of the
statement.
226 U41112-J-Z125-1-76
Data Division RECORD clause
Syntax rules
1. integer-4 describes the number of character positions in the shortest record; integer-5
the number in the longest.
2. In no record description entry for the file may the length be less than specified in integer-
4 or greater than specified in integer-5.
3. integer-5 must be greater than integer-4.
4. integer-4 must be at least 1; integer-5 must not exceed 32763. When the RECORD
clause is used in a sort file description entry, the maximum permitted value for integer-
5 is 32751 minus the sort key length.
1. The length of each record is precisely defined by its record description entry. If the
RECORD clause is specified, the length is compared with the specifications given in the
clause (for sequentially organized files, see also the “RECORDING MODE clause“).
2. The length of a record is determined by the sum of the character positions of all its ele-
mentary items and the slack bytes generated by the compiler. If the record contains a
table, the minimum or maximum number of table elements is taken into account when
calculating the length. For further details, see the SYNCHRONIZED clause (page 282),
USAGE clause (page 285) and "Data alignment" (page 80).
U41112-J-Z125-1-76 227
RECORD clause Data Division
3. If the RECORD clause is not specified, the minimum or maximum record length results
from the specifications in the corresponding record description entry. If a record
description entry contains an OCCURS clause with the DEPENDING phrase, the value
1 is assumed as the minimum record length for this.
4. If the RECORD clause is specified for an external file, a RECORD clause of the same
format must be specified in all programs that describe this external file; the minimum
and maximum record lengths calculated from the specifications in the RECORD clause
must match those from the corresponding record description entries.
5. The following table shows which specifications in the formats of the RECORD clause
are decisive in calculating the minimum and maximum record lengths.
Format 1 Format 2 Format 3 No RECORD
clause
Minimum Longest record integer-2; integer-4 Shortest record of record
record of record if not specified: 1 description entry;
length description with OCCURS
entry DEPENDING: 1
Maximum as above integer-3; integer-5 Longest record of record
record if not specified: description entry
length longest record of
record description
entry
Table 7-4 Specifications in the RECORD clause
6. The specified maximum limits are reduced by 8 bytes for files with relative
organization.
228 U41112-J-Z125-1-76
Data Division RECORDING MODE clause
Function
The RECORDING MODE clause specifies that the format of logical records in the file is
"undefined".
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
RECORDING MODE IS U
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
Specifying U means that the file may contain any combination of fixed-length or
variable-length records. Records in mode U cannot be blocked and have no preceding
control data item (record length field, RLF). If RECORDING MODE IS U is specified,
there is no need to specify the BLOCK CONTAINS clause.
General rules
1. The record formats "F" (fixed-length records) and "V" (variable-length records) are de-
fined by the RECORD clause:
fixed record length by a RECORD clause in format 1, variable record length by a
RECORD clause in format 2.
2. If the RECORDING MODE clause refers to an external file, an equivalent RECORDING
MODE clause must be specified in all programs that describe this external file.
U41112-J-Z125-1-76 229
VALUE OF clause Data Division
VALUE OF clause
Function
The VALUE OF clause particularizes the description of data items in a label record.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IDENTIFICATION data-name-1
VALUE OF IS ...
ID literal-1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
The VALUE OF clause is treated as a comment by the compiler.
230 U41112-J-Z125-1-76
Data Division Data description entry
General description
Data description entry is the general term for the description of every single data item in
the Data Division; the entry is composed of the level number, followed by a data-name (if
necessary) and several data clauses.
The record description entry is used to define all data description entries which are asso-
ciated with a particular record; that is, the record description entry describes all properties
of that record.
Level numbers are used in structuring a logical record so that subdivisions of the record
may be referenced. Once a record has been subdivided, this structuring may be carried
further to permit even more detailed data references.
Table 7-5 shows the permitted level numbers and their associated Data Division entries.
Level-number Use
01 Record description entries
02 - 49 Data description entries describing subdivisions of a record
77 Description entries for independent or noncontiguous data items which are not
subdivisions of other items and are not themselves subdivided
66 Elementary items or group items described by the RENAMES clause for the
purpose of regrouping data items (see "RENAMES clause", page 275)
88 Condition-name entries to specify condition-names associated with particular
values of a conditional variable (see "VALUE clause", page 299)
Table 7-5 Summary of level numbers
Consecutive data description entries may have the same format as the first such entry or
may be intended according to their level numbers. While indentation is helpful for documen-
tation purposes, it does not affect the compiler.
Multiply-defined 01- and 77-level record description entries are not treated as errors,
provided they are not used in the Procedure Division.
The concept of level is contained in the structure of a logical record. This concept arises
from the need of assigning names to the parts of a record in order to access them. Once a
record has been thus subdivided, the subdivision can be carried further to permit even more
detailed data references.
U41112-J-Z125-1-76 231
Data description entry Data Division
A "report group" is to the REPORT SECTION what a "record" is to other sections of the Data
Division. The report group description entry describes all data description entries
associated with a particular report group. Within a report group description entry, a
distinction is made between the first and the subsequent data description entries (see
chapter 10, "Report writer").
Those components of a record which are not further subdivided are called elementary
items; a record thus either consists of a sequence of elementary items or is itself an
elementary item.
An elementary item may be at the most 65535 bytes long.
In order to reference a number of elementary items at one time, these items are arranged
into "groups" or "group items". These groups may in turn be arranged into sets of two or
more groups. Consequently, an elementary item may belong to more than one group.
The word "data item" is used in those cases where there is no need to distinguish between
elementary and group items.
Data items that bear no hierarchical relationship to one another are defined as independent
elementary items in conjunction with the level number 77.
The following specifications are required in each data description entry
– level-number 77
– data-name
– the PICTURE clause or the USAGE clause with the INDEX, COMPUTATIONAL-1,
or COMPUTATIONAL-2 phrases.
In addition to the mandatory clauses, additional data clauses can be used to complete the
data description entry. Their use is described in the section starting on page 237.
232 U41112-J-Z125-1-76
Data Division Data description entry
Function
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name
level-number
FILLER
[REDEFINES clause]
[BLANK WHEN ZERO clause]
[DYNAMIC clause]
[EXTERNAL clause]
[GLOBAL clause]
[JUSTIFIED clause]
[OCCURS clause]
[PICTURE clause]
[SIGN clause]
[SYNCHRONIZED clause]
[USAGE clause]
[VALUE clause]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
U41112-J-Z125-1-76 233
Data description entry Data Division
Example 7-1
for the structure of a record with description of group items
01 RECORD. LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 Logical record
02 REF-NO PIC ... LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 Elementary item
02 CUSTMR-NO PIC ... LR2LR2LR2LR2LR2LR2LR2 Elementary item
02 ADDRESS. LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 Group item
03 FIRST-NAME PIC ... LR2LR2LR2 Elementary item Group item
03 LAST-NAME PIC ... LR2LR2LR2LR2 Elementary item
03 STATE PIC ... LR2LR2LR2LR2LR2LR2LR2LR2 Elementary item Group item
03 CITY. LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 Group item MU
04 ZIP-CODE PIC ... - Elementary item Group item
04 CITY PIC ... LR2LR2LR2LR2LR2 Elementary item
03 STREET PIC ... LR2LR2LR2LR2LR2LR2LR2 Elementary item
02 ART-NO PIC ... LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 Elementary item
02 PRICE. LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 Group item
03 DOMES PIC ... LR2LR2LR2LR2LR2LR2LR2LR2 Elementary item Group item
03 FORGN PIC ... LR2LR2LR2LR2LR2LR2LR2LR2 Elementary item
The group item contains no information on data class or size of item. Definitions (e.g.
REDEFINES, OCCURS) can, however, follow the group item name. The entry ends with a
period.
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
THROUGH
66 data-name-1 RENAMES data-name-2 data-name-3.
THRU
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
For syntax rules and general rules, see the "RENAMES clause" (page 275).
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
VALUE IS THROUGH
88 condition-name literal-1 literal-2 ...
VALUES ARE THRU
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
For syntax rules and general rules, see format 2 of the "VALUE clause" (page 297).
234 U41112-J-Z125-1-76
Data Division Level number
Level number
Function
The level number indicates the position of a data item within the hierarchical structure of a
logical record. It also identifies entries for data items within the WORKING-STORAGE,
LOCAL-STORAGE and LINKAGE SECTIONs, as well as for condition-names and
data-items in the RENAMES clause.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
level-number
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The level number is a special numeric literal consisting of one to two digits. A level
number which is less than 10 may be written either as a single digit or with a leading
zero.
2. Data description entries subordinate to an FD or SD entry must have level numbers with
the values 01 to 49, 66, or 88.
3. Data description entries subordinate to an RD entry may have the level numbers 01 and
02 only.
4. The first element in every data description entry must be a level number.
General rules
1. Level number 01 identifies the first entry of each record description or report group
description.
2. Special level numbers are assigned to certain kinds of entries for which there is no real
concept of hierarchy. These numbers include:
Level number 66 is used to identify renaming entries. It may be used only as described
in the RENAMES clause.
Level number 77 is used to identify structurally noncontiguous data items in the
WORKING-STORAGE, LOCAL-STORAGE and LINKAGE SECTIONs. It may be used
only as described under "77-level description entry".
Level number 88 refers to entries which define condition-names associated with a
conditional variable. It may be used only as described in format 2 of the VALUE clause.
U41112-J-Z125-1-76 235
Level number Data Division
3. Multiple level-01 entries which are subordinate to a given level indicator (except RD)
represent implicit redefinitions of the same area.
Example 7-2
01 ADDRESS.
02 NAME.
03 FIRST-NAME PIC X(18).
03 LAST-NAME PIC X(20).
02 STREET ADDRESS.
03 ZIP-CODE.
04 DIGIT-1 PIC 9.
04 DIGIT-2 PIC 9.
04 DIGIT-3 PIC 9.
04 DIGIT-4 PIC 9.
04 DIGIT-5 PIC 9.
03 CITY PIC X(19).
03 STREET PIC X(16).
03 HOUSE-NUMBER PIC XXX.
The statement
MOVE ADDRESS TO...
will move the entire group.
The statement
MOVE NAME TO...
will move the first and last names etc.
236 U41112-J-Z125-1-76
Data Division BLANK WHEN ZERO clause
Function
The BLANK WHEN ZERO clause specifies that an item is to be set to blanks when its value
is zero.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
BLANK WHEN ZERO
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The BLANK WHEN ZERO clause may be specified only at the elementary level for
numeric-edited or numeric items.
2. The numeric or numeric edited data description entry to which the BLANK WHEN
ZERO clause applies must be described, either implicitly or explicitly, as USAGE IS
DISPLAY.
General rules
1. When the BLANK WHEN ZERO clause is used, the item will contain only blanks if the
value of the item is zero.
2. When the BLANK WHEN ZERO clause is used for numeric data items, the category of
the item is considered to be numeric-edited.
3. If the BLANK WHEN ZERO clause and the PICTURE clause with asterisk (*) (for zero
suppression) are used simultaneously in a data description entry, the zero suppression
editing function overrides the function of the BLANK WHEN ZERO clause (see
"PICTURE clause", page 256).
U41112-J-Z125-1-76 237
BLANK WHEN ZERO clause Data Division
Example 7-3
IDENTIFICATION DIVISION.
PROGRAM-ID. BWHENZ.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 PURCHASE-EXAMPLE.
02 PURCHASE PICTURE $Z.99 BLANK WHEN ZERO.
PROCEDURE DIVISION.
MAIN SECTION.
P1.
MOVE ZERO TO PURCHASE.
DISPLAY PURCHASE UPON T.
STOP RUN.
Value of PURCHASE after the MOVE statement:
ËËËËË (5 spaces)
238 U41112-J-Z125-1-76
Data Division DYNAMIC clause
DYNAMIC clause
Function
The DYNAMIC clause enables the dynamic provision of memory in a scope defined by the
user.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
01 data-name IS DYNAMIC.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
(level-number and data-name are not part of the DYNAMIC clause; they are specified here
simply to improve clarity)
Syntax rules
1. The DYNAMIC clause may only be specified in level-01 record description entries in the
WORKING-STORAGE SECTION.
2. If the DYNAMIC clause is specified for a data item, no other clause may be specified for
this data item.
General rules
The data item to which the DYNAMIC cause is applied is set up in main memory at
object time and begins on a 4-Kbyte boundary.
U41112-J-Z125-1-76 239
Data-name/FILLER clause Data Division
Function
A data-name specifies the data being described. The reserved word FILLER specifies an
elementary or group item which is never referenced explicitly and therefore need not be
given a name.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name
level-number
FILLER
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
(The level number is not part of the data-name or FILLER clause; it is shown here merely
for purposes of clarity.)
Syntax rules
General rules
240 U41112-J-Z125-1-76
Data Division Data-name/FILLER clause
Example 7-4
01 REC.
02 FIRST-NUMBER PICTURE 9(8).
02 SECOND-NUMBER PICTURE 9(12).
02 FILLER PICTURE X(60).
Here, a record is identified by the data-name RECORD, and its first two fields are identified
by the data-names FIRST-NUMBER and SECOND-NUMBER. Since the third field is not
referenced in the program, its level number is followed by the reserved word FILLER.
U41112-J-Z125-1-76 241
EXTERNAL clause Data Division
EXTERNAL clause
Function
With the EXTERNAL clause, a record can be defined as external. External files and records
can be accessed by any program in which the file or record is described.
Syntax rules
1. The EXTERNAL clause may be included only in the record description entry of the
WORKING-STORAGE SECTION.
2. A data-name declared as external may not be declared again within the same program.
3. The EXTERNAL clause may refer only to a data description entry with level number 01.
4. The following must not be used as the name of an external record:
– names of external files
– PROGRAM-ID names of the run unit, except names of contained programs in a
nested program
– names used as entry points in an ENTRY statement
– names which identify interfaces (LZS-name, etc.).
5. The EXTERNAL clause and the REDEFINES clause must not be specified together in
the same data description entry.
6. No VALUE clauses (with the exception of VALUE clauses for condition-names (level
number 88)) may be specified in data description entries which are assigned to or
subordinate to a data description entry containing the EXTERNAL clause.
7. The EXTERNAL clause may not be specified for a data item of the class “object”.
General rules
1. An external record that is described in several programs of a run unit must have the
same name in each of these programs and must also have the same length. The
compiler permits the use of different length definitions, but this possibility should not be
used if CALL identifier is used in the program.
2. If a record is defined as external, the associated file is not implicitly an external file.
242 U41112-J-Z125-1-76
Data Division EXTERNAL clause
The following applies to the names of external records when generating the *OMF format
(see also the COBOL2000 User Guide):
1. The eighth character must not be a hyphen.
2. Only the first 8 characters of the name are used for identification. These characters
should therefore be unique for each external name in the run unit.
U41112-J-Z125-1-76 243
GLOBAL clause Data Division
GLOBAL clause
Function
The GLOBAL clause can only be used within a nested program. It defines a file-name, data-
name or report-name as global. A global name can be accessed by the program defining it
and by any other program contained directly or indirectly in this program.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IS GLOBAL
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The GLOBAL clause may only be specified in data description entries with level number
01.
2. If two data items are defined in the same Data Division with the same name, the
GLOBAL clause must not be specified in any of the corresponding data description
entries. s
3. The GLOBAL clause may not be specified in a method, factory or object definition.
General rules
1. A data-name, whose description contains a GLOBAL clause is a global name. All data-
names subordinate to a global name and all condition-names associated with a global
name are global names.
2. Any program contained in the program that describes the global name may access a
global name. The global name does not need to be described again in the program that
references it. In the case of references to identical names, the local names have priority
(see "Determining the valid name", page 719).
3. If a data description entry also contains the REDEFINES clause in addition to the
GLOBAL clause, the redefined data item is not necessarily global by implication.
4. If a global data item contains a variable-length table, then the corresponding
DEPENDING ON element in the same Data Division must also be described as global.
5. The data-names in the CONFIGURATION SECTION are always implicitly global. The
CONFIGURATION SECTION should therefore only be specified in the outermost
containing program.
6. The index of an indexed table assigned to a global data item is also global.
244 U41112-J-Z125-1-76
Data Division JUSTIFIED clause
JUSTIFIED clause
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
JUSTIFIED
RIGHT
JUST
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. If the JUSTIFIED clause is specified for the receiving item, and the sending item is
longer than the receiving item, the data is aligned at the rightmost character position,
and the leftmost characters of the sending item are truncated.
If the JUSTIFIED clause is specified for the receiving item, and the receiving item is
longer than the sending item, the data is aligned at the rightmost character position, and
the leftmost character positions of the receiving item are filled with blanks.
2. When the JUSTIFIED clause is omitted, the standard rules for data alignment within an
elementary item are applicable (see the section on “Concept of computer-independent
data description“ on page 70).
U41112-J-Z125-1-76 245
JUSTIFIED clause Data Division
Example 7-5
Normal alignment (without JUSTIFIED):
246 U41112-J-Z125-1-76
Data Division OCCURS clause
OCCURS clause
Function
The OCCURS clause is used to define tables. It specifies how many elements a table is to
have, i.e. how often a data item is to recur. All elements have the same format. The size of
the table may be variable. Furthermore, indices can be supplied.
Format 1 specifies the exact number of occurrences of a data item.
Format 2 specifies a variable number of occurrences of a given data item, ranging
between a maximum and a minimum number of occurrences.
The minimum number may be omitted.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
OCCURS integer-2 TIMES
ASCENDING
KEY IS data-name-1 [data-name-2]......
DESCENDING
[INDEXED BY {index-1}...]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 247
OCCURS clause Data Division
248 U41112-J-Z125-1-76
Data Division OCCURS clause
U41112-J-Z125-1-76 249
OCCURS clause Data Division
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
OCCURS [integer-1 TO] integer-2 TIMES DEPENDING ON data-name-1
ASCENDING
KEY IS data-name-2 [data-name-3]......
DESCENDING
[INDEXED BY {index-1}...]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
250 U41112-J-Z125-1-76
Data Division OCCURS clause
13. If data-name-2 does not match the subject of the OCCURS clause the following rules
apply:
a) data-name-2, data-name-3,... must be subordinate to the group item referenced by
the OCCURS clause.
b) data-name-2, data-name-3,... must not be described with an OCCURS clause.
Furthermore, they must not be subordinate to an entry which contains an OCCURS
clause other than the one discussed here.
c) data-name-2, data-name-3,... may be qualified with OF or IN (see "Qualification",
page 84).
14. data-name-2, data-name-3,... are subject to the following rules:
a) Up to 12 key fields may be specified for a given table element.
b) The sum of the lengths of all key fields associated with a table element must not
exceed 256.
c) The key fields may have the following data format:
DISPLAY, BINARY, COMPUTATIONAL, COMPUTATIONAL-5,
COMPUTATIONAL-3 or PACKED-DECIMAL.
15. index-1... must be unique words in the program; otherwise, the indices specified by the
INDEXED BY phrase are not defined in the program. Up to 12 index-names may be
specified.
16. The OCCURS clause must not be specified in a data description entry that:
a) has a level number of 01, 66, 77 or 88, or
b) describes an item whose size is variable (the size of an item is variable if the data
description entry of any item subordinate to it contains an OCCURS clause with the
DEPENDING phrase).
17. A data description entry containing an OCCURS clause with the DEPENDING ON
phrase may only be followed, within that record description, by data description entries
which are subordinate to it. The COBOL2000 compiler also allows data description
entries which are independent of data hierarchy (see syntax rule 22).
18. The DEPENDING ON phrase specifies that the data item described by the OCCURS
clause has a variable number of occurrences. The number of occurrences is controlled
at object time by the value of data-name-1.
19. integer-1 and integer-2 specify the minimum and maximum number of occurrences,
respectively. The value of the data item referenced by data-name-1 must range
between integer-1 and integer-2.
20. If the value of data-name-1 is reduced at object time, the contents of the data items with
occurrence numbers greater than the new value of data-name-1 are undefined.
U41112-J-Z125-1-76 251
OCCURS clause Data Division
21. When reference is made to a group item to which an entry with an OCCURS
DEPENDING ON clause is subordinate, the part of the table area used in the operation
is determined as follows:
a) If the data item referenced by data-name-1 is outside the group, only that part of the
table area that is specified by the value of the data item referenced by data-name-
1 at the start of the operation will be used.
b) If the data item referenced by data-name-1 is included in the same group and the
group data item is referenced as a sending item, only that part of the table area that
is specified by the value of the data item referenced by data-name-1 at the start of
the operation will be used in the operation. If the group is a receiving item, the
maximum length of the group will be used.
22. If, within a record description entry, a data area follows data items with the DEPENDING
ON phrase, but is not subordinate to those items, then its position depends on the
current values of data-name-1 in the preceding DEPENDING ON phrases.
If the value of data-name-1 is changed (i.e. change of table length), the position of these
data areas are shifted accordingly. However, their original contents are not shifted (see
example 7-7).
23. The ASCENDING/DESCENDING KEY phrase defines whether the elements in the
table are to be arranged in ascending or descending order, according to the values
contained in data-name-2, data-name-3, etc. The data-names must be listed in
descending order of significance.
The user is responsible for seeing that the table elements are sorted properly (this order
is presupposed in the SEARCH ALL statement).
24. The INDEXED BY phrase indicates that indexing may be used to reference the data-
name which is the subject of the OCCURS clause, or any entry subordinate to that data-
name. The storage allocation and format for indices are automatically defined by the
compiler.
25. Each index contains a binary value that represents a displacement from the beginning
of the table, corresponding to an occurrence number. The value is calculated as the
occurrence number minus one, multiplied by the length of the entry that is indexed by
the index-name (see "Indexing", page 89).
26. Except for the OCCURS clause itself, all data description clauses associated with the
item whose description contains that OCCURS clause apply to each occurrence of the
item described.
27. When a computational elementary item (i.e. an item whose USAGE is BINARY,
COMPUTATIONAL, COMPUTATIONAL-5, COMPUTATIONAL-1, COMPUTATIONAL-2)
is an element in a table and is defined with the SYNCHRONIZED clause, the
compiler adds any necessary slack bytes for each occurrence of the item (see the
"SYNCHRONIZED clause", page 282).
252 U41112-J-Z125-1-76
Data Division OCCURS clause
28. Any entry that contains an OCCURS clause with the DEPENDING ON phrase, or has
a subordinate entry with an OCCURS... DEPENDING ON clause, must not contain a
REDEFINES clause.
29. Records are variable-length when format 2 is specified in a record description entry and
the associated file description entry contains the RECORD clause with VARYING
phrase.
If DEPENDING ON is not specified in the RECORD clause, the contents of the data
item referenced by data-name-1 in the OCCURS clause must be set to the number of
occurrences to be written before the execution of any RELEASE, REWRITE or WRITE
statement.
U41112-J-Z125-1-76 253
OCCURS clause Data Division
Example 7-6
Supplying a value to data-name-1 in OCCURS DEPENDING ON, using a MOVE operation.
Given the following data definition:
WORKING-STORAGE SECTION.
01 ITEM-A.
02 COUNTER-A PIC 9.
02 DATA-A.
03 CHARACTER-A PIC X OCCURS 1 TO 9
DEPENDING ON COUNTER-A.
01 ITEM-B.
02 COUNTER-B PIC 9.
02 DATA-B.
03 CHARACTER-B PIC X OCCURS 1 TO 9
DEPENDING ON COUNTER-B.
The following MOVE operations are to be performed:
Case a) Sending item longer than receiving item
MOVE 6 TO COUNTER-A,
MOVE 3 TO COUNTER-B,
MOVE ITEM-A TO ITEM-B.
Contents following MOVE operation:
A-FELD: 6ABCDEF
B-FELD: 6ABCDEF
MOVE DATA-A TO DATA-B would result in:
A-FELD: 6ABCDEF
B-FELD: 3ABC
Case b) Sending item shorter than receiving item (contents of both items as they were
before case a)
MOVE 3 TO COUNTER-A,
MOVE 6 TO COUNTER-B,
MOVE ITEM-A TO ITEM-B.
Contents following MOVE operation:
A-FELD: 3ABC
B-FELD: 3ABC
MOVE DATA-A TO DATA-B would result in:
A-FELD: 3ABC
B-FELD: 6ABCËËË
The MOVE operations proceed according to the rules for alphanumeric moves (see "MOVE
statement", page 434).
254 U41112-J-Z125-1-76
Data Division OCCURS clause
Example 7-7
OCCURS DEPENDING ON data-name-1
Given the following data definition:
WORKING-STORAGE SECTION.
01 DATA-RECORD.
02 TABLE1.
03 LEN PIC 9.
03 TAB-ELEM PIC X OCCURS 1 TO 9
DEPENDING ON LEN.
02 ITEM PIC X.
If the current value of LEN is 9, the following starting position of the items results:
DATA-RECORD TABLE LEN 9
ELEM (1) A
B
.
.
H
ELEM (9) I
ITEM J
The data item LEN now has the value 1; the data item ITEM has the value B.
U41112-J-Z125-1-76 255
PICTURE clause Data Division
PICTURE clause
Function
The PICTURE clause describes the general characteristics and editing requirements of an
elementary data item.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
PICTURE
IS character-string
PIC
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
256 U41112-J-Z125-1-76
Data Division PICTURE clause
represent its use to the left of the decimal point position (l). The rightmost column and
lowermost row for each symbol represent its use to the right of the decimal point posi-
tion (r).
Second symbol
Non-floating insertion symbols Floating insertion symbols Other symbols
+ + CR Z Z + + A
B 0 / , . - - DB CS1 * * - - CS1 CS1 9 X S V P P
First l r l r l r l r l r
symbol
B X X X X X X X X X X X X X X X X X
0 X X X X X X X X X X X X X X X X X
Non- / X X X X X X X X X X X X X X X X X
float.
inser- , X X X X X X X X X X X X X X X X
tion . X X X X X X X X X X
sym-
bols + or - l X X X X X X X X X X X X X X
+ or - r
CR / DB
CS1) X X X X X X X X X X X X X X X
Z/* l X X X X X X X X X X X X
Float. Z/* r X X X X X X X
inser-
tion +/- l X X X X X X X X X X
sym- +/- r X X X X X
bols
CS1 l X X X X X X X X X X X X X
CS1) r X X X X X X X X
9 X X X X X X X X X X X
Other A/X X X X X X
sym- S X X X X
bols
V X X X X X X X X X X X
P l X X X X
P r X X X X X X X X X X X
Table 7-6 Precedence of symbols used in the PICTURE clause
U41112-J-Z125-1-76 257
PICTURE clause Data Division
9. The number of characters specified in the character-string is used to determine the size
of the item. However, the actual internal storage requirements are determined by the
combination of the PICTURE and USAGE clauses (see "USAGE clause", page 285).
10. Five data categories may be described with the PICTURE clause:
alphabetic
alphanumeric
numeric
alphanumeric edited
numeric edited
11. There are two general methods of performing editing in the PICTURE clause: by
insertion, or by suppression and replacement.
Four types of insertion editing are available:
simple insertion
special insertion
fixed insertion
floating insertion
Two types of suppression and replacement editing are available:
zero suppression and replacement with spaces
zero suppression and replacement with asterisks (*).
General rules
258 U41112-J-Z125-1-76
Data Division PICTURE clause
The characters and symbols that are permitted in a character-string have the following
meaning:
A Each A in the character-string represents a character position that may contain only
a letter or a space.
B Each B in the character-string represents a character position into which a space
character will be inserted. Each space is counted in the size of the item.
P P is the scaling position character. It represents a numeric digit position; however,
storage space is never reserved for it, and it is always treated as if it contained a
zero. P (or a group of Ps) indicates the location of an assumed decimal point (to the
left of the Ps if Ps are the leftmost characters of the character-string, and to the right
of the Ps if the Ps are the rightmost characters of the character-string). The
maximum number of digit positions in the scaling position character for numeric and
numeric-edited items is 18.
The character V (see below) may be specified or omitted. When specified, it must
be inserted in the position of the assumed decimal point, to the left or to the right of
the P or Ps specified. The scaling character P is not counted in the size of the data
item. But the scaling characters are counted in determining the maximum number
of digit positions (18) in numeric-edited or numeric data items. The scaling
character P and the insertion character . (period) must not be specified at the same
time in a character-string.
S The character S indicates the presence but not the location or mode of represen-
tation of an operational sign. If used, it must be the leftmost character of the
character-string. The S is not counted in the size of the item unless the entry is
subject to a SIGN clause which specifies the SEPARATE CHARACTER phrase.
V The character V indicates the position of an assumed decimal point. Since a
numeric item cannot contain a printed decimal point, an assumed decimal point
simply provides the compiler with information about the scaling alignment of items
involved in computations. Storage is never reserved for the character V; therefore,
V is not counted in the size of the item. If the assumed decimal point is the rightmost
character in the character-string, the character V need not be supplied.
X Each X in the character-string represents a character position which may contain
any allowable character from the EBCDIC set.
Z Each Z in the character-string represents a leading numeric character position. If
such a character position contains a zero, then the zero is replaced by a space.
Each Z is counted in the size of the item.
9 Each 9 in the character-string represents a character position that contains a
numeral and is counted in the size of the data item.
U41112-J-Z125-1-76 259
PICTURE clause Data Division
0 Each zero in the character-string represents a character position into which the
numeral zero will be inserted. Each zero is counted in the size of the item.
/ Each slash (/) in the character-string represents a character position into which a
slash will be inserted. Each slash is counted in the size of the item.
, Each comma (,) in the character-string represents a character position into which a
comma is inserted. Each comma is counted in the size of the data item.
. A period (.) in the character-string is an editing symbol and represents the decimal
point used for alignment of the data item. Additionally, it represents a character
position into which a period is inserted. The period is counted in the size of the data
item.
Note
In a given program, the functions of the period and the comma are exchanged
if the DECIMAL-POINT IS COMMA clause is specified in the SPECIAL-NAMES
paragraph of the Environment Division. The rules for the period then apply to
the comma, and vice versa, whenever they appear in a PICTURE character-
string.
+ These symbols are used as editing sign control symbols. When used, each repre-
- sents the character position into which the editing sign control will be placed. These
CR symbols are mutually exclusive in any one character-string, and each character
DB used in the symbol is counted in determining the size of the data item.
Editing sign control symbols produce different results for positive and negative data
items, depending on the value (see "Rules for fixed insertion editing", page 266).
* This symbol is a check protection symbol. Each asterisk (*) in the character-string
represents a leading numeric character position into which an asterisk will be
placed if that position contains a zero. Each asterisk (*) is counted in the size of the
item.
If the asterisk is used together with the BLANK WHEN ZERO clause in a data
description entry, the print editing routine cancels the effect of the BLANK WHEN
ZERO clause since it suppresses any zeros.
$ The currency symbol ($) in the character-string represents a character position into
which a currency sign is to be placed. The currency symbol in a character-string is
represented either by the symbol $ or by the single character specified in the
CURRENCY SIGN clause in the SPECIAL-NAMES paragraph of the Environment
Division. The currency symbol is counted in the size of the item.
260 U41112-J-Z125-1-76
Data Division PICTURE clause
Syntax rules
Example 7-8
Picture Value
PICTURE AAA NEW
Syntax rules
Example 7-9
The alphanumeric value AB1234 could be represented by any of the following character-
strings:
PICTURE XXXXXX
PICTURE AAXXXX
PICTURE AA9999
PICTURE A(2)X(4)
U41112-J-Z125-1-76 261
PICTURE clause Data Division
There are two types of numeric data items: fixed-point items and floating-point items.
Fixed-point items
There are three types of fixed-point items: external decimal, binary, and internal decimal
(see "USAGE clause", page 285).
Syntax rules
1. The character-string for a fixed-point data item may contain any permissible combi-
nation of the following symbols: 9, V, P, S.
2. It can contain from one up to and including 18 digit positions.
3. If the symbol S has not been specified, a data item may contain a combination of
the digits 0 through 9.
4. If the symbol S has been specified, the data item may contain, in addition to the
above digits, a "+", "-" or other representation of an arithmetic sign (see "SIGN
clause", page 278).
Example 7-10
Valid combinations for fixed-point items:
PICTURE 9999
PICTURE S99
PICTURE S99V9
PICTURE PPP999
PICTURE S999PPP
Example 7-11
Let 8735 be the contents of a data item.
For PICTURE P(4)9(4), the arithmetic value of this item is .00008735.
For PICTURE 9(4)P(2), the arithmetic value of this item is 873500.
The arithmetic value is used for all operations except DISPLAY.
262 U41112-J-Z125-1-76
Data Division PICTURE clause
where the following rules are to be observed for the elements of the character-
string:
A positive or negative sign must be written immediately in front of the mantissa and
the exponent in the character-string.
+ indicates that a plus sign is to represent positive values and a minus sign is
to represent negative values.
- indicates that a blank is to represent positive values and a minus sign is to
represent negative values.
mantissa
The mantissa is the decimal part of the number after the decimal point; it consists
of 1 to 18 ’9’s (each 9 representing a numeric character) and a leading, embedded,
or trailing decimal point (.) or V. The decimal point indicates an actual (printed) dec-
imal point, and the V indicates an assumed decimal point; these two characters are
mutually exclusive.
E
immediately follows the mantissa and indicates that an exponent follows.
exponent
The exponent immediately follows the second sign and consists of two
consecutive 9s.
2. The PICTURE clause must not be specified for an internal floating-point item.
Example 7-12 External floating-point item:
PICTURE -9V99E-99
PICTURE +9999.99E+99
PICTURE -9(16)VE+99
PICTURE +9(16).E-99
U41112-J-Z125-1-76 263
PICTURE clause Data Division
Syntax rules
1. The character-string for an alphanumeric edited data item is restricted to certain combi-
nations of the following symbols: A, X, 9, 0, B, / (slash).
2. An alphanumeric edited character-string must contain at least one A or X, and at least
one B or 0 or / (slash).
3. Characters from the computer’s character set are allowed provided that the contents
are represented in standard data format.
4. Only one type of editing is performed on alphanumeric edited data items: simple inser-
tion editing using the characters zero (0), slash (/) and space (B) (see rules for simple
insertion editing, page 264).
Example 7-13
Picture Value
PICTURE BAAAB ËNEWË
Syntax rules
1. The character-string for a numeric edited data item is restricted to certain combinations
of the following symbols:
B, / (slash), P, V, Z, 0, 9, , (comma), . (period), *, +, -, CR, DB, $.
2. The character-string must contain at least one of the symbols:
0, B, / (slash), Z, *, +, , (comma), . (period), -, CR, DB or $.
3. The maximum number of digit positions in the character-string is 18.
4. The maximum length of a numeric edited data item is 127 characters.
5. Allowable combinations of these characters are governed by the editing rules and the
symbol precedence rules (see following syntax rules and Table 7-6).
Syntax rules
1. In simple insertion editing, the following insertion characters are used: , (comma), B
(space), 0 (zero), and / (slash).
264 U41112-J-Z125-1-76
Data Division PICTURE clause
2. The insertion characters are counted in the size of the item, and represent the positions
within the item into which they will be inserted.
Example 7-14
Category of data PICTURE string Data being moved Edited result
receiving item
Numeric edited 999,999 54321 054,321
99B99B99 654321 65Ë43Ë21
99B99B00 654321 43Ë21Ë00
99/99/99 654321 65/43/21
Alphanumeric XXBXXX 123AA 12Ë3AA
edited 000X(5) A5CD3 000A5CD3
XX/XX CD05 CD/05
Syntax rules
1. Special insertion editing is performed by using the period (.) as an insertion character.
In addition to being used as the insertion character, the period is also used as the
decimal point for alignment purposes.
2. The assumed decimal point (represented by the character V) and the actual (printed)
decimal point cannot be used in the same character-string.
3. Special insertion editing may be used on numeric edited data items only.
4. As a result of special insertion editing, the insertion character (decimal point) appears
in the item in the same position as shown in the character-string; thus, the insertion
character is the actual decimal point. The actual decimal point is counted in the size of
the item.
U41112-J-Z125-1-76 265
PICTURE clause Data Division
Example 7-15
PICTURE string of Data being moved *) Edited result
receiving item
999.99 123&4 123.40
999.99 12&34 012.34
999.99 1&234 001.23
999.99 &1234 000.12
*) & designates the position of the assumed decimal point, which does not appear in the MOVE operation.
Syntax rules
1. The editing symbols used for fixed insertion editing are: + (plus), - (minus), CR (credit),
DB (debit), and $ / € (currency symbol).
2. Only one currency symbol and only one of the editing sign control symbols (+, -, CR,
DB) may be used in a given character-string.
3. The currency symbol may be preceded only by a plus or a minus symbol; otherwise, it
must be the leftmost character.
4. The symbols CR or DB, when specified, must be either the leftmost or the rightmost
character.
5. The plus or minus symbol, when specified, must be either the leftmost or the rightmost
character.
6. Fixed insertion editing results in the editing character occupying the same character
position in the edited item as in the character-string.
7. The symbols CR or DB, when used, represent two character positions which are
counted in the size of the data item. All fixed insertion editing characters are counted in
the size of the data item.
8. Editing sign control symbols produce the results listed in Table 7-7, depending on the
value of the data item.
266 U41112-J-Z125-1-76
Data Division PICTURE clause
Editing symbol in PICTURE Data item positive or zero Data item negative
character-string
+ + -
- space -
CR 2 spaces CR
DB 2 spaces DB
Table 7-7 Editing sign control symbols and their results
Example 7-16
*) & designates the position of the assumed decimal point, which does not appear in the MOVE operation.
Syntax rules
1. In floating insertion editing, the currency symbol ($) and the editing sign control symbols
(+ and -) are used as insertion characters. These characters are mutually exclusive as
floating insertion characters in the same character-string.
Floating insertion editing is indicated in a character-string by the use of a sequence of
at least two of the allowable insertion characters to represent the leftmost numeric
character positions into which the insertion characters can be floated. Any of the simple
insertion characters (, B 0 /) embedded in the sequence of floating insertion characters
or to the immediate right of this sequence are part of this floating string.
2. Only two types of floating insertion editing may be specified in a character-string.:
– Some or all of the leading numeric character positions to the left of the decimal point
may be represented by insertion characters.
– All of the numeric character positions of the character-string may be represented by
insertion characters.
U41112-J-Z125-1-76 267
PICTURE clause Data Division
3. The result of floating insertion editing depends on the representation in the character-
string:
– If the insertion characters are specified only to the left of the decimal point, a single
insertion character is placed into the character position which immediately pre-
cedes the decimal point, or the first non-zero digit to the left of the character-string,
and which is located inside the data represented by the insertion symbol string. The
character positions preceding the insertion character are replaced with spaces.
– If each of the numeric character positions in the character-string is represented by
the insertion character, the result depends on the value of the data item concerned.
If the value is zero, the entire data will contain spaces. If the value of the item is not
zero, the result is the same as that occurring when the insertion characters are
specified only to the left of the decimal point.
4. Every floating insertion character is counted in the size of the data item.
5. To avoid truncation of character positions, the programmer must form the character-
string for the receiving item according to the following rule:
– The minimum size of the character-string must equal the number of non-floating
insertion characters which are used for editing in the receiving item, plus one float-
ing insertion character.
Example 7-17
Receiving area PICTURE Data being moved*) Edited result
$$$$.99 123&12 $123.12
$$$$.99 3&12 $3.12
$$$$.99 &12 $.12
$,$$$.99 123&12 $123.12
$,$$$.99 3&12 $3.12
$,$$$.99 &12 $.12
+,+++.99 123&12 +123.12
+,+++.++ 123&12 +123.12
$,$$$.99 -123&12 $123.12
-,---.99 -123&12 -123.12
-,---.99 123&12 Ë123.12
$$.$$$.99 1234&56 $1,234.56
+,+++,999.99 -123456&78 -123,456.78
+,+++,+++.++ 000&00 (blank)
*)
& designates the position of the assumed decimal point which does not appear in the MOVE operation.
268 U41112-J-Z125-1-76
Data Division PICTURE clause
Syntax rules
U41112-J-Z125-1-76 269
PICTURE clause Data Division
Example 7-18
Receiving area PICTURE Data being moved*) Editing result
ZZZZ.ZZ 0000&00 (blanks)
****.** 0000&00 ****.**
ZZZZ.99 0000&00 .00
****.99 0000&00 ****.00
ZZZZ.ZZ +135&00 135.00
$**,***.**BDB -2135&00 $*2,135.00ËDB
$BB****,**.99BBCR -2135&00 $ËË**21,35.00ËËCR
*)
& designates the position of the assumed decimal point which does not appear in the MOVE operation.
270 U41112-J-Z125-1-76
Data Division REDEFINES clause
REDEFINES clause
Function
The REDEFINES clause allows the programmer to define different data description entries
for the same area of computer storage.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name-1
level-number REDEFINES data-name-2
FILLER
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
(The level number, data-name-1 and FILLER are not part of the REDEFINES clause, and
are shown here only for clarity.)
Syntax rules
U41112-J-Z125-1-76 271
REDEFINES clause Data Division
9. Except for condition-name entries, the entries giving a new description of a storage area
must not contain a VALUE clause.
10. No entries having level numbers numerically lower than that of data-name-1 and data-
name-2 may occur between the descriptions of data-name-2 and data-name-1.
11. The REDEFINES clause may be specified for an item subordinate to a redefined item,
or for a data item which is subordinate to an item containing a REDEFINES clause.
12. The REDEFINES clause may not be specified for data of the class “object“.
13. data-name-2 may not be of the class “object“.
General rules
1. Data-name-1 is the name of the data area associated with the redefinition. Data-name-
2 is the name of the original definition of the data area to be redefined.
2. Redefinition starts at data-name-2 and ends when a level number less than or equal to
that of data-name-2 is encountered.
3. When an area is redefined, all descriptions of that area remain in effect. For example,
if A and B are two separate data items sharing the same storage area, the procedure
statements MOVE ALPHA TO A or MOVE BETA TO B could be executed at any point
in the program. In the first case, ALPHA would be moved to A and would take the form
specified by the description of A. In the second case, BETA would be moved to the same
physical area and would take the form specified by the description of B. If both MOVE
statements were executed successively in the order specified, the value BETA would
overlay the value ALPHA; however, redefinition of an area does not erase any data and
does not supersede a previous description.
4. Moving a data item from A to B when B is a redefinition of A amounts to moving an item
to itself, and the result of such a move is unpredictable. The same is true of the opposite
type of move; that is, moving A to B when A redefines B.
5. The use of data items defined by the PICTURE and USAGE clauses within an area can
be redefined. Altering the use of an area by the REDEFINES clause does not, however,
change any existing data.
6. When the SYNCHRONIZED clause is specified in a data entry that is redefining a
previous data entry, the user should ensure that the area being redefined begins on the
proper boundary: halfword, fullword, or doubleword.
272 U41112-J-Z125-1-76
Data Division REDEFINES clause
Example 7-19
02 ALPHA.
03 A-1 PICTURE X(3).
03 A-2 PICTURE X(2).
02 BETA REDEFINES ALPHA PICTURE 9(5).
02 GAMMA.
BETA is data-name-1; ALPHA is data-name-2. BETA redefines the area assigned to
ALPHA (that is, the area occupied by A-1 and A-2). Redefinition starts at BETA and ends
at the next level number 02 (the number preceding GAMMA).
Example 7-20
(Multiple redefinitions)
02 ALPHA PICTURE 9(3).
02 BETA REDEFINES ALPHA PICTURE X(3).
02 GAMMA REDEFINES ALPHA PICTURE A(3).
Example 7-21
01 SAMPLE-AREA-1.
02 FIRST-DEFINITION PICTURE 99 VALUE 12.
02 SECOND-DEFINITION REDEFINES FIRST-DEFINITION
USAGE COMPUTATIONAL PICTURE S9(4).
In this example, FIRST-DEFINITION is a 2-byte unsigned external decimal number with the
value 12. This means that the contents of the two bytes in hexadecimal is X’F1F2’.
SECOND-DEFINITION is also a number, and occupies the same two bytes; but it does not
have the value 12. The data in these two bytes (X’F1F2’) is unchanged by the redefinition;
and, since SECOND-DEFINITION is a signed, binary number, this data has the value
-3598.
Example 7-22
01 SAMPLE-AREA-2.
02 FIRST-DEFINITION.
03 ALPHA PICTURE X(3).
03 BETA PICTURE X(5).
03 GAMMA REDEFINES BETA PICTURE 9(5).
03 FILLER PICTURE X(10).
02 SECOND-DEFINITION REDEFINES FIRST-DEFINITION PICTURE X(18).
In this example, one of the items subordinate to FIRST-DEFINITION is redefined: GAMMA
REDEFINES BETA. This is permitted, and is not blocked by the fact that FIRST-
DEFINITION is itself later redefined by SECOND-DEFINITION.
U41112-J-Z125-1-76 273
REDEFINES clause Data Division
Example 7-23
01 SAMPLE-AREA-3.
02 FIRST-DEFINITION PICTURE S9(7).
02 SECOND-DEFINITION REDEFINES FIRST-DEFINITION.
03 A-1 PICTURE A.
03 N-1 REDEFINES A-1 PICTURE 9.
03 FILLER PICTURE X(6).
In this example, one of the data items subordinate to SECOND-DEFINITION is redefined;
N-1 REDEFINES A-1. This is permitted, and is not blocked by the fact that SECOND-
DEFINITION itself is a redefinition.
274 U41112-J-Z125-1-76
Data Division RENAMES clause
RENAMES clause
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
THRU
66 data-name-1 RENAMES data-name-2 data-name-3
THROUGH
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
(The level number 66 and data-name-1 are not part of the RENAMES clause, and are
shown only to improve clarity.)
Syntax rules
1. All entries of the RENAMES clause which refer to data items within a given logical
record must immediately follow the last data description entry of the associated record
description entry.
2. data-name-2 must precede data-name-3 in the record description. After each redefi-
nition, the beginning point of the area described by data-name-3 must logically follow
the beginning point of the area defined by data-name-2.
3. data-name-2 and data-name-3 must be the names of elementary items or groups of
elementary data items in the associated logical record, and cannot be the same data-
name.
4. The beginning of the area defined by data-name-3 must not lie to the left of the begin-
ning of the area defined by data-name-2. The end of the area defined by data-name-3
must lie to the right of the end of the area defined by data-name-2. Hence,
data-name-3 cannot be subordinate to data-name-2. Neither data-name-2 and
data-name-3 nor the data that lies between them may be of class “object”.
5. None of the data items within the area of data-name-2 and data-name-3, when
specified, may have a variable size as described in the OCCURS clause (see
"OCCURS clause" with DEPENDING ON phrase).
6. data-name-1 cannot be used as a qualifier and can be qualified only by the names of
the associated 01-level, SD, or FD entries.
U41112-J-Z125-1-76 275
RENAMES clause Data Division
General rules
More than one RENAMES clause may be written for the same logical record.
276 U41112-J-Z125-1-76
Data Division RENAMES clause
Example 7-24
The following example shows how a RENAMES clause may be used in an actual program:
01 INPUT-RECORD.
02 ARTICLE-1.
03 ARTICLE-NO PIC 99.
03 PRICE PIC 9999.
02 ARTICLE-2.
03 ARTICLE-NO PIC 99.
03 PRICE PIC 9999.
02 ARTICLE-3.
03 ARTICLE-NO PIC 99.
03 PRICE PIC 9999.
66 ART-ONE RENAMES ARTICLE-1.
66 ART-TWO RENAMES ARTICLE-1 THRU ARTICLE-2.
66 ART-THREE RENAMES ARTICLE-1 THRU ARTICLE-3.
In this case, each reference to ART-ONE would access group item ARTICLE-1; each
reference to ART-TWO, the group items ARTICLE-1 and ARTICLE-2; each reference to
ART-THREE, the group items ARTICLE-1, ARTICLE-2 and ARTICLE-3.
U41112-J-Z125-1-76 277
SIGN clause Data Division
SIGN clause
Function
The SIGN clause specifies the position and the mode of representation of the operational
sign for numeric data items.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
LEADING
[SIGN IS] [SEPARATE CHARACTER]
TRAILING
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The SIGN clause may be specified only for a numeric data description entry whose
PICTURE contains the character S, or a group item containing at least one such
numeric data description entry.
2. The numeric data description entries to which the SIGN clause applies must be
described, explicitly or implicitly, as USAGE IS DISPLAY.
3. If a SIGN clause is specified for either a group item or an elementary numeric item
subordinate to a group item for which a SIGN clause is also specified, the SIGN clause
of the subordinate group or numeric data item takes precedence for that item.
4. If the CODE-SET clause is specified, any signed numeric data description entries must
be described with the SIGN IS SEPARATE clause.
5. The SIGN clause specifies the position and the mode of representation of the opera-
tional sign. If entered for a group item, it applies to each numeric data description entry
subordinate to that group. The SIGN clause applies only to numeric data description
entries whose PICTURE contains the character S; the S indicates the presence, but not
the mode of representation, of the operational sign.
6. A numeric data description entry whose PICTURE contains the character S, but to
which no SIGN clause applies, has an operational sign, but neither the representation
nor, necessarily, the position of the operational sign is specified by the character S. (For
representation of the operational sign see "USAGE clause", page 285).
278 U41112-J-Z125-1-76
Data Division SIGN clause
General rules
U41112-J-Z125-1-76 279
SIGN clause Data Division
Example 7-25
IDENTIFICATION DIVISION.
PROGRAM-ID. SIGNEXPL.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 FIELD1 PIC S999 SIGN IS LEADING SEPARATE.
01 GROUP1 USAGE IS DISPLAY.
02 FIELD2 PIC S9(5) SIGN IS TRAILING SEPARATE.
02 FIELD3 PIC X(15).
02 FIELD4 PIC S99 SIGN IS LEADING.
01 FIELD5 PIC S9(9) SIGN IS TRAILING.
PROCEDURE DIVISION.
MAIN SECTION.
P1.
MOVE ZEROES TO FIELD1,FIELD2,FIELD3,FIELD4,FIELD5.
MOVE 3 TO FIELD4.
MOVE -2 TO FIELD5.
MOVE FIELD4 TO FIELD2.
MOVE FIELD2 TO FIELD3.
MOVE FIELD5 TO FIELD4.
DISPLAY "Field1 = " FIELD1 UPON T.
DISPLAY "Field2 = " FIELD2 UPON T.
DISPLAY "Field3 = " FIELD3 UPON T.
DISPLAY "Field4 = " FIELD4 UPON T.
DISPLAY "Field5 = " FIELD5 UPON T.
STOP RUN.
The contents of all fields after each MOVE statement are shown below.
After the first MOVE statement: :
FIELD1 decimal + 0 0 0
hexadecimal 4E F0 F0 F0
FIELD2 decimal 0 0 0 0 0 +
hexadecimal F0 F0 F0 F0 F0 4E
FIELD3 decimal 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
hexadecimal F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0
280 U41112-J-Z125-1-76
Data Division SIGN clause
FIELD4 decimal 0+ 0
hexadecimal C0 F0
FIELD5 decimal 0 0 0 0 0 0 0 0 0+
hexadecimal F0 F0 F0 F0 F0 F0 F0 F0 C0
hexadecimal C0 F3
hexadecimal F0 F0 F0 F0 F0 F0 F0 F0 D2
FIELD2 decimal 0 0 0 0 3 +
hexadecimal F0 F0 F0 F0 F3 4E
hexadecimal F0 F0 F0 F0 F3 40 40 40 40 40 40 40 40 40 40
hexadecimal D0 F2
U41112-J-Z125-1-76 281
SYNCHRONIZED clause Data Division
SYNCHRONIZED clause
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SYNCHRONIZED LEFT
SYNC RIGHT
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
282 U41112-J-Z125-1-76
Data Division SYNCHRONIZED clause
General rules
U41112-J-Z125-1-76 283
SYNCHRONIZED clause Data Division
Example 7-26
In the following example, A has to be aligned on a fullword boundary:
02 A PICTURE X(4).
02 B REDEFINES A PICTURE S9(9) USAGE BINARY SYNC.
Example 7-27
01 RECORD.
02 A.
03 G PICTURE X(5).
03 H PICTURE S9(9) SYNC USAGE BINARY.
02 B REDEFINES A.
03 I PICTURE X(12).
Here, elementary item G occupies 5 bytes, and elementary item H occupies 4 bytes.
The SYNCHRONIZED and USAGE clauses indicate that the elementary data item H is
aligned on fullword boundary; elementary item H is therefore preceded by 3 slack bytes. As
data item A as a whole occupies 12 bytes, the subject of the REDEFINES clause (data item
B) must also occupy 12 bytes.
284 U41112-J-Z125-1-76
Data Division USAGE clause
USAGE clause
Function
The USAGE clause specifies the format in which an elementary item is represented in the
computer’s internal storage.
Format
BINARY
COMPUTATIONAL
COMP
COMPUTATIONAL-1
COMP-1
COMPUTATIONAL-2
COMP-2
COMPUTATIONAL-3
[USAGE IS] COMP-3
COMPUTATIONAL-5
COMP-5
DISPLAY
INDEX
interface-name-1
OBJECT REFERENCE [FACTORY OF] ACTIVE-CLASS
[FACTORY OF] class-name-1[ONLY]
PACKED-DECIMAL
Syntax rules
U41112-J-Z125-1-76 285
USAGE clause Data Division
General rules
1. The USAGE clause may be written at any data description level. If it is specified at group
level, it applies to each elementary data item of the group.
2. The USAGE of an elementary item must not conflict with the USAGE of the group item
to which the elementary item belongs.
3. An elementary item described with USAGE BINARY, COMPUTATIONAL, COMPUTA-
TIONAL-1, COMPUTATIONAL-2, COMPUTATIONAL-3, COMPUTATIONAL-5 or
PACKED DECIMAL represents a value for use in arithmetic operations and must
therefore be numeric. If any of these phrases is specified for a group item, it refers
only to the elementary items of that group; the group item itself must not be used in
arithmetic operations.
4. The USAGE clause does not affect the use of the data item, although the specifications
for some statements in the Procedure Division may restrict the USAGE clause of the
operands referred to.
5. The internal representation of the numeric data items is shown in Table 7-8.
DISPLAY phrase
Syntax rules
1. The type of elementary item for which the DISPLAY phrase is written is defined by the
character-string in the PICTURE clause.
2. External decimal data items are described below under general rule 1, external floating-
point data items under general rule 2. In addition, all data items are also described
under "PICTURE clause" (page 256).
3. The DISPLAY phrase specifies that the data item is to be stored in standard data format;
that is, in character form, with one character per 8-bit byte. Each character position of
the data item is represented by one byte, as specified in the appropriate character-
string of the PICTURE clause.
General rules
1. External decimal data items are internally represented as follows:
Each digit of a number is represented by a single byte. The four high-order bits of each
byte are the zone portion. The zone portion of the low-order or high-order byte (depend-
ing on the SIGN clause) represents the sign of the number, assuming that a sign exists.
The four low-order bits contain the value of the digit.
The maximum length of an external decimal item is 18 digits.
286 U41112-J-Z125-1-76
Data Division USAGE clause
2. External floating-point items consist of a mantissa, which represents the decimal part
of the number, and an exponent with the base 10
The value of an external floating-point item is calculated by multiplying the mantissa by
10 to the power of exponent.
The magnitude of a number represented by a floating-point item must be greater than
5.4 * 10-79 and must not exceed 7.2 * 1075.
An external floating-point item, when used as a numeric operand, is checked at object
time and is converted into an internal floating-point item. It is used in this form in arith-
metic operations (see notes on COMPUTATIONAL-1 and COMPUTATIONAL-2).
Example 7-28
Data formats for USAGE IS DISPLAY
Data category Value PICTURE Internal representation*)
description
alphabetic ABCD AAAA. C1 C2 C3 C4
alphanumeric A1B2 XXXX. C1 F1 C2 F2
alphanumeric 123AB XXBXXX. F1 F2 40 F3 C1 C2
edited
numeric
external decimal +1234 9999 F1 F2 F3 F4
+6879 S9999 F6 F8 F7 C9
-6879 S9999 F6 F8 F7 D9
external 6879 +99.99E-99 4E F6 F8 4B F7 F9 C5 40 F0 F2
floating-point
.6879 +99.99E-99 4E F6 F8 4B F7 F9 C5 60 F0 F2
*)
Each box represents one byte.
U41112-J-Z125-1-76 287
USAGE clause Data Division
Syntax rules
General rules
1. The storage requirements for binary items vary depending on the number of decimal
digits specified in the PICTURE clause, as follows:
Decimal digits in Bytes required in Alignment
the PICTURE clause computer storage
1-4 2 halfword
5-9 4 fullword
10-18 8 fullword
2. The leftmost bit of a binary data item is the operational sign. The remaining bits
represent the value.
288 U41112-J-Z125-1-76
Data Division USAGE clause
COMPUTATIONAL-1 phrase
Syntax rules
1. This phrase specifies internal floating-point items, which are equivalent to external float-
ing-point items in terms of capacity and application (see "Data categories", page 74).
2. For a COMPUTATIONAL-1 data item, the PICTURE clause is prohibited.
3. The COMPUTATIONAL-1 phrase indicates that a data item is stored in single-precision
floating-point format.
4. A COMPUTATIONAL-1 data item has a length of 4 bytes and is aligned on a fullword
boundary if the SYNCHRONIZED clause is specified.
General rules
For examples of the COMPUTATIONAL-1 phrase see Table 7-8, "Internal representation of
numeric data items" (page 292).
U41112-J-Z125-1-76 289
USAGE clause Data Division
COMPUTATIONAL-2 phrase
Syntax rules
1. This phrase specifies internal floating-point items, which are equivalent to external float-
ing-point items in terms of capacity and application (see "Data categories", page 74).
2. For a COMPUTATIONAL-2 item, the PICTURE clause is prohibited.
3. The COMPUTATIONAL-2 phrase indicates that a data item is to be stored in double-
precision floating-point format.
4. A COMPUTATIONAL-2 item has a length of 8 bytes and is aligned on a doubleword
boundary if the SYNCHRONIZED clause is specified.
General rules
For examples of the COMPUTATIONAL-2 phrase see Table 7-8, "Internal representation of
numeric data items" (page 292).
290 U41112-J-Z125-1-76
Data Division USAGE clause
Syntax rules
General rule
Internal decimal data items are represented by 2 digits per byte; the sign is contained
in the four low-order bits of the low-value byte.
For internal decimal data items whose PICTURE clause contains no S, the represen-
tation of the absolute value corresponds to the number.
U41112-J-Z125-1-76 291
USAGE clause Data Division
Format PICTURE USAGE and Value in Value in internal Bytes Conversion Alignment
clause SIGN phrase external representation 4) required for arithmetic if SYNC
represen- operation is specified
tation Alignment
External 9999 DISPLAY 1234 F1F2F3F4 1 byte/digit Yes, in order to
decimal conform to
(zoned) format of other
operands or
COMP-3 or
PACKED-
DECIMAL
292 U41112-J-Z125-1-76
Data Division USAGE clause
Format PICTURE USAGE and Value in Value in internal Bytes Conversion Alignment
clause SIGN phrase external representation4) required for arithmetic if SYNC
representa- operation is specified
tion alignment
Binary S9999 BINARY +1234 04D2 2 bytes for No, except
or 1-4 digits when used in
COMP mixed-form
or 4 bytes for computations
COMP-5 5-9 digits to maintain
common
8 bytes for formats, or if
10-18 COMP-3 or
digits PACKED-
DECIMAL
would be more
advantageous.
1)
One byte per digit, except for the low-order byte which contains the sign in the first halfbyte and
the last digit in the second halfbyte.
2)
Mode of sign representation:
F = non-printable plus sign (treated as an absolute value)
C = internal equivalent of plus sign
D = internal equivalent of minus sign.
3)
See rules for binary data items.
4)
Each box represents one byte.
U41112-J-Z125-1-76 293
USAGE clause Data Division
INDEX phrase
An elementary item described with USAGE IS INDEX is called an index data item. This is
a data item (not necessarily associated with any table) which may be used to save values
of index-names for future reference. An index data item is assigned the value of an index
by the SET statement. The value of an index data item is not an occurrence number.
General rules
1. The USAGE clause with INDEX phrase may be written at any level. If a group item is
described with USAGE IS INDEX, the elementary items in the group are all index data
items; the group itself is not an index data item.
2. An index data item can be referenced directly only in a SEARCH statement, in a SET
statement, in a relation condition, in the USING phrase of the Procedure Division
header, or in the USING phrase of a CALL statement.
3. An index data item cannot be a conditional variable.
4. An index data item may be part of a group which is referenced in a MOVE statement or
an input/output statement. When such statements are executed, however, the contents
of the index data item are not converted.
5. SYNCHRONIZED, JUSTIFIED, PICTURE, BLANK WHEN ZERO or VALUE clauses
cannot be used to describe group items or elementary items described with USAGE IS
INDEX.
However, the compiler allows the SYNCHRONIZED clause to be used with the USAGE
IS INDEX clause.
Example 7-29
02 ALPHA PICTURE X(9) OCCURS 5 INDEXED BY A-NAME.
...
77 A-INDEX USAGE IS INDEX.
...
SET A-NAME TO 3.
...
SET A-INDEX TO A-NAME.
Here the index data item A-INDEX is set to the current value of the index-name A-NAME,
i.e. the occurrence number (3) minus 1, multiplied by the length of the entry (9) = 18.
294 U41112-J-Z125-1-76
Data Division USAGE clause
Syntax rules
1. The USAGE OBJECT REFERENCE clause should only be specified on level 01.
Deviations are permitted as an extension.
2. The USAGE OBJECT REFERENCE clause may not be specified on the group level in
data definitions.
3. The USAGE OBJECT REFERENCE clause may not be specified in the FILE
SECTION.
4. The ACTIVE-CLASS phrase may be specified only in a factory definition, an object
definition, or a method definition.
5. The USAGE OBJECT REFERENCE clause may not be specified in structures in which
the EXTERNAL or DYNAMIC clauses are used on level 01.
6. No VALUE, BLANK WHEN ZERO and JUSTIFIED clauses may be specified for data
items defined with a USAGE OBJECT REFERENCE clause.
7. Data items to which a USAGE OBJECT REFERENCE clause applies may have neither
a REDEFINES clause, nor be referenced directly from any such clause. In addition,
these data items may not be indirectly contained in any redefined or redefining
structure.
8. Data items and structures to which a USAGE OBJECT REFERENCE clause applies
may not be renamed (with a RENAMES clause).
9. For groups that have defined data items with a USAGE OBJECT REFERENCE clause,
no VALUE clause may be specified on the group level.
10. No condition name (level 88) may be specified for data items with a USAGE OBJECT
REFERENCE clause.
11. The data item specified in the KEY phrase of an OCCURS clause may not be defined
with a USAGE OBJECT REFERENCE clause.
12. The ACTIVE-CLASS phrase may be specified only in a factory definition, an object
definition, or a method definition.
13. ACTIVE-CLASS may be used in LINKAGE SECTION only for data items with the
RETURNING phrase.
U41112-J-Z125-1-76 295
USAGE clause Data Division
General rules
296 U41112-J-Z125-1-76
Data Division VALUE clause
VALUE clause
Function
The VALUE clause defines the initial value of a data item in the WORKING-STORAGE and
LOCAL-STORAGE SECTIONs, the value of a printable data item of the REPORT SEC-
TION, or the value or range of values associated with a condition-name.
Format 1 of the VALUE clause is specified to define the initial value of a data item in
the WORKING-STORAGE and LOCAL-STORAGE SECTIONs or the value
of a printable data item in the REPORT SECTION.
Format 2 of the VALUE clause is specified to define the value or range of values
associated with a condition-name. The optional addition "WHEN SET TO
FALSE IS LITERAL-4" defines the value to which the related data item is set
when the "SET condition-name TO FALSE" statement is executed.
Format 3 serves to initialize table elements.
In the FILE SECTION and in the LINKAGE SECTION the value clause may be used only in
connection with level-number 88 (format 2 of the VALUE clause).
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
[VALUE IS literal]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 297
VALUE clause Data Division
6. The VALUE clause must not be specified for a group item containing subordinate items
with descriptions that include JUSTIFIED, SYNCHRONIZED or USAGE (other than
USAGE IS DISPLAY).
298 U41112-J-Z125-1-76
Data Division VALUE clause
9. Format 1 of the VALUE clause must not be specified in the FILE SECTION and
LINKAGE SECTION.
10. A data item of the class “object“ cannot have a VALUE clause; it is always initialized with
NULL (undefined).
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
VALUE IS THRU
literal-1 literal-2 ...
VALUES ARE THROUGH
1. A format 2 VALUE clause may be used only in connection with condition-names (level-
number 88).
2. Level number 88 applies to declarations of condition-names which are associated with
a conditional variable; these declarations are called condition-name declarations. A
conditional variable is a data item which is followed by one or more condition-name dec-
larations. A condition-name assigns a name to a value or a range of values which a con-
ditional variable may assume at run time. A condition-name can then be "true" or "false"
during program execution. A condition-name is not a data item and requires no storage
space (see the description of the use of condition-names under the heading "Condition-
name conditions", page 320).
3. The specified literals may be replaced by figurative constants.
4. All numeric literals must have a length which is within the number of positions specified
by the PICTURE clause for the related elementary item (conditional variable), and must
not have a value which would require truncation of non-zero digits.
5. Non-numeric literals must not exceed the size specified in the PICTURE clause for the
related elementary item (conditional variable).
6. A signed numeric literal must be associated with a PICTURE clause which provides a
signed numeric character-string.
U41112-J-Z125-1-76 299
VALUE clause Data Division
1. The VALUE clause is prohibited for external floating-point data items and for data of the
class “object“.
2. The VALUE clause must not be specified for items whose size, whether explicitly or
implicitly, is variable.
3. The VALUE clause must not conflict with other clauses in the data description of an item
or in the data description within the hierarchy of an item. The following rules are appli-
cable:
4. If the category of the item being described is numeric, all literals in the VALUE clause
must be numeric literals.
5. If the category of the item being described is alphabetic or alphanumeric, all literals in
the VALUE clause must be non-numeric literals. The value is aligned in the data item
as if the data item had been described as alphanumeric.
6. Format 2 of the VALUE clause is only allowed in the FILE, WORKING-STORAGE,
LOCAL-STORAGE and LINKAGE SECTIONs. It must not be specified in the REPORT
SECTION.
7. The specification of FALSE in the VALUE clause is relevant only when the condition-
name is used in a SET-TO-FALSE statement.
300 U41112-J-Z125-1-76
Data Division VALUE clause
U41112-J-Z125-1-76 301
VALUE clause Data Division
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
VALUE IS
[FROM ({subscript-1}...)]
VALUES ARE
integer-1 TIMES
{literal-2}... REPEATED ...
TO END
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. Format 3 of the VALUE clause must be used only in connection with Working-Storage
table elements.
2. All numeric literals in a VALUE clause of an item must have a value which is within the
range of values indicated by the associated PICTURE clause, and must not have a
value which would require truncation of non-zero digits.
3. Non-numeric literals in a VALUE clause of an item must not exceed the size indicated
by the associated PICTURE clause.
4. If the VALUE clause is used in an entry at the group level, the literal must be a figurative
constant or a non-numeric literal, and the group area is initialized without consideration
for the individual elementary or group items contained within this group. The VALUE
clause must not be stated at the subordinate levels within this group.
5. The VALUE clause must not be specified for a group item containing items subordinate
to it with descriptions including JUSTIFIED or USAGE (other than USAGE IS
DISPLAY).
6. When format 3 is specified, the data description entry must contain an OCCURS clause
or be subordinate to a data description entry that contains an OCCURS clause.
7. Subscript-1 must be a numeric literal that is an integer. If all subscripts have the value
1, no subscripts need be specified; otherwise, all subscripts required to reference an
individual element in a table must be specified.
8. The number of table elements to be initialized is determined as follows:
a) If integer-1 is not specified, it is the number of repetitions of literal-2.
b) If integer-1 is specified, it is the number of repetitions of literal-2 times integer-1.
The number of table elements to be initialized must not exceed the maximum number
of occurrences in the table from the point of reference to the end of the table.
9. If multiple format 3 VALUE clauses are specified in an entry:
a) The TO END phrase may be specified only once.
302 U41112-J-Z125-1-76
Data Division VALUE clause
General rules
U41112-J-Z125-1-76 303
VALUE clause Data Division
Example 7-34
IDENTIFICATION DIVISION.
PROGRAM-ID. TAB.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
*****
WORKING-STORAGE SECTION.
01 FIELD1.
02 A OCCURS 20.
03 B OCCURS 4.
49 PIC X(01)
VALUE FROM (5 2) IS "1" "2" "3"
REPEATED 4.
*
01 FIELD2.
02 Z PIC 99.
02 A OCCURS 1 TO 78 DEPENDING ON Z.
49 PIC X VALUE "x".
*
01 FIELD3.
02 A OCCURS 20
VALUE FROM (1) IS "ab" "c"
REPEATED 10 TIMES.
03 B OCCURS 4.
49 PIC X.
PROCEDURE DIVISION.
MAIN SECTION.
P1.
MOVE 78 TO Z.
DISPLAY FIELD1 UPON T.
DISPLAY FIELD2 UPON T.
DISPLAY FIELD3 UPON T.
STOP RUN.
304 U41112-J-Z125-1-76
Data Division VALUE clause
U41112-J-Z125-1-76 305
VALUE clause Data Division
306 U41112-J-Z125-1-76
8 Procedure Division
U41112-J-Z125-1-76 307
General description Procedure Division
The execution of the source unit begins with the first Procedure Division statement following
the declaratives. Statements are then executed in the order in which they are presented for
compilation, except where the rules for a given statement indicate some other order.
If program segmentation is used, the programmer must divide the entire Procedure Division
into named sections. Program segmentation is discussed in the chapter 9, "Segmentation".
Structure
General format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
DECLARATIVES.
{section-name SECTION.
USE statement.
[paragraph-name.
[sentence]...]...}...
END DECLARATIVES.
[paragraph-name.
[sentence]...]...}...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
[sentence]...
[paragraph-name.
[sentence]...]...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
308 U41112-J-Z125-1-76
Procedure Division General description
Format 3
PROCEDURE DIVISION.
[{ method-definition}...]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
General rules
U41112-J-Z125-1-76 309
General description Procedure Division
310 U41112-J-Z125-1-76
Procedure Division Procedure Division header
Function
In a called program (subroutine) or method, the Procedure Division header determines the
standard entry point. Optionally, data-names may be specified if data is transferred from the
calling program as a parameter.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
PROCEDURE DIVISION [USING-phrase][RETURNING data-name-2].
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
where the USING phrase is defined as follows:
Format 2
Syntax rules
1. The USING phrase may be written only if the program is called by a CALL
statement or a method by an INVOKE statement and the CALL /INVOKE statement in
the calling source unit includes a USING phrase. For calls as subprograms from
“programs written in other languages“, see the CRTE manual [2].
2. The RETURNING phrase may only be written if the program is called by a CALL
statement or a method by an INVOKE statement and the CALL /INVOKE statement in
the calling source unit includes a RETURNING phrase.
3. Each data-name supplied in the USING or RETURNING phrase of the Procedure
Division header must be defined in the LINKAGE SECTION of the source unit
containing this header and must have the level number 01 or 77.
The data description of data-name-1 or data-name-2 must not contain a REDEFINES
clause.
U41112-J-Z125-1-76 311
Procedure Division header Procedure Division
4. Each data-name-1 defined in the BY VALUE phrase may identify only one data item of
the class numeric, alphanumeric or object.
5. The RETURNING phrase may be specified in a method, program or program prototype
definition.
6. data-name-2 must not be identical with data-name-1.
7. data-name-1 may not be declared with USAGE [FACTORY OF] ACTIVE-CLASS.
General rules
1. The standard entry point within a called program or method is determined by the
Procedure Division header. In order to transfer control from a calling source unit to that
entry point, the calling source unit must contain a CALL or INVOKE statement. The
name supplied in this CALL or INVOKE statement must be the same as the name
specified in the PROGRAM-ID or METHOD-ID paragraph of the Identification Division
of the called program or method.
2. The USING phrase, when specified, has the effect that data-name-1 of the Procedure
Division header in the called program/method and identifier-2 or identifier-5 in the
USING phrase of the CALL or INVOKE statement in the calling source unit refer to the
same set of data, which is equally available both to the called and the calling source
unit. It is not necessary for the names to be identical.
A data-name may appear only once in the Procedure Division header of the called
program or method, whereas the same identifier may occur several times in the USING
phrase of the CALL or INVOKE statement.
3. In the called program/method, the operands of the USING phrase are treated according
to the data description supplied in the LINKAGE SECTION.
4. A source unit may run both as a called source unit and as a calling source unit at
execution time. An exception to this is the first source unit (called for execution by the
system); it must not contain a USING phrase in the Procedure Division header.
For notes on passing parameters, see the CRTE manual [2].
312 U41112-J-Z125-1-76
Procedure Division Procedure Division header
Example 8-1
Calling program:
IDENTIFICATION DIVISION
PROGRAM-ID. A-PROG.
...
WORKING-STORAGE SECTION.
01 ALPHA ...
01 BETA ...
77 GAMMA ...
...
PROCEDURE DIVISION.
...
CALL "B-PROG" USING ALPHA BETA GAMMA. LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LU
...
Called program:
IDENTIFICATION DIVISION.
PROGRAM-ID. B-PROG.
... OURLR2LR2LR2LR2LR2LR2 (1)
LINKAGE SECTION.
01 DELTA ...
01 EPSILON ...
77 THETA ...
...
PROCEDURE DIVISION USING DELTA EPSILON THETA. LR2LR2LR2LR2LR2LR2LR2OL
...
(1) The parameters of the USING phrases relate to one another in pairs, i.e. ALPHA
and DELTA, BETA and EPSILON, GAMMA and THETA respectively each relate to
the same data item.
U41112-J-Z125-1-76 313
DECLARATIVES Procedure Division
8.3 DECLARATIVES
Function
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
DECLARATIVES.
{section-name SECTION.
USE statement.
[paragraph-name.
[sentence]...]...}...
END DECLARATIVES.
Syntax rules
314 U41112-J-Z125-1-76
Procedure Division DECLARATIVES
3. The USE statement defines the type of declarative procedures according to the three
functions listed above. The formats of the USE statement are described in detail starting
on page 536 and page 686 ("Report Writer": USE BEFORE REPORTING statement).
4. The USE statement itself is never executed; rather, it defines the conditions for execut-
ing the declarative procedures specified in the associated section.
U41112-J-Z125-1-76 315
Arithmetic expressions PROCEDURE DIVISION
Function
Format
Arithmetic operators
As defined by the standard, a binary arithmetic operator must always be preceded and
followed by a space.
However, the compiler allows all these operators, with the exception of the addition and
subtraction operators, to be used without the enclosing spaces. The subtraction operator
(-) must always be preceded and followed by a space.
The addition operator (+) must be followed by a space if it occurs before an unsigned
numeric literal. Both operators may be immediately preceded and followed by a
parenthesis.
316 U41112-J-Z125-1-76
PROCEDURE DIVISION Arithmetic expressions
1. An arithmetic expression may begin only with a left parenthesis, a unary +, a unary -,
an identifier, or a literal; and it may end only with a right parenthesis or a variable
(identifier or literal).
2. There must be a one-to-one correspondence between left and right parentheses in an
arithmetic expression.
3. Table 8-1 shows the permissible combinations of operators, variables and parentheses
in arithmetic expressions.
Second symbol
identifier, literal arithmetic unary ( )
First symbol operator operator
identifier, literal - P - - P
arithmetic operator P - P P -
unary operator P - - P -
( P - P P -
) - P - - P
Table 8-1 Valid symbol combinations in arithmetic expressions
P indicates that the two symbols may appear consecutively (permissible pair).
- indicates that the two symbols must not appear consecutively (invalid pair).
U41112-J-Z125-1-76 317
Arithmetic expressions PROCEDURE DIVISION
General rules
1. Parentheses are used either to eliminate ambiguities in logic where consecutive opera-
tions of the same hierarchical level appear, or to modify the normal hierarchical
sequence of execution.
2. Arithmetic expressions are used in arithmetic and conditional statements.
Example 8-2
Expression: A + (B - C) * D
Evaluation: 1. B - C (denote result by x)
2. x * D (denote result by y)
3. A + y (final result)
Example 8-3
Expression: A + ((B / C) + (D ** E) * F) - G
Evaluation: 1. B/C (denote result by z)
2. D ** E (denote result by x)
3. x*F (denote result by y)
4. z+y (denote result by a)
5. A+a (denote result by b)
6. b-G (final result)
318 U41112-J-Z125-1-76
PROCEDURE DIVISION Conditions
8.5 Conditions
General description
A condition enables the program to select between two alternative paths of execution,
depending upon the truth value of a test. There are two categories of conditions: simple
conditions and complex conditions.
Simple conditions:
a) Condition-name condition
b) Class condition
c) Switch-status condition
d) Condition-name condition
e) Sign condition
Each of these conditions may be enclosed in parentheses.
Complex conditions:
Complex conditions are formed by combining simple conditions and/or complex conditions
with the logical operators AND and OR or by negating these conditions with the logical
operator NOT.
U41112-J-Z125-1-76 319
Condition-name condition PROCEDURE DIVISION
Condition-name condition
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
condition-name
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
Example 8-4
02 PAY-CLASS PICTURE 9.
88 HOURLY VALUE 1.
88 WEEKLY VALUE 2.
88 MONTHLY VALUE 3.
...
IF HOURLY GO TO HOUR-PROCEDURE.
Here, PAY-CLASS is a conditional variable, and HOURLY, WEEKLY, and MONTHLY are
condition-names. If the current value of PAY-CLASS is 1, the result of the test in the IF
statement is true. Otherwise, the result is false.
320 U41112-J-Z125-1-76
PROCEDURE DIVISION Class condition
As noted above, the condition-name is a shorthand form of the relation condition. The
following statement, which contains a relation condition, is equivalent to the above IF
statement:
IF PAY-CLASS = 1 GO TO HOUR-PROZEDUR.
Class condition
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
NUMERIC
ALPHABETIC
identifier IS [NOT] ALPHABETIC-LOWER
ALPHABETIC-UPPER
class-name
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. identifier must be a data item described implicitly or explicitly with USAGE IS DISPLAY
or COMPUTATIONAL-3 or PACKED-DECIMAL.
2. identifier specifies the data item to be tested.
3. NUMERIC, ALPHABETIC, ALPHABETIC-LOWER, ALPHABETIC-UPPER and class-
name (possibly negated by NOT) indicate which characteristic is to be tested.
4. identifier is treated as numeric when its contents consist of a combination of the digits
0 through 9 (with or without sign).
5. identifier is treated as alphabetic when its contents consist of any combination of the
characters A through Z and/or a through z and the space character.
6. identifier is treated as alphabetic-lower when its contents consist of a combination of the
lowercase letters a through z and the space character.
7. identifier is treated as alphabetic-upper when its contents consist of a combination of
the uppercase letters A through Z and the space character.
U41112-J-Z125-1-76 321
Class condition PROCEDURE DIVISION
322 U41112-J-Z125-1-76
PROCEDURE DIVISION Switch-status condition
Switch-status condition
Function
The switch-status condition tests the setting of an implementor-defined user or task switch.
The implementor-name and the ON or OFF value associated with the condition must
appear in the SPECIAL-NAMES paragraph of the Environment Division.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
condition-name
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The result of the test is true if the switch is set to the position corresponding to condition-
name.
2. The status of a switch can be changed by means of a format 3 SET statement
(see "SET statement", format 3, page 498).
U41112-J-Z125-1-76 323
Relation condition PROCEDURE DIVISION
Relation condition
Function
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The first operand of a relational condition is called the subject of the condition, and the
second operand is called the object of the condition. The operands must be written
according to the following rules:
a) The subject and object must not both be literals.
b) The subject and object must have the same data format, except when two numeric
operands are compared.
324 U41112-J-Z125-1-76
PROCEDURE DIVISION Relation condition
2. Relational-operator must be one of the operators listed in Table 8-3. It must be preceded
and followed by a space.
Operator Meaning
IS [NOT] GREATER THAN [Not] greater than
IS [NOT] >
IS [NOT] LESS THAN [Not] less than
IS [NOT] <
IS [NOT] EQUAL TO [Not] equal to
IS [NOT] =
IS GREATER THAN OR EQUAL TO Greater than or equal to
IS > =
IS LESS THAN OR EQUAL TO Less than or equal to
IS <=
Table 8-3 Relational operators
The special symbols <, > and = are not underlined in could be mistaken for other
symbols.
3. The relational operator specifies the type of comparison to be made in a relation test.
4. The following rules describe comparisons between numeric operands, comparisons
between non-numeric operands, and comparisons between index names and/or index
data items. In compare operations, a group item is treated as a non-numeric data item.
Example 8-5
-50 is less than +5
+75 is greater than +5
-100 is less than -10
-0 is equal to +0
U41112-J-Z125-1-76 325
Relation condition PROCEDURE DIVISION
Example 8-6
In the following examples the binary collating sequence of the EBCDIC character
set is assumed, i.e. either PROGRAM COLLATING SEQUENCE has been omitted
or PROGRAM COLLATING SEQUENCE IS NATIVE has been specified.
326 U41112-J-Z125-1-76
PROCEDURE DIVISION Relation condition
Relationship Reason
"123" IS GREATER 1 (the 1st character in the 1st operand) is greater than A (the 1st
THAN "ABC" character in the 2nd operand).
"SMYTH" IS GREATER Y (the 3rd character in the 1st operand) is greater than I (the 3rd
THAN "SMITH" character in the 2nd operand).
"ABC" IS EQUAL to All characters compare equally.
"ABC"
Example 8-7
Relationship Reason
"CAR" IS GREATER C (the 1st character of the 1st operand) is greater than A (the
THEN "AUTO" 1st character of the 2nd operand).
"SMITH" is less than SMITH is space-filled as follows: SMITHË.
"SMITHY" The space (sixth character in first operand) is less than Y (sixth
character in second operand).
U41112-J-Z125-1-76 327
Relation condition PROCEDURE DIVISION
Second operand
Index Index data item Data-name Numeric literal
First operand (integer only) (integer only)
Index Compare occur- Compare Compare occur- Compare occur-
rence number without rence number with rence number with
conversion numeric integer of literal
data-name
Index data item Compare without Compare Illegal Illegal
conversion without
conversion
Data-name Compare occur- Illegal Compare numbers Compare numbers
(integer only) rence number with
numeric integer of
data-name
Numeric literal Compare occur- Illegal Compare numbers Illegal
(integer only) rence number with
literal
Table 8-4 Validity of comparisons using indices and index data items
328 U41112-J-Z125-1-76
PROCEDURE DIVISION Relation condition
U41112-J-Z125-1-76 329
Sign condition PROCEDURE DIVISION
Sign condition
Function
The sign condition determines whether or not the algebraic value of a numeric operand (that
is, an item described as numeric) is less than, greater than, or equal to zero.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier POSITIVE
IS [NOT] NEGATIVE
arithmetic-expression ZERO
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
330 U41112-J-Z125-1-76
PROCEDURE DIVISION OMITTED - ARGUMENT condition
Format
Syntax rules
1. data-name-1 must be defined in the LINKAGE SECTION with level number 01 or 77.
The data description entry for data-name-1 must not contain a REDEFINES clause.
2. data-name-1 must be specified in the USING phrase of the Procedure Division header
of the source element in which this condition is contained.
General rules
U41112-J-Z125-1-76 331
Complex conditions PROCEDURE DIVISION
Complex conditions
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
AND AND
condition [NOT] condition [NOT] condition ...
OR OR
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
332 U41112-J-Z125-1-76
PROCEDURE DIVISION Complex conditions
6. The ways in which conditions and logical operators may be combined are shown in
Table 8-7.
Second symbol
simple-condition OR AND NOT ( )
First symbol
simple-condition - P P - - P
OR P - - P P -
AND P - - P P -
NOT P - - - P -
( P - - P P -
) - P P - - P
1
Table 8-7 Valid symbol pairs of conditions and logical operators
1)
P indicates that the two symbols may be used as a pair.
U41112-J-Z125-1-76 333
Complex conditions PROCEDURE DIVISION
Example 8-8
Consider this expression:
A IS NOT GREATER THAN B OR A + B IS EQUAL TO C AND D IS POSITIVE
This expression is evaluated as if the following parentheses had been supplied:
(A IS NOT GREATER THAN B) OR (((A+B) IS EQUAL TO C) AND (D IS
POSITIVE)).
Example 8-9
Table 8-8 shows some of the relationships between logical operators and simple
conditions.
Operands Value of A 1) True False True False
Value of B 1) True True False False
Combinations NOT A False True False True
A AND B True False False False
A OR B True True True False
NOT (A AND B) False True True True
NOT A AND B False True False False
NOT (A OR B) False False False True
NOT A OR B True True False True
Table 8-8 Use of logical operators
1)
A and B represent simple conditions.
334 U41112-J-Z125-1-76
PROCEDURE DIVISION Implied subjects and relational operators
Function
When a complex condition is written without parentheses, any relation condition except the
first may be abbreviated as follows:
the subject of the relation condition may be omitted.
the subject and relational operator of the relation condition may be omitted.
However, the compiler permits the use of parentheses in relation subjects and relation
objects which are arithmetic expressions, and in order to affect the sequence in which the
logical operators AND and OR are evaluated.
Syntax rules
1. Within a sequence of relation conditions, both forms of abbreviation may be used. The
effect of using such abbreviations is the same as if the omitted subject were replaced
by the most recently stated subject, or the omitted relational-operator were replaced by
the most recently stated relational-operator.
2. NOT in an abbreviated complex condition is interpreted as follows:
a) If the word NOT is followed by one of the relational operators
GREATER, >, LESS, <, EQUAL, =,
then NOT is considered as part of the relevant relational operator.
b) If the word NOT is followed by one of the other relational operators, then NOT is
considered as a logical operator to negate the relevant relation condition.
3. A NOT appearing in front of a left parenthesis remains in effect up to the associated
right parenthesis (see example 8-14).
U41112-J-Z125-1-76 335
Implied subjects and relational operators PROCEDURE DIVISION
Example 8-10
Implied subjects
IF X = Y OR > W OR < Z
is equivalent to
IF X = Y OR > W OR X < Z
In this example, the implied subject is the most recently stated subject, i.e. X.
Example 8-11
Implied subjects and relational operators
IF X = Y OR Z OR W
is equivalent to
IF X = Y OR X = Z OR X = W
In this example, the implied subject is the most recently stated subject, i.e. X; and the
implied relational operator is the most recently stated operator, i.e. =.
Example 8-12
Implied subject, and implied subject with relational operator
X = Y AND > Z OR A
is equivalent to
X = Y AND X > Z OR X > A
Here, since X is the only stated subject, it is substituted in both simple conditions. The most
recently stated operator, >, is substituted in the third simple condition.
Example 8-13
A > B AND NOT > C OR D
is equivalent to
A > B AND NOT A > C OR NOT A > D
or
((A > B) AND (A NOT > C)) OR (A NOT > D)
336 U41112-J-Z125-1-76
PROCEDURE DIVISION Implied subjects and relational operators
Example 8-14
A NOT = "A" AND NOT ("B" OR NOT "C")
is equivalent to
A NOT = "A" AND NOT (A NOT = "B" OR NOT A NOT = "C")
or
A NOT = "A" AND A = "B" AND A NOT = "C"
or
A = "B".
U41112-J-Z125-1-76 337
Arithmetic statements PROCEDURE DIVISION
Syntax rules
1. All identifiers used in arithmetic statements must be defined as numeric data in the Data
Division.
2. All literals used in arithmetic statements must be numeric. They may be floating-point
literals.
3. The maximum size of any operand (identifier or literal) is 18 decimal digits.
4. The maximum size of all results after decimal point alignment is 18 decimal digits.
5. When several operands occurring in an arithmetic statement are "overlapped" in a
hypothetical data item, aligned on their decimal points, then the maximum size of the
data item required (i.e. the composite of operands) is 18 decimal digits (see "ADD state-
ment", page 353 and "SUBTRACT statement", page 528).
6. A maximum of 100 operands may be supplied in one arithmetic statement or arithmetic
expression. The number of right and left parentheses () must not exceed 250.
7. The format of any data item involved in computations (for example, an addend, a
subtrahend, or a multiplier) cannot contain editing symbols. Operational signs and
implied decimal points are not considered to be editing symbols.
8. Identifiers which are used only to receive the result of an arithmetic statement (for
example, the identifier used with the GIVING phrase) may be numeric-edited items (see
"GIVING phrase", page 343).
9. Condition-names cannot appear as operands.
General rules
1. The operands need not have the same data description; any necessary conversion and
decimal point alignment is supplied throughout the calculation (see "MOVE statement",
Rules for numeric moves, page 440).
2. If the sending or receiving items of an arithmetic statement, or of an INSPECT, MOVE,
SET, STRING or UNSTRING statement, share the same storage area (that is, if the
operands overlap), the result of the execution of such a statement is undefined.
3. The results are also undefined if the identifiers contain any data other than numeric data
at object time.
Note
If the input operands for an arithmetic statement do not contain valid numeric data,
a data error will occur at object time.
338 U41112-J-Z125-1-76
PROCEDURE DIVISION Arithmetic statements
U41112-J-Z125-1-76 339
Arithmetic statements PROCEDURE DIVISION
340 U41112-J-Z125-1-76
PROCEDURE DIVISION CORRESPONDING phrase
CORRESPONDING phrase
The CORRESPONDING phrase enables the user to write one statement to perform opera-
tions on several elementary items of the same name in different groups.
1. The word CORRESPONDING may be abbreviated as CORR.
2. All identifiers must refer to group items.
3. The descriptions of the identifiers must not contain data items with level numbers 66,
77, or 88, or the USAGE IS INDEX clause.
4. Pairs of data items correspond if the following conditions exist; all other items are
ignored for the operation:
5. Both data items have the same name and qualification, up to, but not necessarily
including, identifier-1 and identifier-2.
6. None of the data items is declared with FILLER.
7. In case of MOVE CORRESPONDING, at least one of the data items is an elementary
item; both data items are elementary items in case of ADD CORRESPONDING or
SUBTRACT CORRESPONDING.
8. A data item that is subordinate to identifier-1 or identifier-2 and which is defined with a
REDEFINES, RENAMES, OCCURS, or USAGE IS INDEX clause or is of class “object”
will be ignored; any items which are subordinate to such items are also ignored. How-
ever, identifier-1 or identifier-2 may be defined with REDEFINES or OCCURS clauses
or be subordinate to data items defined with REDEFINES or OCCURS clauses.
9. The CORRESPONDING phrase cannot be applied to identifiers that are subjected to
reference modification.
Example 8-15
In this example, elementary items in EMPLOYEE-RECORD are subtracted from corre-
sponding items in PAYROLL-CHECK.
Procedure Division statement:
SUBTRACT CORRESPONDING EMPLOYEE-RECORD FROM PAYROLL-CHECK.
U41112-J-Z125-1-76 341
CORRESPONDING phrase PROCEDURE DIVISION
The following items are not subtracted, for the reasons stated:
Item Reason
EMPLOYEE-NUMBER Item not elementary item in either group
PLANT-LOCATION OF EMPLOYEE- Name does not appear under PAYROLL-CHECK
NUMBER OF EMPLOYEE-RECORD
CLOCK-NUMBER OF EMPLOYEE-NUMBER Item is not elementary in one group
SHIFT-CODE OF CLOCK-NUMBER OF Qualification is not identical in PAYROLL-CHECK
EMPLOYEE-NUMBER OF EMPLOYEE-RECORD
CONTROL-NUMBER OF CLOCK-NUMBER OF Name does not appear under PAYROLL-CHECK
EMPLOYEE-NUMBER OF EMPLOYEE-RECORD
WAGES Name is not elementary in either group
TAX-RATE OF EMPLOYEE-RECORD Qualification is not identical in PAYROLL-CHECK
DEDUCTIONS Item not elementary in one group
342 U41112-J-Z125-1-76
PROCEDURE DIVISION GIVING phrase
GIVING phrase
Syntax rules
1. The identifier following the word GIVING may be a numeric-edited item since it is not
itself involved in the calculation.
2. When the GIVING phrase is supplied, the result of the arithmetic operation is assigned
to the specified identifier.
3. The result stored in the identifier replaces its previous contents. Therefore, it is not
necessary to reset the identifier to zero.
Example 8-16
ADD A B GIVING C.
The value C is set to the sum of A + B, and A and B are not changed.
U41112-J-Z125-1-76 343
ROUNDED phrase PROCEDURE DIVISION
ROUNDED phrase
Syntax rules
1. If, after decimal point alignment, the number of places following the decimal point in the
result of an arithmetic operation is greater than the number of decimal places provided
in the resultant identifier, truncation is performed according to the size of this identifier.
If rounding is specified, the absolute value of the last significant digit of the resultant
identifier is incremented by 1 if the most significant digit of those to be truncated is
greater than or equal to 5.
2. If rounding is not desired but truncation of excess digits is required, the last digit of the
resultant identifier remains unchanged.
3. When the least significant digits of a resultant identifier are represented by P in the
PICTURE character-string for that identifier, rounding or truncation takes place relative
to the rightmost digit position for which internal storage is allocated (see example).
ROUNDED is assumed for COMPUTATIONAL-1 or COMPUTATIONAL-2 result items,
and need not be specified for them.
Example 8-17
Calculated Description of result Description after rounding Result without rounding
result 1) item
03&2627 PIC 99 03 03
PIC 99.9 03.3 03.2
PIC 99.99 03.26 03.26
PIC 99.999 03.263 03.262
123788&6 PIC S999PPP 124000 123000
1)
& represents the operational decimal point.
344 U41112-J-Z125-1-76
PROCEDURE DIVISION ON SIZE ERROR phrase
Syntax rules
1. Violation of the rules for evaluation of exponentiation always terminates the arithmetic
operation and always causes a size error condition (see "Arithmetic statements",
general rule 4, page 338f).
2. The ON SIZE ERROR phrase contains an imperative-statement which specifies what
actions are to be taken in the event of a size error.
3. The size error condition applies only to the final results of an arithmetic operation and
not to intermediate results, except in the case of the MULTIPLY and DIVIDE statements.
4. If the ROUNDED phrase is specified, rounding takes place before the size error check.
5. If the ON SIZE ERROR phrase is specified and a size error condition exists after the
execution of the arithmetic operations specified by an arithmetic statement, the values
of the affected resultant identifiers remain unchanged from the values they had before
execution of the arithmetic statement. The values of resultant identifiers for which no
size error condition exists are the same as they would have been if the size error
condition had not resulted for any of the resultant identifiers. After completion of the
arithmetic operations, control is transferred to the imperative-statement specified in the
ON SIZE ERROR phrase and execution continues according to the rules for each
statement specified in that imperative-statement. If a procedure branching or condi-
tional statement which causes explicit transfer of control is executed, control is trans-
ferred in accordance with the rules for that statement; otherwise, upon completion of the
execution of the imperative-statement specified in the ON SIZE ERROR phrase, control
is transferred to the end of the arithmetic statement and the NOT ON SIZE ERROR
phrase, if specified, is ignored.
6. If ON SIZE ERROR is not specified and a size error condition exists after the execution
of the arithmetic operations specified by an arithmetic statement, the values of the
affected resultant identifiers are undefined. The values of resultant identifiers for which
no size error condition exists are the same as they would have been if the size error
condition had not resulted for any of the resultant identifiers. After completion of the
arithmetic operations, control is transferred to the end of the arithmetic statement, and
the NOT ON SIZE ERROR phrase, if present, is ignored.
7. If the size error condition does not exist, control is transferred to the end of the arithmetic
statement or to the imperative-statement specified in the NOT ON SIZE ERROR
phrase if it is specified. In the latter case, execution continues according to the rules for
U41112-J-Z125-1-76 345
ON SIZE ERROR phrase PROCEDURE DIVISION
Example 8-18
IDENTIFICATION DIVISION.
PROGRAM-ID. SE.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 A PIC 99 VALUE ZERO.
77 B PIC 99 VALUE ZERO.
PROCEDURE DIVISION.
MAIN SECTION.
P1.
MOVE 44 TO A.
MOVE 72 TO B.
ADD A TO B
ON SIZE ERROR
PERFORM PROC-A
END-ADD
STOP RUN.
PROC-A.
DISPLAY "Size error!" UPON T.
DISPLAY A UPON T.
DISPLAY B UPON T.
Current value of A: 44
Current value of B: 72
Calculated result: 116
The result item B is too small to accommodate the calculated result and a size error condi-
tion occurs. Since ON SIZE ERROR is specified, the statement PERFORM PROC-A is exe-
cuted. Result item B is unchanged.
346 U41112-J-Z125-1-76
PROCEDURE DIVISION Overlapping operands
General rule
Every operation involving a numeric data item which may possibly have non-numeric con-
tents (e.g. due to a redefinition of the data item or following a MOVE statement using a
group item as operand) should be preceded by the IF NUMERIC class test. The operation
can only be performed successfully if the class test yields the truth value TRUE.
U41112-J-Z125-1-76 347
ACCEPT statement PROCEDURE DIVISION
8.10 Statements
ACCEPT statement
Function
The ACCEPT statement transfers small amounts of data to a data item. The data is either
read from a system file or made available by the compiler or operating system.
Format 1 reads user input by means of appropriate mnemonic names or supplies
information of the operating system and compiler..
Format 2 supplies date and time specifications of the operating system..
Format 3 are used to access the command line of the POSIX subsystem.
Format 4
Format 5 supplies the contents of a BS2000 or POSIX environment variable or the
contents of a specific argument from the POSIX command line..
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
ACCEPT identifier [ FROM mnemonic-name ]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
348 U41112-J-Z125-1-76
PROCEDURE DIVISION ACCEPT statement
3. Data is stored aligned to the left in the area indicated by identifier, regardless of the
PICTURE character-string associated with the identifier. Incoming data is not edited,
and no error checking is performed.
The only exception to this is CPU-TIME: the CPU time is moved in accordance with the
rules of the MOVE statement from a field with the description PIC 9(6)V9(4).
4. SYSIPT, TERMINAL, or CONSOLE specifies the system file from which data is to be
read.
SYSIPT refers to the system file of that name.
TERMINAL refers to the system file SYSDTA (normally assigned to the data terminal).
CONSOLE refers to the system console.
5. When entered for a job-variable-name, mnemonic-name references the associated
operating system job variable which is to be read in. If the job variable cannot be read
in for some reason, the runtime system issues an error message, and the program is
then either continued or aborted, as determined by an appropriate compiler directive
(see COBOL2000 User Guide [1]).
In the former case, /* is assumed as the value of identifier.
6. When entered for COMPILER-INFO, CPU-TIME, PROCESS-INFO, or TERMINAL-
INFO, mnemonic-name specifies the information which is to be requested.
COMPILER-INFO refers to information provided by the compiler.
CPU-TIME, PROCESS-INFO, TERMINAL-INFO and DATE-ISO4 refer to information
provided by the operating system.
7. If the FROM phrase is omitted, data is read by default from the logical input file SYSIPT.
Data can also be read from the logical input file SYSDTA by means of an appropriate
compiler directive (see COBOL2000 User Guide [1]).
8. The execution of ACCEPT statements and the structure of the information provided for
the individual functions are described in the "COBOL2000 User Guide”.
1. If the system file specified for an ACCEPT statement is the same as one designated for
a READ statement, the results will be unpredictable.
2. An ACCEPT statement for job-variable will be rejected with an error message at object
time if the job variables are not present in the operating system.
U41112-J-Z125-1-76 349
ACCEPT statement PROCEDURE DIVISION
Example 8-19
for format 1
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES:
TERMINAL IS T.
.
.
PROCEDURE DIVISION.
...
ACCEPT INPUT-DATA FROM T.
The mnemonic-name T is linked to the implementor-name TERMINAL in the SPECIAL-
NAMES paragraph. The subsequent ACCEPT statement requests data from the system file
SYSDTA, which is assigned to TERMINAL and moves this data to the data item called
INPUT-DATA.
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
DATE
DAY
ACCEPT identifier FROM
DAY-OF-WEEK
TIME
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. The data item specified by identifier must not be an alphabetic elementary item.
2. The ACCEPT statement causes the requested information to be moved to the data item
specified by the identifier, in accordance with the rules governing the MOVE statement.
DATE, DAY, DAY-OF-WEEK and TIME are special data items and thus are not
described in the compilation unit.
1. DATE is composed of the data elements "year" of century, "month" of year, and "day" of
month. The sequence of these conceptual elementary items is as follows, from left to
right: year, month, day. Thus, for example, April 1, 1996 would be expressed as 960401.
DATE, if referenced in a COBOL program, is interpreted as if it had been described as
an unsigned elementary numeric integer data item, six digits in length
(PIC 9(6)).
350 U41112-J-Z125-1-76
PROCEDURE DIVISION ACCEPT statement
2. DAY is composed of the data elements "year" of century, and "day" of year. The
sequence of these conceptual elementary items is as follows, from left to right: year,
day. Thus, for example, April 1, 1998 would be expressed as 98091. DAY, if referenced
in a COBOL program, is interpreted as if it had been described as an unsigned
elementary numeric integer data item, five digits in length (PIC 9(5)).
3. DAY-OF-WEEK is composed of a single data element whose content represents the day
of the week. If referenced in a COBOL program, DAY-OF-WEEK is interpreted as if it
had been described as an unsigned elementary numeric integer data item with a length
of one digit (PIC 9). In DAY-OF-WEEK, the value 1 represents Monday, 2 represents
Tuesday, ... , 7 represents Sunday.
4. TIME is composed of the data elements "hours", "minutes", "seconds" and "hundredths
of a second". TIME is based on the 24-hour clock; thus 2:41 pm, for example, would be
expressed as 14410000. If referenced in a COBOL program, TIME is interpreted as if it
had been described as an unsigned elementary numeric integer data item, 8 digits in
length (PIC 9(8)). The minimum value for TIME is 00000000, the maximum value is
23595900. The last two digits are not supplied by the system, and are therefore always
set to zero.
The following three formats of the ACCEPT statement are extensions from the X/Open
Portability Guide. They allow access to environment variables and command lines.
Access to command lines is meaningful only if the object program is executing in the POSIX
subsystem available as of BS2000/OSD V2.0. Execution of the COBOL2000 compiler and
of any programs generated by it under POSIX is described in the “COBOL2000 User Guide”
[1].
Format 3
[END-ACCEPT]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
U41112-J-Z125-1-76 351
ACCEPT statement PROCEDURE DIVISION
Format 4
This supplies (consecutively) the contents of the arguments in the command line.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
ACCEPT identifier-2 [ FROM mnemonic-name-4 ]
Syntax rules
Format 5
This supplies the contents of an environment variable or the contents of a specific argument
from the command line. The name of the specified environment variable or the number of
the specified argument in the command line must have been defined before by an
appropriate DISPLAY statement.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
ACCEPT identifier-2 [ FROM mnemonic-name-6 ]
Syntax rules
Note
A detailed example illustrating access to command lines and environment variables can be
found in chapter 13 of the “COBOL2000 User Guide” [1].
352 U41112-J-Z125-1-76
PROCEDURE DIVISION ADD statement
ADD statement
Function
The ADD statement causes two or more numeric operands to be summed and the result to
be stored.
Format 1 of the ADD statement stores the sum in one of the operand items. More than
one addition may be expressed by specifying more than one result item in
the same ADD statement.
Format 2 of the ADD statement stores the sum in a separate result item.
Format 3 of the ADD statement adds the data items of one group item to the corre-
sponding data items of another group item.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1
ADD ... TO {identifier-2 [ROUNDED]}...
literal-1
[END-ADD]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 353
ADD statement PROCEDURE DIVISION
Example 8-20
for format 1
Statement PICTURE IS of result item Calculation
ADD A, B TO C, D A + B + C stored in C
A + B + D stored in D
ADD A, B, C TO D S9999V99 A + B + C + D stored in D as SnnnnVnn
ADD A, 14 TO C 99999 A + 14 + C stored in C as nnnnn; rounded
ROUNDED if necessary
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1 identifier-2
ADD ... TO GIVING {identifier-3 [ROUNDED]}...
literal-1 literal-2
[END-ADD]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. Each identifier preceding the GIVING phrase must refer to an elementary numeric item.
2. identifier-3 may refer either to an elementary numeric item or to an elementary numeric-
edited data item.
3. The composite of operands is determined by using all of the operands in a given state-
ment, excluding the data items which follow the word GIVING, and must not contain
more than 18 digits (see "Arithmetic statements", page 338).
4. The values of the operands preceding the word GIVING are added together, and the
sum is stored as the new value of identifier-3.
5. END-ADD delimits the scope of the ADD statement.
Additional rules are given under "Options in arithmetic statements" (page 341ff), where the
GIVING, ROUNDED, and (NOT) ON SIZE ERROR phrases are described.
354 U41112-J-Z125-1-76
PROCEDURE DIVISION ADD statement
Example 8-21
for format 2
Statement PICTURE IS of result item Calculation
ADD A, B, C GIVING D. 9999.99 A + B + C stored in D as nnnn.nn
ADD A, B, 43.6 GIVING D 99V99 A + B + 43.6 stored in D. If the integer
ON SIZE ERROR result is greater than 2 digits, the size
GO TO O-FLOW error condition occurs and the GO TO
END-ADD. statement specified in the SIZE ERROR
phrase is executed.
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CORR
ADD identifier-1 TO identifier-2 [ROUNDED]
CORRESPONDING
[END-ADD]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Example 8-22
for format 3
Refer to the description of the CORRESPONDING phrase for an example of the use of this
option (page 341).
U41112-J-Z125-1-76 355
ALTER statement PROCEDURE DIVISION
ALTER statement
Function
The ALTER statement modifies one or more GO TO statements, thereby altering a prede-
termined sequence of operations.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
ALTER {procedure-name-1 TO [PROCEED TO] procedure-name-2}...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
356 U41112-J-Z125-1-76
PROCEDURE DIVISION CALL statement
CALL statement
Function
The CALL statement passes control to a called program. Optionally, operands may be spec-
ified to enable the called program to access data of the calling program.
The CALL statement (format 4) can also be used to execute BS2000 system commands
from a COBOL program.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-2
[BY REFERENCE] ...
identifier-1 file-name-1
CALL USING ...
literal-1 BY VALUE {identifier-5}...
identifier-2
BY CONTENT
literal-2
[RETURNING identifier-3]
[ON OVERFLOW imperative-statement-1]
[END-CALL]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-2
[BY REFERENCE] ...
identifier-1 file-name-1
CALL USING ...
literal-1 BY VALUE {identifier-5}...
identifier-2
BY CONTENT
literal-2
[RETURNING identifier-3]
[ON EXCEPTION imperative-statement-1]
[NOT ON EXCEPTION imperative-statement-2]
[END-CALL]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 357
CALL statement PROCEDURE DIVISION
contain only uppercase letters and digits. The length of the name is dependent on the
module format (see the “COBOL User Guide” [1]).
If literal-1 is the program-name of a contained program of a nested program, it must
begin with an alphabetic character, may contain uppercase letters, lowercase letters
and digits, and must not be longer than 30 characters.
2. identifier-1 must be defined as an alphanumeric data item so that its content can be a
valid program name, as described under point 1.
3. The USING phrase in a CALL statement may be supplied only if a USING phrase has
been written either after the associated Procedure Division header or in the ENTRY
statement of the called program. Each USING phrase must have the same number of
operands, otherwise the result will be unpredictable.
4. Every identifier-1 specified in the USING phrase must have been defined in the
FILE SECTION, WORKING-STORAGE SECTION, LOCAL-STORAGE SECTION,
LINKAGE SECTION or SUB-SCHEMA SECTION. It may have level number 01 or level
number 77. However, the compiler allows every level number except 88. In order to align
elementary items with USAGE INDEX, BINARY, COMPUTATIONAL, COMPUTA-
TIONAL-5, COMPUTATIONAL-1, COMPUTATIONAL-2 in the LINKAGE SECTION, all
01-level items included are aligned on doubleword boundaries. Consequently, the user
must ensure that these operands are aligned accordingly in the USING phrase.
5. file-name-1 is appropriate only if the called program is written in a language other than
COBOL.
6. identifier-2 must not be a function-identifier.
7. identifier-3 must reference a data item that is defined in the FILE SECTION,
WORKING-STORAGE SECTION, LOCAL-STORAGE SECTION or LINKAGE
SECTION.
8. identifier-3 is a receiving operand.
9. Object references may also be used as parameters. They may only be passed
BY CONTENT as USING parameters.
10. identifier-5 must have been defined as a 2- or 4-byte data item with USAGE COMP-5
or as a 1-byte data item. If this is not the case, the result of the parameter transfer is
undefined. This type of parameter transfer is not a good idea unless the called program
was written in a language other than COBOL (see example 8-24).
11. literal-2 must be an alphanumeric literal or one of the figurative constants SPACE, LOW-
VALUE or HIGH-VALUE.
358 U41112-J-Z125-1-76
PROCEDURE DIVISION CALL statement
1. literal-1 or identifier-1 contains the name of the called program. The program which
contains a CALL statement is the calling program. If the called program is a COBOL
program, literal-1 or identifier-1 must contain the program-name specified in the
PROGRAM-ID paragraph or in the ENTRY statement.
2. When the CALL statement is executed, control is passed to the called program. When
control is returned to the calling program, imperative-statement-2 (if specified) is
executed and the program then branches to the end of the CALL statement. If NOT ON
EXCEPTION is omitted, the program branches immediately to the end of the CALL
statement.
3. If the called program is not available or already active during execution of the CALL
statement, one of the following actions is executed:
a) If ON OVERFLOW or ON EXCEPTION is specified, control is passed to imperative-
statement-1. After completion of imperative-statement-1, control is passed to the
end of the CALL statement.
b) If ON OVERFLOW or ON EXCEPTION is not specified, an error message is issued
and program execution is aborted.
4. If two programs in a run unit have the same name, then at least one of them must be a
contained program within a nested program. A program having a multiply used program
name can only be successfully called under the following conditions:
a) The called program is directly contained in the calling program.
b) The called program has the COMMON attribute and is called by the directly super-
ordinate program or by one of the latter’s sibling programs or their descendants.
c) The calling program is a contained program within a nested program and calls a
separately compiled program of a run unit.
5. The data to be passed as parameters from the calling program to the called program
are specified in the USING phrase of the CALL statement with identifier-2... .
The number and sequence of the parameters must match the specifications in the
USING phrase of the Procedure Division header or the ENTRY statement. Excepted
here are the indices assigned to tables (INDEXED BY phrase): The indices in a calling
program and a called program always point to separate indices.
6. If file-name-1 is specified in the list of the USING phrase, the starting address of the
system file control block of that file is supplied to the called program.
7. BY CONTENT and BY REFERENCE may be used together. The phrase BY CONTENT
or BY REFERENCE applies to all subsequent parameters until another BY CONTENT
or BY REFERENCE phrase is encountered. If neither BY CONTENT nor
BY REFERENCE is specified, the default is BY REFERENCE.
U41112-J-Z125-1-76 359
CALL statement PROCEDURE DIVISION
360 U41112-J-Z125-1-76
PROCEDURE DIVISION CALL statement
Format 3
identifier-1 NESTED
CALL AS
literal-1 program-prototype-name-1
identifier-2
[BY REFERENCE]
OMITTED
identifier-4
[BY CONTENT] arithmetic-expression-1
[USING literal-2 ...]
identifier-4
[BY VALUE] arithmetic-expression-1
literal-2
[RETURNING identifier-3]
[ON EXCEPTION imperative-statement-1]
[NOT ON EXCEPTION imperative-statement-2]
[END-CALL]
U41112-J-Z125-1-76 361
CALL statement PROCEDURE DIVISION
In general, the rules for format 1 and 2 apply. The following rules apply in addition:
1. The BY REFERENCE, BY CONTENT and BY VALUE phrases refer only to the
argument that follows the phrase immediately.
2. If an argument is specified without any of the keywords BY REFERENCE,
BY CONTENT, or BY VALUE, that argument is handled as follows:
a) BY REFERENCE is assumed if the BY REFERENCE phrase is specified or implied
for the corresponding formal parameter in the Procedure Division header and if the
argument is an identifier that is permitted as the receiving operand.
b) BY CONTENT is assumed if the BY REFERENCE phrase is specified or implied for
the corresponding formal parameter and if the argument is a literal, an arithmetic
expression or any other identifier that is not permitted as the receiving operand.
c) BY VALUE is assumed if the BY VALUE phrase is specified or implied for the
corresponding formal parameter in the Procedure Division header.
3. An argument at the end of the USING list may also be omitted totally (i.e. the OMITTED
phrase need not be specified for it) if all the following arguments are omitted as well
(Note syntax rule 9!).
4. If an OMITTED phrase is specified or a trailing argument is omitted, the
omitted-argument condition for that argument must be true in the called program.
5. If an argument for which the omitted-argument condition is true is referenced in a called
program (except in the omitted-argument condition), the behavior is undefined.
Note: See also the syntax and general rules of the INVOKE statement.
362 U41112-J-Z125-1-76
PROCEDURE DIVISION CALL statement
Format 4
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1
CALL UPON SYSTEM USING [identifier-2]
literal-1
[STATUS identifier-3]
[ON EXCEPTION imperative-statement-1]
[NOT ON EXCEPTION imperative-statement-2]
[ENDEEND-CALL]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 363
CALL statement PROCEDURE DIVISION
5. identifier-3 can be used to specify a status item in which specific values show the result
of the execution of the command. The following values can occur.
00 Command executed successfully
04 The command was executed, but one or more records could not be entered because the
response area is too small.
30 Error during command execution; no more information available
34 This command may not be specified in a program .
40 The current length of identifier-1 is invalid (<= 0 or > 32767 bytes).
41 The current length of identifier-2 is invalid (< 0).
90 There is not enough main memory available to execute the command;
workaround: specify smaller areas (identifier-1 or identifier-2)
6. If an error occurs while the CALL statement is being executed, one of the following
actions is performed:
a) If ON EXCEPTION is specified, imperative-statement-1 is executed. When impera-
tive-statement-1 has been completed, the program continues at the end of the
CALL statement.
b) If ON EXCEPTION is not executed, the program sequence is resumed without an
error message.
7. If the CALL statement is executed successfully, one of the following actions is per-
formed:
a) If NOT ON EXCEPTION is specified, imperative-statement-2 is executed.
b) If NOT ON EXCEPTION is not specified, a branch is made to the end of the CALL
statement.
8. END-CALL limits the scope of validity of the CALL statement.
Note
The system output consists of variable records with length items and special characters for
advance control, etc.; a record is usually represented by several lines on the screen. Only
complete records are entered in the response area; the rest of the response area which is
not used is deleted. For information on the structures and further processing of the
response area, see User Guide "BS2000/OSD-BC DMS Macros".
364 U41112-J-Z125-1-76
PROCEDURE DIVISION CALL statement
Example 8-23
of the use of the CALL statement in the format CALL identifier-1
Main program:
IDENTIFICATION DIVISION.
PROGRAM-ID. MAIN.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 CALL-OPERAND PIC X(8) VALUE SPACE.
01 TABLE-FUNCTION.
02 FUNCTION-1 PIC X(8) VALUE "ADDREC".
02 FILLER PIC X(72) VALUE SPACE.
02 FUNCTION-2 PIC X(8) VALUE "DELREC".
02 FILLER PIC X(72) VALUE SPACE.
02 FUNCTION-3 PIC X(8) VALUE "CHGREC".
02 FILLER PIC X(72) VALUE SPACE.
01 RECORD-NUMBER PIC 9(8).
PROCEDURE DIVISION.
P1 SECTION.
PMAIN.
PERFORM UNTIL CALL-OPERAND = FUNCTION-1 OR FUNCTION-2
OR FUNCTION-3
DISPLAY "Please enter desired function"
UPON T
DISPLAY TABLE-FUNCTION UPON T
ACCEPT CALL-OPERAND FROM T
END-PERFORM
PERFORM UNTIL RECORD-NUMBER NUMERIC
DISPLAY "Please enter record number"
"(numeric, 8 digits)" UPON T
ACCEPT RECORD-NUMBER FROM T
END-PERFORM
CALL CALL-OPERAND USING RECORD-NUMBER
END-CALL
STOP RUN.
Subprogram "ADDREC":
IDENTIFICATION DIVISION.
PROGRAM-ID. ADDREC.
ENVIRONMENT DIVISION.
DATA DIVISION.
...
LINKAGE SECTION.
01 RECORD-NUMBER PIC 9(8).
PROCEDURE DIVISION USING RECORD-NUMBER.
...
EXIT PROGRAM.
U41112-J-Z125-1-76 365
CALL statement PROCEDURE DIVISION
Subprogram "DELREC":
IDENTIFICATION DIVISION.
PROGRAM-ID. DELREC.
ENVIRONMENT DIVISION.
DATA DIVISION.
...
LINKAGE SECTION.
01 RECORD-NUMBER PIC 9(8).
PROCEDURE DIVISION USING RECORD-NUMBER.
...
EXIT PROGRAM.
Subprogram "CHGREC":
IDENTIFICATION DIVISION.
PROGRAM-ID. CHGREC.
ENVIRONMENT DIVISION.
DATA DIVISION.
...
LINKAGE SECTION.
01 RECORD-NUMBER PIC 9(8).
PROCEDURE DIVISION USING RECORD-NUMBER.
...
EXIT PROGRAM.
366 U41112-J-Z125-1-76
PROCEDURE DIVISION CALL statement
Example 8-24
for the use of CALL ... USING BY VALUE
Main program:
IDENTIFICATION DIVISION.
PROGRAM-ID. MAIN.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 C PIC 9(4) USAGE COMP-5 VALUE 1.
01 D PIC 9(9) USAGE COMP-5 VALUE 1.
01 E PIC S9(4) USAGE COMP-5 VALUE -1.
01 F PIC S9(9) USAGE COMP-5 VALUE -1.
01 RTC PIC S9(10) SIGN IS LEADING SEPARATE.
PROCEDURE DIVISION.
1ST SECTION.
1.
CALL "C1" USING BY VALUE C, D.
MOVE RETURN-CODE TO RTC.
DISPLAY "RETURN-CODE = " RTC UPON T.
CALL "D1" USING BY VALUE E, F.
MOVE RETURN-CODE TO RTC.
DISPLAY "RETURN-CODE = " RTC UPON T.
MOVE 0 TO RETURN-CODE.
STOP RUN.
U41112-J-Z125-1-76 367
CALL statement PROCEDURE DIVISION
File name assignment with the SET-FILE-LINK command in dialogs and status queries:
IDENTIFICATION DIVISION.
PROGRAM-ID. CMD.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 LINKFILE. (1)
02 FILLER PIC X(30) VALUE "SET-FILE-LINK LINK=XXX,F-NAME=".
02 FILNAM PIC X(54).
01 RTC PIC S9(8) SYNC BINARY. (2)
01 RTC-ED PIC Z(6)99.
01 TFT-CMD PIC X(40) VALUE "SHOW-FILE-LINK".
01 RESP PIC X(2000) VALUE ALL SPACE. (3)
PROCEDURE DIVISION.
MAIN SECTION.
PARA.
DISPLAY "PLEASE ENTER FILE NAME X(54)" UPON T.
ACCEPT FILNAM FROM T.
CALL UPON SYSTEM USING LINKFILE
STATUS RTC
ON EXCEPTION
MOVE RTC TO RTC-ED
DISPLAY "ERROR DURING COMMAND CAL, STATUS= "
RTC-ED UPON T
END-CALL
CALL UPON SYSTEM USING TFT-CMD
RESP
END-CALL.
DISPLAY "RESPONSE AREA RESP" RESP UPON T.
FIN.
STOP RUN.
(1) Description of identifier-1 with substructures for BS2000 system command and file
name.
(2) Description of identifier-3 (status item STAT)
(3) Description of identifier-2 (response area RESP)
368 U41112-J-Z125-1-76
PROCEDURE DIVISION CANCEL statement
CANCEL statement
Function
The CANCEL statement causes the specified program to be set to its initial state the next
time it is called.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1
CANCEL ...
literal-1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. literal-1 must be non-numeric and must be a valid program name. If literal-1 is the
program-name of a separately compiled program or of the outermost containing
program of a nested program, it must begin with an alphabetic character and may
contain only uppercase letters and digits. The length of the name depends on the
module format.
If literal-1 is the program-name of a contained program of a nested program, it must
begin with an alphabetic character, may contain uppercase letters, lowercase letters
and digits, and must not be longer than 30 characters.
2. identifier-1 must be defined as an alphanumeric data item so that its value may be a
valid program name, as described under point 1.
General rules
1. literal-1 or the content of identifier-1 specifies the program which is to be set to its initial
state.
2. Successful execution of the CANCEL statement closes the files in the specified
program. If the program is called again in the same run unit or in a nested program after
successful execution of a CANCEL statement, this program is in its initial state.
3. The program name specified as literal-1 or contained in identifier-1 must be unique
within the run unit or the nested program unless it is a program name that may be used
multiply under certain conditions (see "CALL statement", general rule 4, page 359).
The program name must not be the same as the first 7 characters of the program name
in the PROGRAM-ID paragraph of the program that contains the CANCEL statement.
U41112-J-Z125-1-76 369
CANCEL statement PROCEDURE DIVISION
4. Called programs may contain CANCEL statements, but a called program may not
execute any CANCEL statement that either directly or indirectly references the calling
program.
5. The logical connection to a program which is initialized with a CANCEL statement is
established again only if this program is subsequently called again with a CALL
statement.
6. A CANCEL statement has no effect if one of the following situations exists:
– The program concerned is already in the initial state because it has not yet been
called in the active run unit or in the nested program.
– The program concerned has already been initialized with a CANCEL statement.
– The program concerned or (with nested programs) a superordinate program has
the INITIAL attribute..
In these cases, the program continues at the next executable statement after the
CANCEL statement.
7. During execution of a CANCEL statement, an implicit CLOSE statement (without any
optional phrases) is executed for each open internal file assigned to the program. Any
USE procedures specified for these files are not executed.
8. A CANCEL statement may only reference such programs for which the call is permitted
within the call hierarchy.
9. If an explicit or implicit CANCEL statement is executed, then all contained programs in
the program referenced by the CANCEL statement are also cancelled.
370 U41112-J-Z125-1-76
PROCEDURE DIVISION CANCEL
Example 8-26
Main program:
IDENTIFICATION DIVISION.
PROGRAM-ID. MAIN.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 ERROR-CODE PIC 9.
88 O-K VALUE 0.
...
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
PERFORM WITH TEST AFTER UNTIL O-K
CALL "UPROG1" USING ERROR-CODE
IF NOT O-K
THEN
CANCEL "UPROG1"
END-IF
END-PERFORM
STOP RUN.
Subprogram:
IDENTIFICATION DIVISION.
PROGRAM-ID. UPROG1.
ENVIRONMENT DIVISION.
DATA DIVISION.
...
LINKAGE SECTION.
01 ERROR-CODE PIC 9.
88 O-K VALUE 0.
PROCEDURE DIVISION USING ERROR-CODE.
...
IF INTERN-ERROR
THEN
CONTINUE
ELSE
SET O-K TO TRUE
END-IF
EXIT PROGRAM.
UPROG1 is called repeatedly until the value 0 is returned. As long as a value other than 0
is returned, UPROG1 is set to its initial state and the loop is continued.
U41112-J-Z125-1-76 371
CLOSE statement PROCEDURE DIVISION
CLOSE statement
Function
For sequential file organization: The CLOSE statement terminates the processing of
input/output reels, units and files, with optional rewind and/or lock functions.
For relative and indexed file organization: The CLOSE statement terminates the
processing of files, with optional lock functions.
Syntax rules
1. The files referenced in the CLOSE statement need not have the same organization or
access type.
2. The terms 'REEL' and 'UNIT' are synonymous and completely interchangeable within a
CLOSE statement. The handling of sequential mass storage files is logically equivalent
to the handling of files on magnetic tape or similar sequential media.
3. In the case of line sequential files only the specification WITH LOCK is permitted.
General rules
372 U41112-J-Z125-1-76
PROCEDURE DIVISION CLOSE statement
U41112-J-Z125-1-76 373
CLOSE statement PROCEDURE DIVISION
The definitions of the symbols used in the table are given below. When the definition of
the symbol depends on whether the file is an input or output file, alternate definitions
are given; otherwise, a definition applies to files opened as INPUT, OUTPUT and I-O.
A Previous volumes unaffected
All volumes of the file processed prior to the current volume were processed accord-
ing to standard volume switching procedures, except those volumes controlled by a
prior CLOSE REEL/UNIT statement.
B No rewind of current reel
The current volume is positioned at the logical end of the file on the volume.
C Standard close file
For files opened with the INPUT or I-O phrase:
if the file is positioned at its end and a LABEL RECORDS clause was supplied, then
(if a USE procedure is present) the standard trailer label procedure and user trailer
label procedure are executed. The order in which these two routines are executed
is specified by the USE procedure. The standard system closing procedures are
then performed.
If the file is positioned at its end, but a LABEL RECORDS clause was not supplied,
then only the standard system closing procedures are performed.
If the file is positioned other than at its end, only the standard system closing pro-
cedures are performed. Even if USE procedures are supplied, no label processing
will take place in this case. (An INPUT or I-O file is considered to be at its end if the
imperative statement in the AT END phrase of the READ statement, if entered, has
been executed, and no CLOSE statement has been executed.)
374 U41112-J-Z125-1-76
PROCEDURE DIVISION CLOSE statement
U41112-J-Z125-1-76 375
CLOSE statement PROCEDURE DIVISION
G Rewind
The current volume is positioned at its beginning (for a magnetic tape file, this is the
beginning of the reel; for disk storage files, this is the beginning of the file con-
cerned).
H I/O status 07 is set.
The optional phrases are ignored.
J I/O status 07 is set.
The CLOSE statement is ignored.
5. The execution of a CLOSE statement causes the contents of the data item specified in
the FILE STATUS clause (if such a clause exists) to be updated (see also
"FILE STATUS clause", page 189).
6. After successful execution of a CLOSE statement, the record area assigned to the file
is no longer accessible. The unsuccessful execution of such a CLOSE statement leaves
the availability of the record area undefined.
7. If an optional input file does not exist, no end-of-file processing and no reel/volume pro-
cessing is executed.
8. If more than one file-name has been specified, the effect is the same as if a separate
CLOSE statement had been written for each file-name.
9. All files that are still open on completion of a task are closed.
376 U41112-J-Z125-1-76
PROCEDURE DIVISION COMPUTE statement
COMPUTE statement
Function
The COMPUTE statement is used to assign the value of a data item, literal, or arithmetic
expression to a data item.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-2
COMPUTE {identifier-1 [ROUNDED]}... = literal-1
arithmetic-expression
[END-COMPUTE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
U41112-J-Z125-1-76 377
CONTINUE statement PROCEDURE DIVISION
Example 8-27
Statement Calculation
COMPUTE A = The value of the expression (B + C) / D - E is assigned to A. The
(B + C) / D - E. precedence rules for evaluating expressions apply when calculating
values.
COMPUTE A = 2. The value 2 is assigned to A.
CONTINUE statement
The CONTINUE statement is a no operation statement. It indicates that no executable
statement is present. Processing is continued with the next executable statement.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CONTINUE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
General rule
378 U41112-J-Z125-1-76
PROCEDURE DIVISION CONTINUE statement
Example 8-28
IDENTIFICATION DIVISION.
PROGRAM-ID. CONT1.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 N PIC 9.
77 K PIC 9(3).
77 Z PIC 9(6) VALUE ALL ZERO.
77 E PIC 9(3).
PROCEDURE DIVISION.
PROC SECTION.
INPUT-PAR.
DISPLAY "Enter upper limit N" UPON T.
ACCEPT N FROM T.
IF N NUMERIC
THEN
CONTINUE
ELSE
DISPLAY "Incorrect entry" UPON T
PERFORM INPUT-PAR
END-IF.
COMPUTATION.
PERFORM WITH TEST BEFORE VARYING K FROM 1 BY 1 UNTIL K > N
COMPUTE E = K ** 3
ADD E TO Z
END-PERFORM
DISPLAY "Result = " Z UPON T.
FINISH-PAR.
STOP RUN.
The effect of CONTINUE is to make the IF statement syntactically correct even though the
THEN branch does not contain an executable statement.
Example 8-29
READ INPUT-DATEI AT END CONTINUE.
AT END is used in order to avoid program abortion at the end of the file; CONTINUE spec-
ifies the unconditional statement which is required by the statement syntax, even though
nothing is to be done at this point in the program.
U41112-J-Z125-1-76 379
DELETE statement PROCEDURE DIVISION
DELETE statement
Applies to relative and indexed file organization
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
DELETE file-name RECORD
[END-DELETE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The INVALID KEY phrase must not be specified for a DELETE statement which refer-
ences a file in sequential access mode.
2. If a file is not in sequential access mode and no applicable USE procedure has been
specified, the INVALID KEY phrase is mandatory.
General rules
1. The file referenced in the DELETE statement must be open in I-O mode during the exe-
cution of this statement (see also "OPEN statement").
2. After successful execution of the DELETE statement, the identified record is deleted
from the file.
3. Execution of a DELETE statement does not affect the contents of the record area asso-
ciated with the file or the content of the data item referenced by the data-name specified
in the DEPENDING ON phrase of the RECORD clause.
4. For a file in sequential access mode, the last input/output statement entered prior to the
DELETE statement must be a successfully completed READ statement. The
RELATIVE KEY (for relative file organization) or RECORD KEY (for indexed file
organization) must not be changed between reading and deletion. Execution of the
DELETE statement causes the record read by the preceding READ statement to be
logically removed from that file.
380 U41112-J-Z125-1-76
PROCEDURE DIVISION DELETE statement
5. For a file in random or dynamic access mode, the File Control Processor deletes the
record identified by the contents of the data item specified in the RELATIVE KEY
clause (for relative file organization) or RECORD KEY clause (for indexed file
organization) of the file. If the record referenced by the key does not exist on the file,
an invalid key condition occurs (see "Invalid key condition".
6. After execution of the DELETE statement, the contents of the data item specified in the
FILE STATUS clause for the file are updated (see "FILE STATUS clause").
7. Transfer of control following the execution of the DELETE statement depends on
whether the INVALID KEY or NOT INVALID KEY phrase is specified (see "Invalid key
condition").
8. The file position is not changed by the execution of a DELETE statement.
9. END-DELETE delimits the scope of the DELETE statement.
U41112-J-Z125-1-76 381
DISPLAY statement PROCEDURE DIVISION
DISPLAY statement
Function
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
literal-1
DISPLAY ... [ UPON mnemonic-name ] [WITH NO ADVANCING]
identifier-1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. literal-1 or identifier-1 serves to specify the operands in the order they are to be output.
If necessary, the contents of the data item specified by "identifier" are converted to
external formats according to the following rules:
– Internal decimal and binary items are converted to external decimal data items.
– Internal floating-point data items are converted to external floating-point data items.
No other data items require conversion.
If one of the operands is a figurative constant (except ALL literal), it is output with
length 1.
If one of the operands is the figurative constant ALL literal, the literal is output once.
If literal-1 is numeric, it must be an unsigned integer.
2. mnemonic-name must be specified in the SPECIAL-NAMES paragraph and be
associated with one of the following implementor-names:
CONSOLE, PRINTER, PRINTER01 - PRINTER99, SYSOPT, TERMINAL, job-variable-
name (BS2000 job variable).
3. The mnemonic-name for SYSOPT, TERMINAL, CONSOLE, PRINTER and
PRINTER01 - PRINTER99 specifies the system file into which the data is to be written.
SYSOPT specifies the system file with the same name.
TERMINAL specifies the system file SYSOUT.
382 U41112-J-Z125-1-76
PROCEDURE DIVISION DISPLAY statement
General rules
1. A maximum logical record size is assumed for each device. These sizes are listed in
Table 8-11.
Device Maximum record size
CONSOLE 180 characters
PRINTER 132 characters + 1 control byte
PRINTER01_PRINTER99
SYSOPT 80 characters: 72 data bytes; bytes 73-80 contain the first 8 bytes of
the PROGRAM-ID name.
TERMINAL 8192 characters
Table 8-11 Maximum logical record size for the DISPLAY statement
2. When a DISPLAY statement contains more than one operand, the contents of the
specified operands and literals are displayed adjacent to each other, from left to right.
3. For output to printer, the following entries cause a line feed: DISPLAY, WRITE and
WRITE AFTER ADVANCING. A WRITE statement without ADVANCING phrase and a
WRITE statement with BEFORE ADVANCING phrase causes the printer to space after
printing. Therefore, mixed use of DISPLAY and WRITE statements on the same device
within the same program may cause two or more lines to overprint. Overprinting is not
possible on laser printers.
4. The maximum record length for job variables is 256 characters.
If the total number of characters in the operands exceeds the maximum record length,
the record will be truncated to the maximum length.
5. When a job variable is used as a monitoring job variable (MONJV), the system protects
the first 128 bytes (system portion) of this job variable against write access. Therefore,
only that portion of a record that begins at position 129 will be written from position 129
of the monitoring job variable. In all other respects, general rule 4 applies for monitoring
job variables.
For further information see the COBOL2000 User Guide [1].
U41112-J-Z125-1-76 383
DISPLAY statement PROCEDURE DIVISION
Example 8-30
SPECIAL-NAMES.
TERMINAL IS SPECIAL-OUTPUT.
...
PROCEDURE DIVISION.
...
DISPLAY OUTPUT-MESSAGE UPON SPECIAL-OUTPUT.
Here, the mnemonic-name SPECIAL-OUTPUT is associated with the implementor-name
TERMINAL in the SPECIAL-NAMES paragraph. The DISPLAY statement writes the current
contents of OUTPUT-MESSAGE on SYSOUT.
Example 8-31
DISPLAY "Hello world".
Since the UPON phrase is omitted, the literal "Hello world" is written to the logical output
device SYSLST. If the compiler directive COMOPT REDIRECT-ACCEPT-DISPLAY=YES (in
SDF: ACCEPT-DISPLAY-ASSGN=*TERMINAL) is specified, the literal is written to the out-
put file SYSOUT (see the COBOL2000 User Guide [1]).
The following three formats of the DISPLAY statement are extensions from the X/Open
Portability Guide. They allow access to environment variables and command lines. Access
to command lines is meaningful only if the object program is executing in the POSIX sub-
system available as of BS2000/OSD V2.0. Execution of the COBOL2000 compiler and of
any programs generated by it under POSIX is described in the “COBOL2000 User Guide”
[1].
384 U41112-J-Z125-1-76
PROCEDURE DIVISION DISPLAY statement
Format 2
This format sets the number of the argument in the command line which is subsequently
accessed via an ACCEPT statement.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-3
DISPLAY UPON mnemonic-name-3 [END-DISPLAY]
integer-1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
Format 3
This format sets the name of the environment variable which is subsequently accessed by
an ACCEPT or DISPLAY statement.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-4
DISPLAY UPON mnemonic-name-5 [END-DISPLAY]
literal-1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
U41112-J-Z125-1-76 385
DISPLAY statement PROCEDURE DIVISION
Format 4
This format writes to the environment variable specified previously in a format-3 DISPLAY
statement.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-2
DISPLAY UPON mnemonic-name-6
literal-2
Syntax rules
386 U41112-J-Z125-1-76
PROCEDURE DIVISION DIVIDE statement
DIVIDE statement
Function
The DIVIDE statement is used to divide one numeric operand by another and store the
result.
Format 1 of the DIVIDE statement stores the quotient in the dividend item.
Format 2 of the DIVIDE statement stores the quotient in more than one separate
result item.
Format 3 of the DIVIDE statement uses the GIVING phrase for storing the quotient
and generates the division remainder by means of the REMAINDER
phrase.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1
DIVIDE INTO {identifier-2 [ROUNDED]}...
literal-1
[END-DIVIDE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Additional rules are given under "Options in arithmetic expressions" (page 341ff), where the
ROUNDED, (NOT) ON SIZE ERROR, and GIVING phrases are described.
U41112-J-Z125-1-76 387
DIVIDE statement PROCEDURE DIVISION
Example 8-32
for format 1
Statement PICTURE of result item Calculation
DIVIDE A INTO B 9(4)V9(2) B / A stored as nnnnVnn in B
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1 INTO identifier-2
DIVIDE
literal-1 BY literal-2
[END-DIVIDE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
388 U41112-J-Z125-1-76
PROCEDURE DIVISION DIVIDE statement
Example 8-33
for format 2
Statement PICTURE IS of result item (C): Calculation
DIVIDE A INTO B S999V99 for C B / A stored in C as nnnVnn after
GIVING C ROUNDED rounding, if necessary
DIVIDE A BY B, 9(5) for C A / B stored in C as nnnnn, in D as nnnn,
GIVING C, D 9(4) for D after rounding the rightmost character,
ROUNDED if necessary.
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1 INTO identifier-2
DIVIDE GIVING identifier-3 [ROUNDED]
literal-1 BY literal-2
REMAINDER identifier-4
[END-DIVIDE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 389
DIVIDE statement PROCEDURE DIVISION
5. If ON SIZE ERROR is specified, and overflow occurs in the quotient, then the remainder
will not be calculated. In this case, the contents of the data items referenced by
identifier-3 and identifier-4 are therefore unchanged.
If overflow occurs in the remainder, the value of the data item referenced by identifier-4
is not changed.
6. The precision of the data item required for the REMAINDER phrase (identifier-4) is
determined by the calculations described above. Appropriate decimal point alignment
and truncation (rather than rounding) are performed as necessary for the contents of
the data item referenced by identifier-4.
7. The maximum size of the quotient after decimal point alignment is 18 decimal digits.
8. Division by zero always results in overflow (SIZE ERROR).
9. END-DIVIDE delimits the scope of the DIVIDE statement.
Additional rules are given under "Options in arithmetic expressions" (page 341ff), where the
ROUNDED, (NOT) ON SIZE ERROR, and GIVING phrases are described.
Example 8-34
for format 3
Statement Result item (C) Calculation
PICTURE IS:
DIVIDE A BY B, 9(5) for C A / B stored in C as nnnnn, the remainder,
GIVING C REMAINDER D 9(2) for D e.g. A - C * B, stored in D as nn.
390 U41112-J-Z125-1-76
PROCEDURE DIVISION ENTRY statement
ENTRY statement
Function
The ENTRY statement is used in a COBOL subprogram of a run unit for specifying the entry
point by which the subprogram may be called (as opposed to the standard entry point
supplied by the Procedure Division header). Optionally, data-names may be specified, if
data is to be transferred from the calling program as a parameter.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
ENTRY literal [USING {data-name-1}... ].
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. The ENTRY statement determines the entry point in the called program. The name of
the entry point is specified by the literal. A branch to this entry point is effected by a
CALL statement in another program which references this entry point.
U41112-J-Z125-1-76 391
ENTRY statement PROCEDURE DIVISION
2. The USING phrase has the effect that, at execution time, data-name-1 in the ENTRY
statement of the called program and identifier-1 in the USING phrase of the CALL
statement in the calling program refer to the same set of data, which is equally available
both to the called program and to the calling program. The names need not be the
same.
In the USING phrase of the ENTRY statement in the called program, a data-name may
occur only once; in the USING phrase of the CALL statement, however, the same
identifier-1 may be specified more than once.
3. In the called program, the operands of the USING phrase are treated according to the
data descriptions given in the LINKAGE SECTION.
4. An ENTRY statement may be executed only once (upon entry to the program). The
remainder of the program may contain no further ENTRY statements.
5. If a data item is passed in the CALL statement as a BY CONTENT parameter, the value
of this data item is transferred to a memory area which has the characteristics specified
for identifier-2 in the CALL statement before the CALL statement is executed. The data
type and length of each parameter in the BY CONTENT phrase of the CALL statement
must be the same as those of the corresponding parameter in the USING phrase in the
Procedure Division header.
392 U41112-J-Z125-1-76
PROCEDURE DIVISION EVALUATE statement
EVALUATE statement
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1 identifier-2
literal-1 literal-2
EVALUATE expression-1 ALSO expression-2 ...
TRUE TRUE
FALSE FALSE
ANY
condition-1
subcondition-1
TRUE
WHEN FALSE
identifier-3 THROUGH identifier-4
[NOT] literal-3 literal-4
arithm-expressn-1 THRU arithm-expressn-2
ANY
condition-2
subcondition-2
TRUE
ALSO FALSE ... ...
identifier-5 THROUGH identifier-6
[NOT] literal-5 literal-6
arithm-expressn-3 THRU arithm-expressn-4
imperative-statement-1} ...
[END-EVALUATE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The operands or the words TRUE and FALSE which appear before the first WHEN
phrase of the EVALUATE statement are referred to individually as selection subjects
and collectively, for all those specified, as the set of selection subjects.
2. The operands or the words TRUE, FALSE and ANY which appear in a WHEN phrase
of an EVALUATE statement are referred to individually as selection objects and collec-
tively, for all those specified in a single WHEN phrase, as the set of selection objects.
3. The words THROUGH and THRU are equivalent.
4. Two operands connected by a THROUGH phrase must be of the same class. The two
operands thus connected constitute a single selection object.
U41112-J-Z125-1-76 393
EVALUATE statement PROCEDURE DIVISION
5. The number of selection objects within each set of selection objects must be equal to
the number of selection subjects.
6. Each selection object within a set of selection objects must correspond to the selection
subject having the same ordinal position within the set of selection subjects according
to the following rules:
a) Identifiers, literals, or arithmetic expressions appearing within a selection object
must be valid operands (according to the rules for relation conditions) for
comparison with the corresponding operand in the set of selection subjects.
b) condition-1, condition-2, or the words TRUE or FALSE appearing as a selection
object must correspond to a conditional expression or the words TRUE or FALSE in
the set of selection subjects.
c) The word ANY may correspond to a selection subject of any type.
d) subcondition-1 or subcondition-2 may not start with an arithmetic operator.
e) subcondition-1 or subcondition-2 appearing within a selection object must corre-
spond to an identifier, a literal or an arithmetic expression in the set of selection sub-
jects. They must be specified in such a way that a valid, simple condition can be cre-
ated by inserting the corresponding subject in front of the subcondition.
General rules
1. The execution of the EVALUATE statement operates as if each selection subject and
selection object were evaluated and assigned a numeric or non-numeric value, a range
of numeric or non-numeric values, or a truth value. These values are determined as
follows:
a) Any selection subject specified by identifier-1, identifier-2, and any selection object
specified by identifier-3, identifier-5, without either the NOT or the THROUGH
phrase, are assigned the value and class of the data item referenced by the
identifier.
b) Any selection subject specified by literal-1, literal-2, and any selection object
specified by literal-3, literal-5, without either the NOT or the THROUGH phrase, are
assigned the value and class of the specified literal. If literal-3, literal-5, is the
figurative constant ZERO, it is assigned the class of the corresponding selection
subject.
c) Any selection subject in which expression-1, expression-2, is specified as an arith-
metic expression and any selection object, without either the NOT or the THROUGH
phrase, in which arithmetic-expression-1, arithmetic-expression-3, is specified are
assigned a numeric value according to the rules for evaluating an arithmetic
expression.
394 U41112-J-Z125-1-76
PROCEDURE DIVISION EVALUATE statement
U41112-J-Z125-1-76 395
EVALUATE statement PROCEDURE DIVISION
b) If the above comparison is satisfied for every selection object within the set of
selection objects being compared, the WHEN phrase containing that set of
selection objects is selected as the one satisfying the set of selection subjects.
c) If the above comparison is not satisfied for one or more selection objects within the
set of selection objects being compared, that set of selection objects does not
satisfy the set of selection subjects.
d) This procedure is repeated for subsequent sets of selection objects, in the order of
their appearance in the compilation unit, until either a WHEN phrase satisfying the
set of selection subjects is selected or until all sets of selection objects are
exhausted.
3. After the comparison operation is completed, execution of the EVALUATE statement
proceeds as follows:
a) If a WHEN phrase is selected, execution continues with the first imperative-
statement following the selected WHEN phrase. There is a branch to END-
EVALUATE after the last imperative-statement is executed.
b) If no WHEN phrase is selected and a WHEN OTHER phrase is specified, execution
continues with the imperative-statement of the WHEN OTHER phrase.
c) An EVALUATE statement is terminated when one of the following conditions is
satisfied:
– imperative-statement-1 of the selected WHEN phrase is executed,
– imperative-statement-2 is executed,
– no WHEN phrase is selected and no WHEN OTHER phrase is specified.
396 U41112-J-Z125-1-76
PROCEDURE DIVISION EVALUATE statement
Example 8-35
IDENTIFICATION DIVISION.
PROGRAM-ID. EVAL1.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 A PIC 9.
77 B PIC 9.
77 C PIC 9.
77 D PIC 9.
PROCEDURE DIVISION.
PROC SECTION.
DIALOG.
DISPLAY "Enter value for A" UPON T.
ACCEPT A FROM T.
DISPLAY "Enter value for B" UPON T.
ACCEPT B FROM T.
DISPLAY "Enter value for C" UPON T.
ACCEPT C FROM T.
DISPLAY "Enter value for D" UPON T.
ACCEPT D FROM T.
TEST1.
EVALUATE A + B ALSO C + D
WHEN 5 ALSO 5
DISPLAY "Values correct" UPON T
WHEN OTHER
DISPLAY "Values incorrect" UPON T
END-EVALUATE.
FINISH-PAR.
STOP RUN.
U41112-J-Z125-1-76 397
EVALUATE statement PROCEDURE DIVISION
Example 8-36
IDENTIFICATION DIVISION.
PROGRAM-ID. BSP.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 TYPE-OF-ORDER PIC 9.
88 ON-SITE VALUE 1.
88 IN-WRITING VALUE 2 THRU 4.
01 CUSTOMER-TYPE PIC X.
88 PRIVATE VALUE "1".
88 BUSINESS VALUE "2".
01 WEIGHT PIC 9999.
01 SHIPPING-MODE PIC 9.
88 PICK-UP VALUE 1.
88 MAIL VALUE 2.
88 RAIL VALUE 3.
88 UPS VALUE 4.
PROCEDURE DIVISION.
PROC SECTION.
DIALOG.
DISPLAY "Enter type-of-order" UPON T.
DISPLAY " on-site = 1, in-writing = 2-4 " UPON T.
ACCEPT TYPE-OF-ORDER FROM T.
DISPLAY "Customer-type" UPON T.
DISPLAY "Business = 2 , Private = 1 " UPON T.
ACCEPT CUSTOMER-TYPE FROM T.
DISPLAY "Enter weight" UPON T.
ACCEPT WEIGHT FROM T.
DETERMINATION-SHIPPING-MODE.
EVALUATE TRUE ALSO TRUE ALSO TRUE
WHEN PRIVATE ALSO ON-SITE ALSO ANY
WHEN BUSINESS ALSO ON-SITE ALSO ANY
SET PICK-UP TO TRUE
WHEN PRIVATE ALSO IN-WRITING ALSO WEIGHT < 5
SET MAIL TO TRUE
WHEN BUSINESS ALSO IN-WRITING ALSO WEIGHT < 10
SET UPS TO TRUE
WHEN OTHER SET RAIL TO TRUE
END-EVALUATE.
OUTPUT-PAR.
DISPLAY "Shipping-mode = " SHIPPING-MODE UPON T.
STOP RUN.
398 U41112-J-Z125-1-76
PROCEDURE DIVISION EVALUATE statement
Explanation:
The selection objects ON-SITE, IN-WRITING, PRIVATE, BUSINESS (condition-names)
are evaluated with respect to their truth value. The selection subjects are represented
by the three TRUEs; all three selection subjects (= set of selection subjects) have the
truth value "true". A set of selection objects satisfies the condition of the set of selection
subjects when all selection objects in the set (except those specified by ANY) are
assigned the truth value "true" (a WHEN phrase corresponds to a set of selection
objects). The statement which follows this WHEN phrase will then be executed. If none
of the specified sets of selection objects satisfies the comparison, the statement of the
WHEN OTHER phrase is executed. The ANY phrase must be used in the first two
WHEN phrases, because only two condition-names are tested for their truth value in
these WHEN phrases, whereas three condition-names are tested for their truth value in
the other WHEN phrases, and the number of selection objects within the set of selection
objects must correspond to the number of selection subjects.
U41112-J-Z125-1-76 399
EXIT statement PROCEDURE DIVISION
EXIT statement
Function
The EXIT statement provides a general exit at the end of a series of procedures.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
EXIT.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. The EXIT statement, when supplied at the end of a series of procedures, enables the
normal execution of that sequence of procedures to be interrupted, passing control
directly to the end of the procedure sequence.
2. If control reaches an "EXIT paragraph" and no associated PERFORM or USE
statement is active, then control passes to the first sentence of the next paragraph.
400 U41112-J-Z125-1-76
PROCEDURE DIVISION EXIT statement
Example 8-37
PROCEDURE DIVISION.
...
PERFORM X-PAR THRU Y-PAR.
...
X-PAR.
...
IF A IS ZERO, GO TO Y-PAR.
...
Y-PAR.
EXIT.
Z-PAR.
...
Here, the "EXIT paragraph" is the last procedure covered by the PERFORM statement. If
the value of A is zero, then the GO TO statement interrupts the normal flow of execution of
the statements ranging from X-PAR to Y-PAR, and passes control directly to the end of the
range of procedures specified by the PERFORM statement. After this, program execution
resumes with the next statement after PERFORM.
U41112-J-Z125-1-76 401
EXIT METHOD statement PROCEDURE DIVISION
Format
EXIT METHOD
Syntax rule
The EXIT METHOD statement may only be specified in the Procedure Division of a method.
General rule
The execution of an EXIT METHOD statement causes the executing method to terminate,
and control to return to the INVOKE statement.
402 U41112-J-Z125-1-76
PROCEDURE DIVISION EXIT PERFORM statement
Function
The EXIT PERFORM statement makes it possible to branch to the end of the PERFORM
statement or to a repetition of the loop from an in-line PERFORM statement.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
EXIT [TO TEST OF] PERFORM.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. An EXIT [TO TEST OF] PERFORM statement can only be specified within an in-line
PERFORM.
2. An EXIT TO TEST OF PERFORM statement can only refer to format 2, 3, or 4
PERFORM statements (see "PERFORM statement", page 448).
General rules
U41112-J-Z125-1-76 403
EXIT PERFORM statement PROCEDURE DIVISION
Example 8-38
IDENTIFICATION DIVISION.
PROGRAM-ID. EXITP.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 INPUTA PIC 99.
01 INPUT-STATUS PIC X VALUE LOW-VALUE.
88 INPUT-FINISH VALUE HIGH-VALUE.
01 AMOUNT PIC 9(3).
01 COUNTER PIC 99.
01 AVERAGE PIC Z9.9(2).
PROCEDURE DIVISION.
PROC SECTION.
COMPUTATION.
MOVE 0 TO COUNTER AMOUNT
DISPLAY "Calculation of the average of numbers" UPON T
PERFORM WITH TEST AFTER UNTIL INPUT-FINISH
DISPLAY "Input numbers (2 digits, end at input 00)" UPON T
ACCEPT INPUTA FROM T
IF INPUTA IS NOT NUMERIC
THEN
DISPLAY "Input is not numeric or not with 2 digits!" UPON T
EXIT TO TEST OF PERFORM
END-IF
IF INPUTA = 0
THEN
SET INPUT-FINISH TO TRUE
EXIT TO TEST OF PERFORM
END-IF
ADD 1 TO COUNTER
ADD INPUTA TO AMOUNT
END-PERFORM
IF COUNTER > 0
THEN
COMPUTE AVERAGE ROUNDED = AMOUNT / COUNTER
DISPLAY "Average = " AVERAGE UPON T
ELSE
DISPLAY "No calculation of average performed" UPON T
END-IF
STOP RUN.
The program calculates the average of numbers that have been input at the terminal. End
criterion is the input of 00; invalid input is reported.
404 U41112-J-Z125-1-76
PROCEDURE DIVISION EXIT PROGRAM statement
Function
The EXIT PROGRAM statement marks the dynamic end of a called program.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
EXIT PROGRAM
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
U41112-J-Z125-1-76 405
GOBACK statement PROCEDURE DIVISION
GOBACK statement
Function
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
GOBACK
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
The GOBACK statement must not be used in a global USE procedure or a method.
General rules
1. The GOBACK statement has the same effect as the following sequence:
EXIT PROGRAM
STOP RUN
2. For GOBACK the same rules therefore apply as for EXIT PROGRAM and STOP RUN.
406 U41112-J-Z125-1-76
PROCEDURE DIVISION GO TO statement
GO TO statement
Function
The GO TO statement is used to transfer control from one part of the Procedure Division to
another.
Format 1 of the GO TO statement passes control to a specific procedure.
Format 2 of the GO TO statement passes control to one of a series of specified
procedures, depending on the value of a data item.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
GO TO [ procedure-name ]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
General rules
U41112-J-Z125-1-76 407
GO TO statement PROCEDURE DIVISION
Example 8-39
GO TO END-ROUTINE.
...
END-ROUTINE.
CLOSE CARD-FILE, PRINTER-FILE.
STOP RUN.
In this example, the GO TO statement transfers control to the procedure named
END-ROUTINE; the CLOSE statement is executed immediately after the GO TO statement.
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
GO TO {procedure-name-1}...
DEPENDING ON identifier
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. identifier is the name of an elementary numeric data item described as an integer. The
USAGE must be either DISPLAY, COMPUTATIONAL, COMPUTATIONAL-5, BINARY,
COMPUTATIONAL-3 or PACKED-DECIMAL.
2. When a GO TO statement is executed, control is transferred to procedure-name-1...,
depending on the value of the identifier, which may be 1, 2, ... n.
If the identifier has any value other than 1, 2, ... n, no transfer of control takes place, and
processing continues with the next statement in the normal sequence for execution (n
represents the specified number of procedure-names).
408 U41112-J-Z125-1-76
PROCEDURE DIVISION GO TO statement
General rule
77 A PICTURE 9.
...
MOVE 3 TO A.
...
GO TO X-PAR Y-PAR Z-PAR DEPENDING ON A.
Since the value of A is 3 when the GO TO statement is executed, control is transferred to
Z-PAR, the third procedure-name in the series.
U41112-J-Z125-1-76 409
IF statement PROCEDURE DIVISION
IF statement
Function
The IF statement causes a condition to be evaluated (see under "Conditions", page 319).
The subsequent action of the program depends upon whether the condition is true or false.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IF condition THEN statement-1 [ELSE statement-2]
END-IF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
statement-1 statement-2
IF condition THEN ELSE
NEXT SENTENCE NEXT SENTENCE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. statement-1 and statement-2 may consist of one or more imperative statements and/or
one conditional statement.
2. An IF statement with the NEXT SENTENCE phrase must not be contained within
statement-1 or statement-2 of a format 1 IF statement which is immediately terminated
with END-IF.
General rules
410 U41112-J-Z125-1-76
PROCEDURE DIVISION IF statement
3. IF statements within IF statements may be considered as paired IF, ELSE, and END-IF
combinations, proceeding from left to right. Thus, any ELSE or END-IF encountered is
considered to apply to the immediately preceding IF that has not been already paired
with an ELSE or END-IF.
4. When an IF statement is executed, the following transfers of control occur:
a) If the condition is true and statement-1 is specified, control is transferred to the first
statement of statement-1 and execution continues according to the rules for each
statement specified in statement-1. If a procedure branching or conditional
statement is executed which causes an explicit transfer of control, control is
explicitly transferred in accordance with the rules of that statement. Upon
completion of the execution of statement-1, the ELSE phrase, if specified, is ignored
and control passes to the end of the IF statement.
b) If the condition is true and the NEXT SENTENCE phrase is specified instead of
statement-1, the ELSE phrase, if specified, is ignored and control passes to the next
executable sentence.
c) If the condition is false and statement-2 is specified, statement-1 or its surrogate
NEXT SENTENCE is ignored, control is transferred to the first statement of
statement-2, and execution continues according to the rules for each statement
specified in >statement-2. If a procedure branching or conditional statement is
executed which causes an explicit transfer of control, control is explicitly transferred
in accordance with the rules of that statement. Upon completion of the execution of
statement-2, control passes to the end of the IF statement.
d) If the condition is false and the ELSE phrase is not specified, statement-1 is ignored
and control passes to the end of the IF statement.
e) If the condition is false and the ELSE NEXT SENTENCE phrase is specified, state-
ment-1 is ignored and control passes to the next executable sentence.
Example 8-41
IF A = B
THEN
statement-1
END-IF
statement-2.
U41112-J-Z125-1-76 411
IF statement PROCEDURE DIVISION
Example 8-42
IF A = B
THEN
statement-1
ELSE
statement-2
END-IF
statement-3.
If A = B is true, statement-1 and statement-3 are executed.
If A = B is false, statement-2 and statement-3 are executed.
Example 8-43
IF A = B
THEN
CONTINUE
ELSE
statement-1
END-IF
statement-2.
If A = B is true, statement-2 is executed.
If A = B is false, statement-1 and statement-2 are executed.
Example 8-44
URLR2> IF MALE
URLR2> IF MARRIED
ADD 1 TO MALES-MARRIED
OURLR2> ELSE
URLR2> IF DIVORCED
ADD 1 TO MALES-DIVORCED
OURLR2> ELSE
ADD 1 TO MALES-SINGLE
ORLR2> END-IF
ORLR2> END-IF
OURLR2> ELSE
ADD 1 TO FEMALE
ORLR2> END-IF
next statement
This is an example of the structure of a nested IF statement. The arrows are used to indicate
the IF, ELSE and END-IF assignments.
412 U41112-J-Z125-1-76
PROCEDURE DIVISION INITIALIZE statement
INITIALIZE statement
Function
The INITIALIZE statement enables particular categories of data items to be preset with
initial values, e.g. zeros for numeric items or blanks for alphanumeric items.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
INITIALIZE {identifier-1} ...
ALPHABETIC
ALPHANUMERIC identifier-2
REPLACING NUMERIC DATA BY ...
ALPHANUMERIC-EDITED literal-1
NUMERIC-EDITED
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. literal-1 and identifier-2 represent sending items; identifier-1 is the receiving item.
2. Each data category named in the REPLACING phrase must be allowed as the data
category of a receiving item in a MOVE statement in which the sending item is repre-
sented by identifier-2 or literal-1.
3. Each data category can only be named once in the REPLACING phrase.
4. The data description entry of identifier-1 or a data item subordinate to identifier-1 must
not contain the DEPENDING phrase of the OCCURS clause. identifier-1 must not be
subordinate to a table that is defined with the DEPENDING phrase.
5. An index data item must not occur as the operand of an INITIALIZE statement.
6. The data description entry of identifier-1 must not contain the RENAMES clause.
General rules
1. The keyword following REPLACING identifies a data category (see page 74).
2. Regardless of whether identifier-1 represents an elementary item or a group item, all
move operations are performed as though a sequence of MOVE statements had been
written, each of them with an elementary item as receiving item.
The following rules apply if the REPLACING phrase is specified:
a) If identifier-1 is a group, each elementary item in this group is initialized only if it
belongs to the data category named in the REPLACING phrase.
U41112-J-Z125-1-76 413
INITIALIZE statement PROCEDURE DIVISION
414 U41112-J-Z125-1-76
PROCEDURE DIVISION INITIALIZE statement
Example 8-45
IDENTIFICATION DIVISION.
PROGRAM-ID. INIT1.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION>
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WAGE-RATE.
02 SURNAME PIC X(30).
02 NAME PIC X(30).
02 ADDRESS PIC X(30).
02 DATE-OF-BIRTH.
03 BDAY PIC 99.
03 MONTH PIC 99.
03 YEAR PIC 99.
02 HIRING-DATE.
03 HDAY PIC 99.
03 MONTH PIC 99.
03 YEAR PIC 99.
02 NO-OF-HOURS PIC 9(3).
02 HOURLY-RATE PIC 9(2)V99.
PROCEDURE DIVISION.
MAIN SECTION.
P1.
INITIALIZE WAGE-RATE.
DISPLAY WAGE-RATE UPON T.
STOP RUN.
The statement INITIALIZE WAGE-RATE means:
MOVE SPACE TO SURNAME NAME ADDRESS
MOVE ZERO TO BDAY OF DATE-OF-BIRTH
MONTH OF DATE-OF-BIRTH
YEAR OF DATE-OF-BIRTH
HDAY OF HIRING-DATE
MONTH OF HIRING-DATE
YEAR OF HIRING-DATE
NO-OF-HOURS, HOURLY-RATE
U41112-J-Z125-1-76 415
INSPECT statement PROCEDURE DIVISION
INSPECT statement
Function
The INSPECT statement enables single characters or groups of characters within a data
item to be tallied, replaced, or tallied and replaced.
Format 1 (tallying)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
INSPECT identifier-1 TALLYING
ALL identifier-3
BEFORE identifier-4
identifier-2 FOR LEADING literal-1 INITIAL ...MU...MU...
AFTER literal-2
CHARACTERS
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Format 2 (replacing)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
INSPECT identifier-1 REPLACING
416 U41112-J-Z125-1-76
PROCEDURE DIVISION INSPECT statement
ALL identifier-3
identifier-2 FOR BEFORE identifier-4
LEADINGliteral-1 INITIAL .........
AFTER literal-2
CHARACTERS
REPLACING
Format 4 (converting)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-6 identifier-7BEFORE identifier-4
INSPECT identifier-1 CONVERTING TO INITIAL ...
literal-4 literal-5 AFTER literal-2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. identifier-1 may reference either a group item or an elementary item, but it must be
described (implicitly or explicitly) with USAGE IS DISPLAY.
2. identifier-3, ..., identifier-n may reference either a group item or an elementary item, but
it must be described (implicitly or explicitly) with USAGE IS DISPLAY.
3. literal-1, literal-2, literal-3, literal-4, literal-5 must be either non-numeric literals or
figurative constants which do not begin with ALL.
If literal-1, literal-2 or literal-4 is a figurative constant, it implicitly represents a single-
character item.
4. Only one BEFORE and/or AFTER entry may be assigned to each individual ALL,
LEADING, CHARACTERS, FIRST, or CONVERTING phrases.
U41112-J-Z125-1-76 417
INSPECT statement PROCEDURE DIVISION
7. When CHARACTERS is used, literal-2, literal-3, identifier-4 and identifier-5 must each
be one character in length.
418 U41112-J-Z125-1-76
PROCEDURE DIVISION INSPECT statement
5. While the contents of identifier-1 are being checked, each occurrence of literal-1 will be
tallied (format 1) or all characters matching literal-1 will be replaced by literal-3 (format
2). If CHARACTERS is used, the characters in identifier-1 are tallied or replaced by
literal-3 one at a time, depending on where the comparison operation is currently
positioned.
6. The TALLYING or REPLACING operands are processed from left to right in the order in
which they were specified in the INSPECT statement (comparison cycle). The first
comparison cycle starts at the leftmost character in identifier-1.
7. If BEFORE or AFTER are omitted, the comparison operation to determine the occur-
rences of literal-1 in identifier-1 takes place as follows:
a) The first literal-1 is compared to a series of contiguous characters within identifier-
1 starting with the leftmost character, where the length of this series is equal to the
length of literal-1. Only if literal-1 and this portion of identifier-1 are identical,
character-for-character, does a match occur.
U41112-J-Z125-1-76 419
INSPECT statement PROCEDURE DIVISION
420 U41112-J-Z125-1-76
PROCEDURE DIVISION INSPECT statement
9. The contents of identifier-2 are not initialized when the INSPECT statement is executed.
10. If identifier-1, identifier-3 or identifier-4 occupies the same memory area as identifier-2,
the results of the INSPECT statement will be unpredictable, even when these identifiers
are defined in the same data description entry (see "Overlapping operands", page 347).
11. The mandatory words ALL, LEADING and FIRST are adjectives which apply to all
subsequent BY phrases until the next adjective is entered.
12. If FIRST is used, literal-1 will be replaced by literal-3 within identifier-1 only at the
position where it occurs for the first time. This rule applies to all successive FIRST
phrases, regardless of the value of literal-1.
13. If identifier-3, identifier-4 or identifier-5 occupies the same memory area as identifier-1,
the results of the INSPECT statement will be unpredictable, even when these identifiers
are described in the same data description entry (see "Overlapping operands",
page 347).
14. A format 3 INSPECT statement is executed as though it were two successive INSPECT
statements referring to the same identifier-1, namely one format 1 INSPECT statement
(with TALLYING phrase) and a format 2 INSPECT statement (with REPLACING
phrase).
The rules given for formats 1 and 2 apply accordingly. Subscripting associated with any
identifier in the format 2 statement is evaluated only once before executing the format 1
statement.
U41112-J-Z125-1-76 421
INSPECT statement PROCEDURE DIVISION
16. If identifier-4, identifier-6 or identifier-7 occupies the same memory area as identifier-1,
the results of the INSPECT statement will be unpredictable, even when the identifiers
are defined in the same data description entry (see "Overlapping operands", page 347).
Example 8-46
for all format:
IDENTIFICATION DIVISION.
PROGRAM-ID. INSP.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 COUNTER1 PIC 99 VALUE ZEROES.
01 COUNTER2 PIC 99 VALUE 0.
01 COUNTER3 PIC 99 VALUE 0.
01 FIELD PIC X(20) VALUE SPACES.
...
PROCEDURE DIVISION.
PROC SECTION.
COUNT-PAR.
MOVE "BBYZYZBBYZAXBXBBX" TO FIELD.
INSPECT FIELD TALLYING
COUNTER1 FOR ALL "X" AFTER INITIAL "A"
COUNTER2 FOR LEADING "YZ" AFTER INITIAL "BB" (1)
COUNTER3 FOR CHARACTERS BEFORE INITIAL "A".
DISPLAY "After INSPECT" UPON T.
DISPLAY "Counter1 = *" COUNTER1 "*" UPON T.
DISPLAY "Counter2 = *" COUNTER2 "*" UPON T.
DISPLAY "Counter3 = *" COUNTER3 "*" UPON T.
REPLACE-1.
MOVE "MR. COBOLUSER" TO FIELD.
DISPLAY "Before INSPECT" UPON T
DISPLAY "Field = *" FIELD "*" UPON T.
INSPECT FIELD REPLACING
CHARACTERS BY "X" AFTER INITIAL "MR. "
BEFORE INITIAL "U".
DISPLAY "After INSPECT" UPON T.
DISPLAY "Field = *" FIELD "*" UPON T.
REPLACE-2.
MOVE "ALGOL-PROGRAM" TO FIELD.
DISPLAY "Before INSPECT" UPON T.
DISPLAY "Field = *" FIELD "*" UPON T.
422 U41112-J-Z125-1-76
PROCEDURE DIVISION INSPECT statement
U41112-J-Z125-1-76 423
INSPECT statement PROCEDURE DIVISION
Explanation:
(1) In the case of COUNTER2, the instances of YZ underlined in the following string were
tallied in FIELD:
BBYZYZBBYZAXBXBBX
In other words, with each of the underlined YZ pairs there was a match in the sense of
general rule 7f. Hence, on both occasions the compare cycle resumed with the first
literal-1, i.e. with COUNTER1.
The result is as follows:
COUNTER3 is not incremented for the underlined YZ pairs. Hence, only the following
underlined characters are tallied:
BBYZYZBBYZAXBXBBX
Thus, COUNTER3 is equal to 6.
COUNTER3 would be equal to 10 following an INSPECT statement in which
COUNTER3 was the first or the only literal-1.
(2) The replacement of leading YZ pairs by AB is caused by entering AFTER INITIAL "XX".
BEFORE INITIAL "-" has no effect since no leading YZ pairs are present from the out-
set.
(3) This INSPECT statement has the same effect as the following statement:
INSPECT FIELD REPLACING
ALL "C" BY "U" AFTER "#" BEFORE "-"
ALL "D" BY "V" AFTER "#" BEFORE "-"
ALL "E" BY "W" AFTER "#" BEFORE "-"
ALL "F" BY "U" AFTER "#" BEFORE "-".
424 U41112-J-Z125-1-76
PROCEDURE DIVISION INVOKE statement
INVOKE statement
Function
Format
identifier-2
INVOKE identifier-1 literal-1
identifier-3
[BY REFERENCE]
OMITTED
identifier-5
[BY CONTENT] arithmetic-expression-1
[USING literal-2 ...]
identifier-5
[BY VALUE] arithmetic-expression-1
literal-2
[RETURNING Ïidentifier-4]
[ON EXCEPTION imperative-statement-1]
[NOT ON EXCEPTION imperative-statement-2]
[END-INVOKE]
Syntax rules
U41112-J-Z125-1-76 425
INVOKE statement PROCEDURE DIVISION
5. identifier-3 must reference a data item defined in the FILE SECTION, WORKING-
STORAGE SECTION, LOCAL-STORAGE SECTION or LINKAGE SECTION.
6. If identifier-5 or its corresponding formal parameter (in the Procedure Division header)
is specified with the BY VALUE phrase, identifier-5 must be of class numeric or object.
7. identifier-4 must reference a data item defined in the FILE SECTION, WORKING-
STORAGE SECTION, LOCAL-STORAGE SECTION or LINKAGE SECTION.
8. If identifier-2 is specified, identifier-1 must be a universal object reference
9. If identifier-1 is not a universal object reference, the rules for conformance as specified
for parameters and returning items apply.
10. If identifier-1 is not a universal object reference and a BY CONTENT or BY
REFERENCE phrase is specified for an argument, a BY REFERENCE phrase must be
specified for the corresponding formal parameter in the Procedure Division header.
11. BY CONTENT may not be omitted when identifier-5 is an identifier that is permitted as
a receiving operand.
12. If a BY VALUE phrase is specified for an argument, a BY VALUE phrase must also be
specified for the corresponding formal parameter in the Procedure Division header.
13. If an OMITTED phrase is specified, an OPTIONAL phrase must also be specified for
the corresponding formal parameter in the Procedure Division header.
14. identifier-5 and any identifier specified in arithmetic-expression-1 is a sending operand.
15. identifier-4 is a receiving operand.
General rules
426 U41112-J-Z125-1-76
PROCEDURE DIVISION INVOKE statement
U41112-J-Z125-1-76 427
INVOKE statement PROCEDURE DIVISION
428 U41112-J-Z125-1-76
PROCEDURE DIVISION MERGE statement
MERGE statement
Function
The MERGE statement creates a sort-file into which records are accepted from two or more
similarly sorted input files. It merges the records in the sort-file on the basis of a set of
specified data items (keys) and, once this merge operation is finished, makes each record
from the sort-file available to an output procedure or to output files.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
MERGE sort-file-name
DESCENDING KEY
ON {data-name-1}... ...
ASCENDING KEY-YY
USING {file-name-1}...
THRU
OUTPUT PROCEDURE IS section-name-1 section-name-2
THROUGH
GIVING {file-name-2}...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. sort-file-name must be defined in a sort-file description (SD) entry in the Data Division.
2. sort-file-name must correspond to the sort-file-name defined in the SELECT clause
(format 2).
3. The file names specified in the USING phrase must not be specified in the GIVING
phrase.
4. data-name-1... are key data-names. A key is that part of a record which is used as a
basis for sorting. Key data-names must be defined in a record description belonging to
an SD description entry. They are subject to the following rules:
a) The data items identified by key data-names must not be of variable length.
b) The data-names describing the keys may be qualified (see "Qualification",
page 84).
U41112-J-Z125-1-76 429
MERGE statement PROCEDURE DIVISION
c) When two or more record descriptions are supplied, the keys need only be
described in one of these descriptions. If a key is defined in more than one record
description, the descriptions of that key must be identical, and must ensure that the
key appears in the same position within each record.
d) A key must not be defined with an OCCURS clause and must not be subordinate to
a data item defined with an OCCURS clause.
e) If the sort-file contains variable length records, all the data items identified by key
data-names must be contained within the first n character positions of the record,
where n equals the minimum record size specified for the sort-file.
f) A maximum of 64 keys may be specified for any file.
g) Each key must lie within the first 4096 bytes.
h) Keys are always listed from left to right in the order of their decreasing significance,
regardless of whether they are ascending or descending. Hence, the first occur-
rence of data-name-1 would be the principal sort-key and the second occurrence of
data-name-1 the subsidiary key.
i) A key, when expressed as a packed decimal, may have no more than 16 digits.
j) The keys following the KEY-YY specification must be defined either with PIC 99
USAGE DISPLAY or USAGE PACKED-DECIMAL (see section 11.7).
5. section-name-1 identifies the first or only section in the output procedure. section-
name-2 identifies the last section in the output procedure. It is required only if the output
procedure consists of more than one section.
6. file-name-1..., file-name-2... must be defined in a file description (FD) entry in the Data
Division.
7. The size of the records that can be passed to a MERGE operation or written to an output
file is dependent on the record format of the sort-file (variable or fixed) and will be
discussed in more detail in the "General rules" when the USING/GIVING phrases are
mentioned.
8. At least one ASCENDING/DESCENDING phrase must be specified in a MERGE
statement.
9. The MERGE statement may be written anywhere in the program except
a) in the declaratives area,
b) in an input/output procedure belonging to a SORT/MERGE statement.
10. The sort- and input-files named in the MERGE statement must not be specified together
in the same SAME AREA, SAME SORT AREA or SAME SORT-MERGE AREA (see
"SAME AREA clause", page 200).
430 U41112-J-Z125-1-76
PROCEDURE DIVISION MERGE statement
11. If file-name-2 references an indexed file, the first specification of data-name-1 must be
associated with an ASCENDING phrase and the data item referenced by that data-
name-1 must occupy the same character positions in its record as the record key
occupies within the file referenced by file-name-2.
General rules
U41112-J-Z125-1-76 431
MERGE statement PROCEDURE DIVISION
READ operation. Relative files must be described in the FILE CONTROL paragraph
with ACCESS MODE IS SEQUENTIAL.
If the sort-file contains variable length records, the size which the record had when
it was input is used as the length for a record when it is transferred to a MERGE
operation. This length must be within the range defined for the sort-file in the
RECORD clause (see "RECORD clause", page 225). If the sort-file has a fixed
length record format, records shorter than the specified format length will be
supplied with blanks, longer records will not be permitted.
c) The processing of the file is terminated. The termination is performed as if a CLOSE
statement without optional phrases had been executed.
These implicit functions are performed such that any associated USE AFTER EX-
CEPTION/ERROR procedures are executed.
5. OUTPUT PROCEDURE indicates that the Procedure Division contains an output
procedure to process records after they have been merged. If OUTPUT PROCEDURE
is specified, control passes to it after the sort-file has been processed by the MERGE
statement. During RETURN statement processing, the output procedure accepts the
records from the sort-file. The compiler inserts a return mechanism at the end of the
last section of the output procedure. When control passes to the last statement in the
output procedure, the return mechanism provides for termination of the sort, and then
passes control to the statement following the MERGE statement.
The following rules apply to the output procedure, which is a self-contained section
within the Procedure Division:
a) It must consist of one or more sections that are written consecutively.
b) It must contain at least one RETURN statement, to make merged records available
for processing.
c) It must not lead to execution of a MERGE, RELEASE, or SORT statement.
d) It may include any procedures needed to select, modify, or copy records.
e) A branch may be made from the output procedure if the programmer makes sure
that a transfer of this type is followed by a return to the output procedure in order to
effect a proper exit from this procedure (i.e. to processing its last statement).
f) A branch may be made from points outside an output procedure to procedure-
names within that procedure if the branch does not involve a RETURN statement or
the end of the output procedure.
6. When the OUTPUT PROCEDURE phrase is used, control is passed from the specified
procedure as though a format-1 PERFORM statement is executing. That is, all sections
constituting the procedure are executed once, and execution of the procedure is termi-
nated after its last statement has been processed. Thus, any procedure may be termi-
nated by using an EXIT statement.
432 U41112-J-Z125-1-76
PROCEDURE DIVISION MERGE statement
U41112-J-Z125-1-76 433
MOVE statement PROCEDURE DIVISION
MOVE statement
Function
The MOVE statement transfers data from one data item to one or more other data items.
Format 1 of the MOVE statement moves one data item to one or more other data
items.
Format 2 of the MOVE statement moves corresponding data items from one group to
another.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1
MOVE TO {identifier-2}...
literal
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. identifier-1 or literal represents the sending item. The data in this area is moved to the
receiving item specified by identifier-2.
The same data is also moved to every additional receiving item that is specified
(identifier-3...identifier-n), if such receiving items are supplied in the statement.
The rules specified below for identifier-2 also apply to all other receiving items:
2. An index data item or a data item of class “object” must not appear as an operand of a
MOVE statement.
3. Any subscripting or indexing associated with identifier-2 is evaluated immediately
before the data is moved to the relevant data item.
4. Any necessary conversion of data from one form of internal representation to another
takes place during legal moves, along with any editing specified for the receiving data
item. This is described more fully in the general rules which follow.
General rules
434 U41112-J-Z125-1-76
PROCEDURE DIVISION MOVE statement
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CORRESPONDING
MOVE identifier-1 TO {identifier-2}...
CORR
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
The following rules for identifier-2 also apply to any additional identifiers which follow
identifier-2.
1. CORR is the abbreviation for CORRESPONDING.
2. identifier-1 specifies a group item which contains the elementary data items to be
moved.
3. identifier-2 specifies a group item which contains the receiving items for the move.
4. The data items selected from the first operand (identifier-1) are moved to corresponding
data items within the second operand (identifier-2). Data items from each group are
considered to be corresponding when both data items have the same name and
qualification up to, but not necessarily including, identifier-1 and identifier-2. The results
of the MOVE CORRESPONDING statement are the same as if the user had specified
each pair of corresponding identifiers in a separate MOVE statement of format 1 (for fur-
ther rules see the CORRESPONDING phrase, page 341).
5. Any subscripting or indexing associated with identifier-2 is evaluated immediately
before the data is moved to the relevant data item.
6. Any necessary conversion of the data from one form of internal representation to
another takes place during legal moves, along with any editing specified for the
receiving data item. This is described more fully in the general rules which follow.
1. At least one of the data items in each pair of corresponding data items must be an
elementary data item (note that the MOVE statement differs from arithmetic statements
in this respect: in arithmetic statements using the CORRESPONDING phrase, both
corresponding items must be elementary data items).
2. A data item that is subordinate to identifier-1 or identifier-2 and contains an OCCURS,
REDEFINES, USAGE IS INDEX or RENAMES clause will be ignored. However,
identifier-1 or identifier-2 may have REDEFINES or OCCURS clauses or be subor-
dinate to data items with REDEFINES or OCCURS clauses.
For further general rules see "General rules for both formats" (page 437).
U41112-J-Z125-1-76 435
MOVE statement PROCEDURE DIVISION
Example 8-47
for format 2
Procedure Division statement:
MOVE CORRESPONDING EMPLOYEE-RECORD TO PAYROLL-CHECK.
01 EMPLOYEE-RECORD. 01 PAYROLL-CHECK.
02 EMPLOYEE-NUMBER. 02 EMPLOYEE-NUMBER.
03 PLANT-LOCATION... 03 CLOCK-NUMBER...
03 CLOCK-NUMBER. 03 FILLER...
04 SHIFT-CODE... 02 DEDUCTIONS.
04 CONTROL-NUMBER... 03 FICA-RATE...
02 WAGES. 03 WITHHOLDING-TAX...
03 HOURS-WORKED... 03 PERSONAL-LOANS...
03 PAY-RATE... 02 WAGES.
02 FICA-RATE... 03 HOURS-WORKED...
02 DEDUCTIONS... 03 PAY-RATE...
02 NET-PAY...
02 EMPLOYEE-NAME...
03 SHIFT-CODE...
According to the MOVE CORRESPONDING rules, the following data items would be
moved:
Sending area Receiving area
CLOCK-NUMBER OF EMPLOYEE- CLOCK-NUMBER OF EMPLOYEE-NUMBER OF PAYROLL-
NUMBER OF EMPLOYEE-RECORD CHECK
HOURS-WORKED OF WAGES OF HOURS-WORKED OF WAGES OF PAYROLL-CHECK
EMPLOYEE-RECORD
PAY-RATE OF WAGES OF PAY-RATE OF WAGES OF PAYROLL-CHECK
EMPLOYEE-RECORD
DEDUCTIONS OF EMPLOYEE-RECORD DEDUCTIONS OF PAYROLL-CHECK
436 U41112-J-Z125-1-76
PROCEDURE DIVISION MOVE statement
The following items are not moved, for the reasons stated:
Field Reason
EMPLOYEE-NUMBER Item is not elementary in either group.
PLANT-LOCATION OF EMPLOYEE- Item does not appear in PAYROLL-CHECK.
NUMBER OF EMPLOYEE-RECORD
SHIFT-CODE OF CLOCK-NUMBER OF Qualification is not identical in PAYROLL-CHECK.
EMPLOYEE-NUMBER OF EMPLOYEE-RECORD
CONTROL-NUMBER OF CLOCK-NUMBER OF Item does not appear in PAYROLL-CHECK.
EMPLOYEE-NUMBER OF EMPLOYEE-RECORD
WAGES Item is not elementary in either group.
FICA-RATE OF EMPLOYEE-RECORD Qualification is not identical in PAYROLL-CHECK.
1. Any move in which the sending and receiving items are both elementary items is an
elementary move. Table 8-12 lists the classes to which elementary items belong.
Item Category
Elementary data item Numeric, alphabetic or alphanumeric, alphanumeric edited,
numeric edited
Numeric literal Numeric
Non-numeric literal Alphanumeric
Table 8-12 Categories of elementary items
Any move in which either or both items are group items is a group move.
2. Table 8-13 lists all elementary and group moves, and indicates which moves are legal.
The remaining general rules describe the execution of legal moves.
U41112-J-Z125-1-76 437
MOVE statement PROCEDURE DIVISION
3. Any editing specified for the receiving data item takes place during an elementary move
(some examples are given below).
438 U41112-J-Z125-1-76
PROCEDURE DIVISION MOVE statement
4. There are two types of elementary moves: alphanumeric moves and numeric moves.
a) An alphanumeric move takes place when an alphanumeric edited, alphanumeric,
or alphabetic item is the receiving item. Table 8-14 lists the rules for this type of
move.
Sending item Receiving item
Rule PICTURE Value PICTURE IS Value
IS
The characters are placed in the XXX M8N XXXXX M8NËË
receiving item from left to right,
unless the receiving item is specified
as JUSTIFIED RIGHT. If the
receiving item is not completely filled
by the data being moved, the
remaining positions are filled with
spaces.
If the sending item is longer than the AAAAAA XYZABC AAA XYZ
receiving item, the move is termi-
nated as soon as the receiving item
is filled. Excess characters are AAA ABC
truncated. If the receiving item is JUST RIGHT
described as JUSTIFIED RIGHT,
truncation is performed on the left.
If the sending item has an opera- S999 -333 XXX 333
tional sign, its absolute value is
moved.
Table 8-14 Rules for alphanumeric moves
b) A numeric move takes place when there is a move from a numeric item or numeric
edited item to a numeric item or numeric edited item. Table 3-19 lists the rules for
this type of move. When there is a move from a numeric edited item to a numeric
item, those characters in the numeric edited item which represent signs or digits are
taken into consideration. The move of a numeric edited item to a numeric edited
item is treated as a move of a numeric edited item to a numeric item, followed by
the move of a numeric item to a numeric edited item.
U41112-J-Z125-1-76 439
MOVE statement PROCEDURE DIVISION
*)
V is the assumed decimal point. Any necessary conversion of data from one
form of internal representation to another takes place during the move.
5. Any move involving group items is treated exactly as though it were an alphanumeric
elementary move, except that there is no conversion of data.
If a group item contains a subordinate item whose description includes an
OCCURS...DEPENDING ON clause, then the group item is said to be of variable
length.
If such a variable-length group item is involved in a move, only the current active length
of the group item is used in the move. The length is determined by the DEPENDING
ON phrase. This applies to both sending and receiving item.
6. If the sending or receiving operands of a MOVE statement share the same storage area
(i.e. if the operands "overlap"), then execution of that statement produces unpredictable
results.
440 U41112-J-Z125-1-76
PROCEDURE DIVISION MULTIPLY statement
MULTIPLY statement
Function
The MULTIPLY statement is used to perform multiplication of two numeric operands and
store the result.
Format 1 of the MULTIPLY statement stores the products in the specified multiplier.
Format 2 of the MULTIPLY statement uses the GIVING phrase.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1
MULTIPLY BY {identifier-2 [ROUNDED]}...
literal-1
[END-MULTIPLY]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Example 8-48
for format 1
Statement PICTURE of result item Calculation
MULTIPLY A BY B 999 A * B stored in B as nnn
U41112-J-Z125-1-76 441
MULTIPLY statement PROCEDURE DIVISION
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1 identifier-2
MULTIPLY BY
literal-1 literal-2
[END-MULTIPLY]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. Each identifier preceding the word GIVING must refer to a numeric elementary item.
2. identifier-3... may refer to a numeric elementary item or a numeric edited elementary
item.
3. The value of identifier-1 or literal-1 is multiplied by the value of identifier-2 or literal-2,
and the product is stored in identifier-3 (the same applies to additional receiving items).
4. The maximum size of the product after decimal point alignment is 18 decimal digits.
5. END-MULTIPLY delimits the scope of the MULTIPLY statement.
Additional rules are given under "Options in arithmetic statements" (page 341ff), where the
ROUNDED, (NOT) ON SIZE ERROR, and GIVING phrases are discussed.
Example 8-49
for format 2
442 U41112-J-Z125-1-76
PROCEDURE DIVISION OPEN statement
OPEN statement
Function
The OPEN statement opens files for processing and performs label checking and output.
Syntax rules
1. The EXTEND phrase must not be used for multi-file volumes (see also "I-O-CONTROL
paragraph", page 195).
2. EXTEND may be specified only for files for which no LINAGE clause has been
specified.
3. A file-name must not appear more than once in an OPEN statement.
4. The I-O phrase is permitted for disk storage files only.
5. The files specified in a given OPEN statement may have different organizations or
access modes.
6. In the case of line sequential files, the only permissible open modes are OPEN INPUT
and OPEN OUTPUT without the specifications REVERSED and NO REWIND.
U41112-J-Z125-1-76 443
OPEN statement PROCEDURE DIVISION
1. The same file-name must not appear more than once in an OPEN statement.
2. The files specified in a given OPEN statement need not all have the same organization
or access mode.
3. The EXTEND phrase may be specified only for files with sequential access.
General rules
444 U41112-J-Z125-1-76
PROCEDURE DIVISION OPEN statement
10. If an optional file does not exist, successful execution of an OPEN statement with I-O
or EXTEND phrase causes the file to be created.
11. After execution of an OPEN statement, the contents of the data item indicated in the
FILE STATUS clause (if specified) will be updated (see also "FILE STATUS clause",
page 189).
12. If more than one file-name is specified, the result is the same as if a separate OPEN
statement had been written for each file-name.
13. I-O indicates that input and output operations (i.e. read, write and update operations)
are to be performed on the file (update mode).
Since this phrase implies the existence of the file, it cannot be used if the file is being
initially created.
14. All of the INPUT, OUTPUT, EXTEND or I-O phrases may be used, within the same
program, in different OPEN statements for a given file. Following the initial execution of
an OPEN statement for a file, each subsequent OPEN statement for the same file must
be preceded by the execution of a CLOSE statement. The LOCK phrase must not be
specified in this CLOSE statement.
15. If an optional file for which OPEN INPUT is specified does not exist, the I/O status is set
to the appropriate value.
16. When a file is opened with INPUT or I-O, it is positioned to the first record to be
processed.
U41112-J-Z125-1-76 445
OPEN statement PROCEDURE DIVISION
19. If the storage medium containing the file permits the rewind function, the following rules
apply:
a) If neither the REVERSED, nor the EXTEND, nor the NO REWIND phrase is speci-
fied, execution of the OPEN statement causes the file to be positioned at its begin-
ning.
b) If the NO REWIND phrase is specified, execution of the OPEN statement does not
cause the file to be repositioned; instead, the file is expected to be at its beginning
already.
c) If the REVERSED phrase is specified, the records of the file are made available in
reversed order; that is, starting with the last record of the file.
20. Label handling procedures are performed by the OPEN statement for all files, except
those for which LABEL RECORDS ARE OMITTED is specified in the file description
entry.
If the INPUT phrase of the OPEN statement is specified, the following steps are taken:
a) If system labels are present, they are checked.
b) If user labels or nonstandard labels are present and an applicable USE procedure
is declared, that USE procedure is executed.
c) The file is positioned so that the first record can be read.
If the OUTPUT phrase of the OPEN statement is supplied, execution takes place as
follows:
d) If standard labels are specified for the file, they are created and written.
e) If an applicable USE procedure is declared, it is executed; and user or nonstandard
labels are written.
f) The record area is made available to the program in order to receive data.
If the I-O phrase of the OPEN statement is specified, the following steps are taken:
g) If system labels are present, they are checked.
h) If user labels are present and an applicable USE procedure is declared, that USE
procedure is executed.
i) The file is positioned for data read or replacement operations.
If the EXTEND phrase as well as the LABEL RECORDS STANDARD/data-name clause
are specified for an OPEN statement, then execution of the OPEN statement involves
the following steps:
j) The file header labels are processed only if it is a single-reel or single-volume file.
446 U41112-J-Z125-1-76
PROCEDURE DIVISION OPEN statement
k) The reel/volume header labels on the last existing reel/volume are processed as in
the case of the OPEN statement with INPUT phrase.
l) The existing file trailer labels are processed as in the case of the OPEN statement
with INPUT phrase. These label records are then deleted.
m) Further processing is then the same as with OPEN OUTPUT.
U41112-J-Z125-1-76 447
PERFORM statement PROCEDURE DIVISION
PERFORM statement
Function
The PERFORM statement is used to execute one or more procedures or a set of state-
ments.
Format 1 of the PERFORM statement executes the specified procedures statements
one time.
Format 2 of the PERFORM statement executes the specified procedures or state-
ments a specified number of times.
Format 3 of the PERFORM statement executes the specified procedures or state-
ments until a specified condition is true.
Format 4 of the PERFORM statement changes the values of one or more identifiers
or index names in ascending or descending order, and executes a series of
procedures or the specified statements one or more times, based on this
action.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
"out-of-line"
THRU
PERFORM procedure-name-1 procedure-name-2
THROUGH
"in-line"
448 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
1. The END-PERFORM phrase delimits the scope of the in-line PERFORM statement.
2. An in-line PERFORM statement functions according to the following general rules for
an otherwise identical out-of-line PERFORM statement, with the exception that the
statements contained within the in-line PERFORM statement are executed in place of
the statements contained within the range of procedure-name-1 (through procedure-
name-2 if specified). Unless specially qualified by the word in-line or out-of-line, all the
general rules which apply to the out-of-line PERFORM statement also apply to the in-
line PERFORM statement.
3. When a PERFORM statement is executed, control is transferred to the first statement
of the procedure named by procedure-name-1. An implicit return to the next executable
statement following the PERFORM statement is made as follows:
a) If procedure-name-1 is a paragraph-name and procedure-name-2 is not specified,
then the return takes place after the last statement of procedure-name-1.
b) If procedure-name-1 is a section-name, and procedure-name-2 is not specified,
then the return is after the last statement of the last paragraph in procedure-name-
1.
c) If procedure-name-2 is specified and it is a paragraph-name, then the return is after
the last statement of the paragraph.
d) If procedure-name-2 is specified and it is a section-name, then the return is after
the last statement of the last paragraph in the section.
e) If an in-line PERFORM statement is specified, an execution of the PERFORM
statement is completed after the last statement contained within it has been
executed.
4. There is no necessary relationship between procedure-name-1 and procedure-name-
2, except that a consecutive sequence of operations is to be executed beginning at the
procedure named procedure-name-1 and ending with the execution of the procedure
named procedure-name-2. Even GO TO and PERFORM statements may occur
between procedure-name-1 and the end of procedure-name-2. If there are two or more
logical paths to the return point, then procedure-name-2 may be the name of a
paragraph consisting of the EXIT statement to which all of these paths must lead.
5. The statements within the range of the PERFORM statement are executed once, and
control returns to the statement following the PERFORM statement.
6. The range of a PERFORM statement consists logically of all those statements that are
executed as a result of executing the PERFORM statement through execution of the
implicit transfer of control to the end of the PERFORM statement. The range includes
all statements that are executed as the result of a transfer of control by CALL, EXIT, GO
TO, and PERFORM statements in the range of the PERFORM statement, as well as all
U41112-J-Z125-1-76 449
PERFORM statement PROCEDURE DIVISION
D PERFORM F THRU J
450 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
9. The following information on segmentation is relevant here (for further details, refer to
"Segmentation", page 749ff).
a) If a PERFORM statement appears in a section whose segment number is less than
the value specified in the SEGMENT-LIMIT clause, then it may contain within its
range only the following procedures:
– either sections all having a segment number less than 50, or
– sections which are wholly contained in a single independent segment whose
segment number is greater than 49.
b) If a PERFORM statement appears in a section whose segment number is greater
than 49, then it may contain within its range only the following procedures:
– either sections which all have the same segment number as the section
containing the PERFORM statement or
– sections all having a segment number less than 50.
c) If a procedure-name in a segment with a segment number greater than 49 is refer-
enced by a PERFORM statement in a segment with a different segment number,
then the referenced segment is made available in its initial state (that is, any GO TO
statements in this segment which have been modified by the execution of ALTER
statements will be reset to their original values).
Example 8-50
for format 1
PERFORM X-PAR.
ADD A TO B.
Let X-PAR be a paragraph-name. In this case, all statements in the paragraph named
X-PAR are executed, and control is then returned to the ADD statement following the
PERFORM statement.
U41112-J-Z125-1-76 451
PERFORM statement PROCEDURE DIVISION
Example 8-51
...
PERFORM X1-PAR THRU X3-PAR.
...
X-KAP SECTION.
X1-PAR.
...
X2-PAR.
...
X3-PAR.
...
Y-KAP SECTION.
...
The PERFORM statement has the effect that all statements in the paragraphs named X1-
PAR, X2-PAR and X3-PAR are executed.
Example 8-52
The same effect would result from the execution of the statement:
PERFORM X-KAP.
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
"out-of-line"
THRU identifier-1
PERFORM procedure-name-1 procedure-name-2 TIMES
THROUGH integer-1
"in-line"
identifier-1
PERFORM TIMES imperative-statement END-PERFORM
integer-1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
452 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
1. The END-PERFORM phrase delimits the scope of the in-line PERFORM statement.
2. An in-line PERFORM statement functions according to the following general rules for
an otherwise identical out-of-line PERFORM statement, with the exception that the
statements contained within the in-line PERFORM statement are executed in place of
the statements contained within the range of procedure-name-1 (through procedure-
name-2 if specified). Unless specially qualified by the word in-line or out-of-line, all the
general rules which apply to the out-of-line PERFORM statement also apply to the in-
line PERFORM statement.
3. When a PERFORM statement is executed, control is transferred to the first statement
of the procedure named by procedure-name-1. An implicit return to the next executable
statement following the PERFORM statement is made as follows:
a) If procedure-name-1 is a paragraph-name and procedure-name-2 is not specified,
then the return takes place after the last statement of procedure-name-1.
b) If procedure-name-1 is a section-name, and procedure-name-2 is not specified,
then the return is after the last statement of the last paragraph in procedure-name-
1.
c) If procedure-name-2 is specified and it is a paragraph-name, then the return is after
the last statement of the paragraph.
d) If procedure-name-2 is specified and it is a section-name, then the return is after
the last statement of the last paragraph in the section.
e) If an in-line PERFORM statement is specified, an execution of the PERFORM
statement is completed after the last statement contained within it has been
executed.
4. There is no necessary relationship between procedure-name-1 and procedure-name-
2, except that a consecutive sequence of operations is to be executed beginning at the
procedure named procedure-name-1 and ending with the execution of the procedure
named procedure-name-2. Even GO TO and PERFORM statements may occur be-
tween procedure-name-1 and the end of procedure-name-2. If there are two or more
logical paths to the return point, then procedure-name-2 may be the name of a para-
graph consisting of the EXIT statement to which all of these paths must lead.
5. The specified set of statements is performed the number of times specified by integer-
1 or by the initial value of the data item referenced by identifier-1 for that execution.
Following the execution of the specified set of statements, control is transferred to the
end of the PERFORM statement.
6. If at the time of the execution of a PERFORM statement, the value of the data item refer-
enced by identifier-1 is equal to zero or is negative, control passes to the end of the
PERFORM statement.
U41112-J-Z125-1-76 453
PERFORM statement PROCEDURE DIVISION
7. The range of a PERFORM statement consists logically of all those statements that are
executed as a result of executing the PERFORM statement through execution of the
implicit transfer of control to the end of the PERFORM statement. The range includes
all statements that are executed as the result of a transfer of control by CALL, EXIT, GO
TO, and PERFORM statements in the range of the PERFORM statement, as well as all
statements in declarative procedures that are executed as a result of the execution of
statements in the range of the PERFORM statement. The statements in the range of a
PERFORM statement need not appear consecutively in the compilation unit.
8. Statements executed as the result of a transfer of control caused by executing an EXIT
PROGRAM statement are not considered to be part of the range of the PERFORM
statement when:
a) That EXIT PROGRAM statement is specified in the same program in which the
PERFORM statement is specified, and
b) The EXIT PROGRAM statement is within the range of the PERFORM statement.
9. If the range of a PERFORM statement includes another PERFORM statement, the
sequence of procedures associated with the included PERFORM must itself either be
totally included in, or totally excluded from, the logical sequence referred to by the first
PERFORM. Thus, an active PERFORM statement, whose execution point begins within
the range of another active PERFORM statement, must not allow control to pass to the
exit of the other active PERFORM statement; furthermore, two or more such active
PERFORM statements must not have a common exit.
See the following illustrations for examples of legal PERFORM constructs:
D PERFORM F THRU J
10. The following information on segmentation is relevant here (for further details, refer to
"Segmentation", page 749ff).
454 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
U41112-J-Z125-1-76 455
PERFORM statement PROCEDURE DIVISION
Example 8-53
for format 2
PERFORM X-PAR 5 TIMES.
All statements in the paragraph named X-PAR are performed five times. Control then
passes to the statement following the PERFORM statement.
Example 8-54
for format 2
...
77 A PICTURE 9.
...
MOVE 3 TO A.
...
PERFORM X-PAR A TIMES.
...
X-PAR.
...
ADD 1 TO A.
Y-PAR.
...
Since the value of A is 3 when the PERFORM statement is executed, the paragraph named
X-PAR is executed three times.
The reference to A within X-PAR has no effect on the PERFORM statement.
456 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
"out-of-line"
THRU
PERFORM procedure-name-1 procedure-name-2
THROUGH
BEFORE
WITH TEST UNTIL condition-1
AFTER
"in-line"
BEFORE
PERFORM WITH TEST UNTIL condition-1
AFTER
imperative-statement END-PERFORM
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. The END-PERFORM phrase delimits the scope of the in-line PERFORM statement.
2. An in-line PERFORM statement functions according to the following general rules for
an otherwise identical out-of-line PERFORM statement, with the exception that the
statements contained within the in-line PERFORM statement are executed in place of
the statements contained within the range of procedure-name-1 (through procedure-
name-2 if specified). Unless specially qualified by the word in-line or out-of-line, all the
general rules which apply to the out-of-line PERFORM statement also apply to the in-
line PERFORM statement.
3. When a PERFORM statement is executed, control is transferred to the first statement
of the procedure named by procedure-name-1. An implicit return to the next executable
statement following the PERFORM statement is made as follows:
a) If procedure-name-1 is a paragraph-name and procedure-name-2 is not specified,
then the return takes place after the last statement of procedure-name-1.
U41112-J-Z125-1-76 457
PERFORM statement PROCEDURE DIVISION
458 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
D PERFORM F THRU J
9. The specified set of statements is performed until the condition specified by the UNTIL
phrase is true. When the condition is true, control is transferred to the end of the
PERFORM statement. If the condition is true when the PERFORM statement is
entered, and the TEST BEFORE phrase is specified or implied, no transfer to
procedure-name-1 takes place, and control is passed to the end of the PERFORM
statement.
10. If the TEST AFTER phrase is specified, the PERFORM statement functions as if the
TEST BEFORE phrase were specified except that the condition is tested after the
specified set of statements has been executed.
11. Any subscripting or reference modification associated with the operands specified in
condition-1 is evaluated each time the condition is tested.
12. The following information on segmentation is relevant here (for further details, refer to
"Segmentation", page 749ff).
a) If a PERFORM statement appears in a section whose segment number is less than
the value specified in the SEGMENT-LIMIT clause, then it may contain within its
range only the following procedures:
– either sections all having a segment number less than 50, or
U41112-J-Z125-1-76 459
PERFORM statement PROCEDURE DIVISION
Example 8-55
for format 3
PERFORM X-PAR UNTIL A GREATER THAN 3.
...
X-PAR.
...
COMPUTE A = A + 1.
...
Y-PAR.
...
Assume A = 1, when the PERFORM statement is initiated. In this case, the statements in
the paragraph named X-PAR are performed three times:
The first time X-PAR is performed, A is set to 2.
The second time X-PAR is performed, A is set to 3.
The third time X-PAR is performed, A is set to 4.
Since 4 is greater than 3, the condition specified in the PERFORM statement is true. Thus,
control passes to the statement which follows the PERFORM statement.
460 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
Format 4
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
"out-of-line"
THRU BEFORE
PERFORM procedure-name-1 procedure-name-2 WITH TEST
THROUGH AFTER
index-1 index-2 literal-2
VARYING FROM literal-1 BY UNTIL condition-1
identifier-2 identifier-3 identifier-4
"in-line"
BEFORE
PERFORM WITH TEST
AFTER
imperative-statement END-PERFORM
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 461
PERFORM statement PROCEDURE DIVISION
1. The data items referenced by identifier-4 and identifier-7 must not have a zero value.
2. If an index-name is specified in the VARYING or AFTER phrase, and an identifier is
specified in the associated FROM phrase, the data item referenced by the identifier
must have a positive value.
3. Format 4 of the PERFORM statement is used to increment or decrement the values of
one or more identifiers or index-names in a specific manner while the PERFORM
statement is executing. Execution depends on the number of identifiers or index-names
that are varied. The following rules describe what happens when one, two and three
identifiers or index-names are varied.
4. The END-PERFORM phrase delimits the scope of the in-line PERFORM statement.
5. An in-line PERFORM statement functions according to the following general rules for
an otherwise identical out-of-line PERFORM statement, with the exception that the
statements contained within the in-line PERFORM statement are executed in place of
the statements contained within the range of procedure-name-1 (through procedure-
name-2 if specified). Unless specially qualified by the word in-line or out-of-line, all the
general rules which apply to the out-of-line PERFORM statement also apply to the in-
line PERFORM statement.
6. When a PERFORM statement is executed, control is passed to the first statement of
the procedure named by procedure-name-1. An implicit return to the next executable
statement following the PERFORM statement is made as follows:
a) If procedure-name-1 is a paragraph-name and procedure-name-2 is not specified,
then the return takes place after the last statement of procedure-name-1.
b) If procedure-name-1 is a section-name, and procedure-name-2 is not specified,
then the return is after the last statement of the last paragraph in procedure-
name-1.
c) If procedure-name-2 is specified and it is a paragraph-name, then the return is after
the last statement of the paragraph.
462 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
U41112-J-Z125-1-76 463
PERFORM statement PROCEDURE DIVISION
10. If the range of a PERFORM statement includes another PERFORM statement, the
sequence of procedures associated with the included PERFORM must itself either be
totally included in, or totally excluded from, the logical sequence referred to by the first
PERFORM. Thus, an active PERFORM statement, whose execution point begins within
the range of another active PERFORM statement, must not allow control to pass to the
exit of the other active PERFORM statement; furthermore, two or more such active
PERFORM statements must not have a common exit.
See the following illustrations for examples of legal PERFORM constructs:
X PERFORM A THRU M X PERFORM A THRU M
A LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LU A LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LU
D PERFORM F THRU J D PERFORM F THRU J
F LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LU H
M LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2OL
J LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2OL F LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LU
M LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2OL
J LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2OL
X PERFORM A THRU M
A LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LU
F LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LU
M LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2OULRLR2LR2OL
J LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2OL
D PERFORM F THRU J
464 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
– At the start of execution of the PERFORM statement, the content of the data item
referenced by identifier-2 is set to literal-1 or the current value of the data item ref-
erenced by identifier-3.
– Then the content of the data item referenced by identifier-5 is set to literal-3 or the
current value of the data item referenced by identifier-6.
– After the contents of the data items referenced by the identifiers have been set, con-
dition-1 is evaluated; if true, control is transferred to the end of the PERFORM state-
ment.
– If condition-1 is false, condition-2 is evaluated.
– If condition-2 is false, the specified set of statements is executed once.
– Then the content of the data item referenced by identifier-5 is augmented by literal-
4 or the content of the data item referenced by identifier-7 and condition-2 is evalu-
ated again.
– This cycle of evaluation and augmentation continues until condition-2 is true.
– When condition-2 is true, the content of the data item referenced by identifier-2 is
augmented by literal-2 or the content of the data item referenced by identifier-4, and
the content of the data item referenced by identifier-5 is set to literal-3 or the current
value of the data item referenced by identifier-6.
– condition-1 is reevaluated.
– The PERFORM statement is completed if condition-1 is true; if not, the cycle con-
tinues until condition-1 is true.
At the termination of the PERFORM statement, the data item referenced by identifier-5
contains literal-3 or the current value of the data item referenced by identifier-6. The
data item referenced by identifier-2 contains a value that exceeds the last used setting
by one increment or decrement value, unless condition-1 was true when the PERFORM
statement was entered, in which case the data item referenced by identifier-2 contains
literal-1 or the current value of the data item referenced by identifier-3.
12. If the TEST AFTER phrase is specified or implied:
When the data item referenced by one identifier is varied:
– The content of the data item referenced by identifier-2 is set to literal-1 or the current
value of the data item referenced by identifier-3 at the point of execution of the PER-
FORM statement.
– Then the specified set of statements is executed once and condition-1 of the UNTIL
phrase is tested.
U41112-J-Z125-1-76 465
PERFORM statement PROCEDURE DIVISION
– If the condition is false, the value of the data item referenced by identifier-2 is aug-
mented by the specified increment or decrement value (literal-2 or the value of the
data item referenced by identifier-4) and the specified set of statements is executed
again.
– The cycle continues until condition-1 is tested and found to be true, at which point
control is transferred to the end of the PERFORM statement.
When the data items referenced by two identifiers are varied:
– The content of the data item referenced by identifier-2 is set to literal-1 or the current
value of the data item referenced by identifier-3.
– Then the content of the data item referenced by identifier-5 is set to literal-3 or the
current value of the data item referenced by identifier-6.
– The specified set of statements is then executed.
– Condition-2 is then evaluated.
– If condition-2 is false, the content of the data item referenced by identifier-5 is aug-
mented by literal-4 or the content of data item referenced by identifier-7 and the
specified set of statements is again executed.
– The cycle continues until condition-2 is again evaluated and found to be true.
– At this time, condition-1 is evaluated.
– If condition-1 is false, the content of the data item referenced by identifier-2 is aug-
mented by literal-2 or the content of the data item referenced by identifier-4, and the
content of the data item referenced by identifier-5 is set to literal-3 or the current val-
ue of the data item referenced by identifier-6.
– The specified set of statements is then executed again.
– This cycle continues until condition-1 is again evaluated and found to be true, at
which time control is transferred to the end of the PERFORM statement.
After the completion of the PERFORM statement, each data item varied by an AFTER
or VARYING phrase contains the same value it contained at the end of the most recent
execution of the specified set of statements.
13. During the execution of the specified set of statements associated with the PERFORM
statement, any change to the VARYING variable (the data item referenced by identifier-
2 and index-name-1), the BY variable (the data item referenced by identifier-4), the
AFTER variable (the data item referenced by identifier-5 and index-name-3), or the
FROM variable (the data item referenced by identifier-3 and index-name-2) will be taken
into consideration and will affect the operation of the PERFORM statement.
466 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
When the data items referenced by two identifiers are varied, the data item referenced
by identifier-5 goes through a complete cycle (FROM, BY, UNTIL) each time the content
of the data item referenced by identifier-2 is varied. When the contents of three or more
data items referenced by identifiers are varied, the mechanism is the same as for two
identifiers except that the data item being varied by each AFTER phrase goes through
a complete cycle each time the data item being varied by the preceding AFTER phrase
is augmented.
14. The following information on segmentation is relevant here (for further details, refer to
"Segmentation", page 749ff).
a) If a PERFORM statement appears in a section whose segment number is less than
the value specified in the SEGMENT-LIMIT clause, then it may contain within its
range only the following procedures:
– either sections which all have a segment number less than 50, or
– sections which are wholly contained in a single independent segment whose
segment number is greater than 49.
b) If a PERFORM statement appears in a section whose segment number is greater
than 49, then it may contain within its range only the following procedures:
– either sections which all have the same segment number as the section
containing the PERFORM statement or
– sections all having a segment number less than 50.
c) If a procedure-name in a segment with a segment number greater than 49 is refer-
enced by a PERFORM statement in a segment with a different segment number,
then the referenced segment is made available in its initial state (that is, any GO TO
statements in this segment which have been modified by the execution of ALTER
statements will be reset to their original values).
U41112-J-Z125-1-76 467
PERFORM statement PROCEDURE DIVISION
Example 8-56
for format 4
...
01 STATES.
02 COUNTIES OCCURS 51 INDEXED STATE.
03 FIRST-COUNTY PIC 9(3).
03 LAST-COUNTY PIC 9(3).
03 CITIES OCCURS 100 INDEXED COUNTIES.
04 FIRST-CITY PIC 9(3).
04 LAST-CITY PIC 9(3).
01 CITY PIC 9(3).
...
PROCEDURE DIVISION.
K1.
PERFORM X-PAR THRU Y-PAR
VARYING STATE FROM 1 BY 1
UNTIL STATE IS GREATER THAN 50;
AFTER COUNTY FROM FIRST-COUNTY (STATE) BY 1
UNTIL COUNTY IS EQUAL TO LAST-COUNTY (STATE)
AFTER CITY FROM FIRST-CITY (STATE COUNTY)
UNTIL CITY IS EQUAL TO LAST-CITY (STATE COUNTY)
. . .
.
468 U41112-J-Z125-1-76
PROCEDURE DIVISION PERFORM statement
Flowchart:
Start
STATE=1
COUNTY=FIRST-COUNTY (STATE)
CITY=FIRST-CITY (STATE COUNTY)
true
STATE ñ 50 ? Exit
false
COUNTY=
LAST-COUNTY (STATE)
true
?
false
CITY=
true
LAST-CITY (STATE COUNTY) STATE=STATE+1
?
CITY=CITY+1
CITY=
FIRST-CITY (STATE COUNTY)
U41112-J-Z125-1-76 469
PERFORM statement PROCEDURE DIVISION
Example 8-57
for format 3 and 4, WITH TEST AFTER/BEFORE
IDENTIFICATION DIVISION.
PROGRAM-ID. PWTA.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 N PIC 9.
77 K PIC 9(3).
77 Z PIC 9(4).
77 E PIC 9(4).
PROCEDURE DIVISION.
P1 SECTION.
COMPUTATION.
MOVE 0 TO Z.
DISPLAY "Enter single-digit number as upper bound N" UPON T.
ACCEPT N FROM T.
PERFORM WITH TEST AFTER VARYING K FROM 1 BY 1 UNTIL K >= N
COMPUTE E = K ** 3
ADD E TO Z
END-PERFORM
DISPLAY "Result =" Z UPON T.
FIN.
STOP RUN.
The program calculates the nth sum of the cube of an integer K. Only after the COMPUTE
and ADD statements are executed is there a test to see whether the termination condition
is satisfied.
If TEST BEFORE is specified, the termination condition is tested first. If K <= N, the in-line
statements are executed. If K > N, the PERFORM statement is terminated with END-
PERFORM.
470 U41112-J-Z125-1-76
PROCEDURE DIVISION READ statement
READ statement
Function
[END-READ]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 471
READ statement PROCEDURE DIVISION
1. In the READ statement, the receiving operand references the same storage area as the
record description entry.
2. If no USE procedure is declared for the file, AT END must be specified in the READ
statement.
3. The NEXT phrase is optional in the sequential access mode and has no significance.
4. NEXT must be specified if records of a file in dynamic access mode are to be read
sequentially and neither AT END nor NOT AT END is specified.
472 U41112-J-Z125-1-76
PROCEDURE DIVISION READ statement
6. If an at end condition does not occur during the execution of a READ statement, the AT
END phrase is ignored, if specified, and the following actions occur:
a) The I-O status for file-name is updated.
b) If some other exception condition occurs, control is transferred to the USE proce-
dure.
c) If no exception condition exists, the record is made available in the record area, and
any implicit move as a result of the INTO phrase is executed. Control is transferred
to the end of the READ statement or to imperative-statement-2 of the NOT AT END
phrase, if specified. In the latter case, execution continues according to the rules for
the specified imperative-statement. If a procedure branching or conditional state-
ment that causes explicit transfer of control is executed, control is transferred in ac-
cordance with the rules for that statement; otherwise, upon completion of the exe-
cution of the imperative-statement-2 specified in the NOT AT END phrase, control
is transferred to the end of the READ statement.
7. After unsuccessful execution of a READ statement, the content of the input area
belonging to the file is undefined and the I/O status indicates that no valid next record
has been read.
8. If the number of character positions in a record is less than the minimum length
specified in the record descriptions, the contents to the right of the last valid character
will be unpredictable.
If the number of character positions is greater than the maximum length specified in the
record descriptions, the record will be truncated to the right of the maximum length.
In either case the read operation is successful, but a FILE STATUS is set to indicate the
occurrence of a record length conflict.
9. END-READ delimits the scope of the READ statement.
10. The execution of a READ statement with the INTO phrase is equivalent to:
READ file-name
MOVE record-name TO identifier
The MOVE operation takes place according to the rules for the MOVE statement without
the CORRESPONDING phrase. After the READ statement with INTO phrase has been
successfully executed, the record is available both in the input area and in the area
specified by the identifier. The length of the source field is determined by the length of
the record that is read (see “RECORD clause”, page 225).
If the file description entry contains a RECORD-IS-VARYING clause, the implicitly
executed transfer operation is a group item transfer.
If the execution of the READ statement was unsuccessful, the implied MOVE statement
does not occur.
The index for the identifier is calculated after execution of the READ statement and
immediately before the data transfer.
U41112-J-Z125-1-76 473
READ statement PROCEDURE DIVISION
474 U41112-J-Z125-1-76
PROCEDURE DIVISION READ statement
1. In the READ statement, the receiving operand references the same storage area as the
record description entry.
2. If no USE procedure is present for the file, INVALID KEY must be specified.
For indexed file organization, the following also applies:
3. The KEY IS data-name phrase.
4. data-name must be the name of a RECORD KEY or ALTERNATE RECORD KEY field
declared for this file.
5. data-name may be qualified.
1. An OPEN statement with the INPUT or I-O phrase must be executed for a file before the
READ statement can be executed.
2. When the logical records of a file are described with more than one record description,
these records automatically share the same storage area; this is equivalent to an
implicit redefinition of the area.
3. The INTO phrase may be specified in a READ statement:
– if only one record description is subordinate to the file description entry, or
– if all record-names associated with the file-name and the data item referenced by
the identifier represent group items or alphanumeric elementary items.
4. The execution of a READ statement with the INTO phrase is equivalent to:
READ file-name
MOVE record-name TO identifier
U41112-J-Z125-1-76 475
READ statement PROCEDURE DIVISION
The MOVE operation takes place according to the rules for the MOVE statement without
the CORRESPONDING phrase. After the READ statement with INTO phrase has been
successfully executed, the record is available both in the input area and in the area
specified by the identifier. The length of the source field is determined by the length of
the record that is read (see “RECORD clause”, page 225). If the execution of the READ
statement was unsuccessful, the implied MOVE statement does not occur.
The index for the identifier is calculated after execution of the READ statement and
immediately before the implicit MOVE.
5. If the input area is to be explicitly referenced following a READ statement without the
INTO phrase, it is the user’s responsibility to ensure that the correct record description
entry (i.e. corresponding to the length of the read record) is used.
6. If an invalid key condition does not occur during the execution of a READ statement, the
INVALID KEY phrase is ignored, if specified, and the following actions occur:
a) The I-O status for file-name is updated.
b) If some other exception condition occurs, control is transferred to the USE proce-
dure.
c) If no exception condition exists, the record is made available in the record area, and
any implicit move as a result of the INTO phrase is executed. Control is transferred
to the end of the READ statement or to imperative-statement-2 of the NOT INVALID
KEY phrase, if specified. In the latter case, execution continues according to the
rules for the specified imperative-statement, and control is transferred to some other
branch in the program or to the end of the READ statement.
7. Following an unsuccessful READ statement, the contents of the record area associated
with the file and the file position indicator are undefined.
8. If the number of character positions in a record is less than the minimum length
specified in the record descriptions, the contents to the right of the last valid character
will be unpredictable.
If the number of character positions is greater than the maximum length specified in the
record descriptions, the record will be truncated to the right of the maximum length.
In either case the read operation is successful, but a FILE STATUS is set to indicate the
occurrence of a record length conflict.
9. END-READ delimits the scope of the READ statement.
476 U41112-J-Z125-1-76
PROCEDURE DIVISION READ statement
U41112-J-Z125-1-76 477
RELEASE statement PROCEDURE DIVISION
RELEASE statement
Function
The RELEASE statement transfers records from the input file to the sort-file. It can only be
used during a sort operation.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
RELEASE sort-record-name [FROM identifier]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
478 U41112-J-Z125-1-76
PROCEDURE DIVISION RETURN statement
RETURN statement
Function
The RETURN statement obtains individual records in sorted order from the sort-file.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
RETURN sort-file-name RECORD [INTO identifier]
AT END imperative-statement-1
[END-RETURN]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. Execution of a RETURN statement has the effect that the next record is made available
according to the order specified by the keys of the SORT/MERGE statement. Then it
can be processed in the record areas of the sort-file.
2. If more than one record description is supplied for the logical record of a file, these
records will automatically share the same storage area; this corresponds to an implicit
redefinition of the area. The contents of any data item which may be outside the area
of the current record will be undefined after a RETURN statement is executed.
3. The INTO phrase may be specified in two cases:
– if only one record description is subordinate to the sort-merge file description entry,
– if all record names associated with file-name and the data item referenced by
identifier describe a group item of an elementary alphanumeric item.
4. The INTO phrase, when specified, makes the RETURN statement equivalent to a
RETURN statement followed by a MOVE statement.
U41112-J-Z125-1-76 479
RETURN statement PROCEDURE DIVISION
5. When this phrase is written, records are returned from the sort-file and then moved to
the area specified by identifier; identifier must not refer to a data item within the record
of that sort-file. The move is made according to the rules specified for a MOVE
statement without CORRESPONDING phrase. The size of the current record is deter-
mined by rules specified for the RECORD clause (see "RECORD clause", page 225).
If the sort file description entry contains a RECORD IS VARYING clause, the implied
move is a group move.
6. The MOVE statement is not carried out if an at end condition occurs.
7. Any subscripting or indexing of identifier is evaluated after the record has been obtained
and immediately before it is moved into the data area.
8. If the INTO phrase was used, the data will be available both in the record area and in
the data item specified by identifier.
9. The execution of the RETURN statement causes the next existing record in the file
referenced by file-name-1, as determined by the keys listed in the SORT or MERGE
statement, to be made available in the record area associated with file-name-1.
If no next logical record exists in the file referenced by file-name-1, the at end condition
exists. Execution continues according to the rules for each statement specified in imper-
ative-statement-1. If a procedure branching or conditional statement which causes
explicit transfer of control is executed, control is transferred according to the rules for
that statement; otherwise, upon completion of the execution of imperative-statement-1,
control is transferred to the end of the RETURN statement and the NOT AT END phrase
is ignored, if specified. When the at end condition occurs, execution of the RETURN
statement is unsuccessful and the contents of the record area associated with file-
name-1 are undefined. After the execution of imperative-statement-1 in the AT END
phrase, no RETURN statement may be executed as part of the current output
procedure.
10. If an at end condition does not occur during the execution of a RETURN statement, then
after the record is made available and after executing any implicit move resulting from
the presence of an INTO phrase, control is transferred to imperative-statement-2, if NOT
AT END was specified; otherwise, control is transferred to the end of the RETURN
statement.
11. END-RETURN delimits the scope of the RETURN statement.
12. A RETURN statement may be used only within the range of the output procedure
associated with a SORT/MERGE statement for sort-file-name.
480 U41112-J-Z125-1-76
PROCEDURE DIVISION REWRITE statement
REWRITE statement
Function
[END-REWRITE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. record-name and identifier must not refer to the same storage area.
2. record-name must be associated with a file description (FD) entry in the Data Division
of the program and may be qualified.
3. The INVALID KEY phrase must be specified for files with relative and indexed file
organization unless an appropriate USE procedure has been declared. INVALID KEY
may not be specified for relative files with sequential access.
4. The REWRITE statement is not permitted for line sequential files.
U41112-J-Z125-1-76 481
REWRITE statement PROCEDURE DIVISION
General rules
482 U41112-J-Z125-1-76
PROCEDURE DIVISION REWRITE statement
8. Execution of a REWRITE statement causes the contents of the data item that was spec-
ified in the FILE STATUS clause of the related file description entry to be updated (see
also "FILE STATUS clause", page 189).
9. The file position indicator is not affected by the execution of a REWRITE statement.
10. END-REWRITE delimits the scope of the REWRITE statement.
For relative and indexed file organization, the following also applies:
11. The length of the record to be replaced on the file may be modified.
12. In the case of files whose access mode is random or dynamic, the replaced record is
the one accessed by the contents of the RELATIVE KEY data item associated with the
file (for relative files) or by the contents of the data item specified by the RECORD KEY
(for indexed files).
13. The number of character positions in the record indicated by record-name must not be
greater than the largest number of character positions or less than the smallest number
of character positions permitted by the associated RECORD IS VARYING clause. Oth-
erwise, the REWRITE statement will be unsuccessful, the update operation will not take
place, the content of the record area remains unchanged and the I-O status of the file
associated with record-name is set to a value indicating a record length conflict (see
"I-O status", page 695ff).
U41112-J-Z125-1-76 483
REWRITE statement PROCEDURE DIVISION
484 U41112-J-Z125-1-76
PROCEDURE DIVISION SEARCH statement
SEARCH statement
Function
The SEARCH statement is used to search a table for a table element that satisfies a
specified condition, and to adjust the value of the associated index to indicate that table
element, i.e. to set it to the corresponding occurrence number.
Format 1 is used to perform a serial search of a table. The search for identifier-1
begins at the current value of the index assigned to identifier-1.
Format 2 is used to perform a binary search of a table.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
index-1
SEARCH identifier-1 VARYING
identifier-2
imperative-statement-2
WHEN condition-1 ...
NEXT SENTENCE
[END-SEARCH]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 485
SEARCH statement PROCEDURE DIVISION
9. condition-1... specify the conditions to be satisfied during the execution of the SEARCH
statement.
10. imperative-statement-2... or NEXT SENTENCE specifies an action to be taken when
the associated WHEN condition is satisfied: control passes to the imperative-statement
or to the next sentence (that is, the statement following the SEARCH statement),
depending on the option specified.
11. A serial search of a table begins at the table element pointed to by the index associated
with identifier-1.
12. If, at the start of a SEARCH statement, the value of the index associated with identifier-
1 is greater than the highest permissible occurrence number for identifier-1, the search
will terminate immediately. If the AT END phrase is specified, imperative-statement-1 is
executed. If this phrase is omitted, processing continues with the next statement.
13. If, at the start of a SEARCH statement, the value of the index associated with identifier-
1 corresponds to a valid occurrence number for identifier-1, the serial search takes
place as follows:
a) The WHEN conditions are evaluated in the order in which they are written.
b) If none of the conditions is satisfied, the index-name for identifier-1 is incremented
to refer to the next occurrence of a table element; and step a) is repeated, unless
the new value of the index corresponds to an occurrence number outside the valid
range, in which case step d) is performed.
c) If one of the WHEN conditions is satisfied, the search terminates immediately. The
index points to the table element that satisfied the condition. The imperative
statement associated with that condition is executed.
d) If the end of the table is reached without the WHEN condition being satisfied, the
search terminates. If AT END is specified, imperative-statement-1 is executed. If
this phrase is omitted, control passes to the next sentence.
14. When identifier-1 is a data item subordinate to a data item that contains an OCCURS
clause, then multi-dimensional tables can be searched. In this case, an index-name
must be associated with each dimension of the table through the INDEXED BY phrase
of the OCCURS clause. Execution of a SEARCH statement modifies only the setting of
the index associated with identifier-1 (and, if present, of index-1 or identifier-2).
Therefore, in order to search a two- or three-dimensional table, a SEARCH statement
must be executed for each possible value of the superordinate index.
15. Before the SEARCH statements are executed, the corresponding indices must be
preset with the required values by means of SET statements or with PERFORM
VARYING (see example 8-59).
486 U41112-J-Z125-1-76
PROCEDURE DIVISION SEARCH statement
16. If, in the AT END phrase and the WHEN conditions, none of the imperative-statements
specified terminates with a GO TO statement, then control will pass to the next
statement after the imperative statement is executed.
17. If the VARYING index-1 phrase is specified, the following takes place:
a) If index-1 is one of the indices for identifier-1, index-1 is used for the search. No
other indices are incremented.
b) If index-1 is an index for another table entry, the first, or only, index associated with
identifier-1 is used for the search. When the index associated with identifier-1 is
incremented, index-1 is simultaneously incremented to represent the next element
in its table.
18. If the VARYING identifier-2 phrase is specified, the following actions take place:
a) The first, or only, index associated with identifier-1 is used for the search.
b) When the index associated with identifier-1 is incremented, identifier-2 is simulta-
neously incremented.
c) If identifier-2 is a numeric item, it is incremented by 1.
d) If identifier-2 is an index data item, it is incremented by a value equal to that used
to increment the index associated with identifier-1.
If the VARYING phrase is not specified, the first, or only, index associated with
identifier-1 (i.e. defined in the INDEXED BY phrase of the data description entry of
identifier-1) will be used for the search.
19. If the END-SEARCH phrase is specified, the NEXT SENTENCE phrase must not be
specified.
20. The scope of a SEARCH statement may be terminated by any of the following:
a) An END-SEARCH phrase at the same level of nesting.
b) A separator period.
c) An ELSE or END-IF phrase associated with a previous IF statement.
U41112-J-Z125-1-76 487
SEARCH statement PROCEDURE DIVISION
Start
No
Yes
condition-1 imperative- 2)
true ? statement-1
WHEN
condition-1
No
Yes 1)
condition-2 imperative-
true ? statement-1
WHEN
condition-2
No
Increment index for identifier-1
(index-1, if applicable to identifier-1)
1)
These operations are included only when specified in the SEARCH statement.
2)
Each of these control transfers is to the next sentence, unless the imperative-
statement ends with a GO TO statement.
488 U41112-J-Z125-1-76
PROCEDURE DIVISION SEARCH statement
Example 8-58
IDENTIFICATION DIVISION.
PROGRAM-ID. SEARCH1.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 LETTER-TEST PIC X VALUE LOW-VALUE.
88 LETTER-FOUND VALUE HIGH-VALUE.
01 INPUT-LETTER PICTURE A.
01 LETTER-WEIGHT-TABLE.
03 LETTER-TABLE OCCURS 26 TIMES INDEXED BY PI
VALUE FROM (1) "A01" "B03"
"C03" "D02" "E01" "F04" "G02" "H04" "I01" "J08"
"K05" "L01" "M03" "N01" "O01" "P03" "Q10" "R01"
"S01" "T01" "U01" "V04" "W04" "X08" "Y04" "Z10".
04 LETTER PICTURE A.
04 VAL PICTURE 99.
PROCEDURE DIVISION.
MAIN SECTION.
LETTER-SEARCH.
PERFORM UNTIL LETTER-FOUND
ACCEPT INPUT-LETTER FROM T
SET PI TO 1
SEARCH LETTER-TABLE VARYING PI
AT END DISPLAY "Letter is not alphabetic" UPON T
EXIT TO TEST OF PERFORM
WHEN LETTER (PI) = FUNCTION UPPER-CASE (INPUT-LETTER)
SET LETTER-FOUND TO TRUE
END-SEARCH
END-PERFORM.
FOUND.
DISPLAY LETTER (PI) " is assigned to " VAL (PI) UPON T.
STOP RUN.
In this example, the table named LETTER-TABLE consists of 26 elements.
Each element contains a letter of the alphabet followed by a value associated with the letter.
The table is indexed by the index-names LI and PI.
The SEARCH statement searches the table for the element whose LETTER matches the
current contents of the area called INPUT-LETTER. The associated index is PI.
The search starts at the beginning of the table since PI points to the first table element.
If the search is successful, the statement GO TO FOUND is executed. In this case, the index
PI points to the element satisfying the condition. For example, if INPUT-LETTER contains
B, the index points to the second table element.
If the search is unsuccessful, the statements following the AT END phase are executed.
U41112-J-Z125-1-76 489
SEARCH statement PROCEDURE DIVISION
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SEARCH ALL identifier-1 [AT END imperative-statement-1]
imperative-statement-2
WHEN condition
NEXT SENTENCE
[END-SEARCH]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
490 U41112-J-Z125-1-76
PROCEDURE DIVISION SEARCH statement
U41112-J-Z125-1-76 491
SEARCH statement PROCEDURE DIVISION
Example 8-59
(WHEN conditions)
Data Division entries:
...
77 A-VALUE PICTURE 9.
...
02 TABLE-ITEM OCCURS 5 TIMES ASCENDING KEY IS A B C;
INDEXED BY I.
03 A PICTURE 99.
03 B PICTURE 9.
88 UNDER-30 VALUE 1.
88 OVER-30 VALUE 2.
03 C PICTURE 9.
...
Valid WHEN phrases (in Procedure Division)
WHEN A(I) = 10
WHEN A(I) = 20 AND UNDER-30(I)
WHEN A(I) = 15 AND OVER-30(I) AND C(I) = A-VALUE
Example 8-60
IDENTIFICATION DIVISION.
PROGRAM-ID. SRCHALL.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T
SYSIPT IS INFILE.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 IPD PIC 9(3).
77 INPUT-LN PIC 9(6).
01 EMPLOYEE-TABLE.
02 PERSON OCCURS 100 TIMES INDEXED BY PI,
ASCENDING KEY IS DEPARTMENT LIFE-NUMBER.
03 DEPARTMENT PIC 9(3).
03 LIFE-NUMBER PIC 9(6),
03 NAME PIC X(20).
PROCEDURE DIVISION.
MAIN SECTION.
P1.
PERFORM VARYING PI FROM 1 BY 1 UNTIL PI > 100
ACCEPT PERSON (PI) FROM INFILE
END PERFORM
492 U41112-J-Z125-1-76
PROCEDURE DIVISION SEARCH statement
The SEARCH statement searches the table for an element whose DEPARTMENT matches
the current contents of the area called IPD, and whose LIFE-NUMBER matches the current
contents of the area called INPUT-LN. If the search is successful, the DISPLAY statement
is executed. The index-name, PI, points to the element satisfying the condition.
For example, if IPD contains 183 and INPUT-LN contains 328512, the index-name points to
the fifth element of the table.
If the search is unsuccessful, an appropriate message is issued.
U41112-J-Z125-1-76 493
SET statement PROCEDURE DIVISION
SET statement
Function
The SET statement defines reference points for table handling operations by setting indices
associated with table elements. The SET statement must be used for initializing an index
prior to the execution of a SEARCH statement. The SET statement can also be used to
change the status of external switches or to set the value of conditional variables.
The SET statement can be used to assign object references.
Format 1 sets an integer data item, index or index data item to a specified value.
Format 2 increments or decrements the value of an index-name to represent a new
occurrence number.
Format 3 changes the status of external switches
Format 4 sets the value of conditional variables
Format 5 assigns object references
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
index-1 index-2
SET ... TO identifier-2
identifier-1 integer-1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
In the following notes, all references to index-1 and identifier-1 apply equally to all recur-
sions thereof.
1. Each index must be specified in an INDEXED BY phrase of an OCCURS clause.
2. Each identifier must reference either an index data item or a fixed-point numeric
elementary item described as an integer.
3. The value of integer-1 or identifier-2 must be a valid occurrence number in the
corresponding table. The compiler does, however, permit other integer values (e.g.
0 or negative numbers) within the permissible value range for index-1 (see page 89).
4. Indices or identifiers preceding the TO specify the item whose value is to be set.
5. index-2, identifier-2 and integer-1 (which follow the TO) specify the value to which the
receiving item (e.g. index-1) is to be set.
6. When the SET statement is executed, one of the following actions occurs:
494 U41112-J-Z125-1-76
PROCEDURE DIVISION SET statement
a) index-1 is set to a value causing it to refer to the table element that corresponds in
occurrence number to the table element referenced by index-2, identifier-2, or
integer-1.
If identifier-2 references an index data item, or if index-2 is related to the same table
as index-1, no conversion takes place.
b) If identifier-1 is an index data item, it is set equal to either the contents of index-2 or
identifier-2, where identifier-2 is also an index data item. No conversion takes place.
integer-1 cannot be used in this case.
c) If identifier-1 is not an index data item, it is set to an occurrence number that corre-
sponds to the value of index-2. Neither identifier-2 nor integer-1 can be used in this
case.
This process is repeated for each recurrence of index-1 or identifier-1. Each time,
the value of index-2 or identifier-2 is used as it was at the beginning of the execution
of the statement. Any subscripting or indexing associated with identifier-1 is
evaluated before the value of the respective data item is changed.
7. The table below indicates the validity of various operand combinations in the SET
statement. The letters following the slashes refer to the rules listed above under point
7; for example, valid/c indicates that a combination of items is valid according to rule
c) above.
Receiving item
8. If index-2 is used, its value prior to execution of the SET statement must correspond to
an occurrence number of an element in the associated table
U41112-J-Z125-1-76 495
SET statement PROCEDURE DIVISION
Example 8-61
1)
See "Indexing" (page 89) for the relationships between occurrence number and
displacement.
2)
Calculated at compilation time; simple move during program run.
496 U41112-J-Z125-1-76
PROCEDURE DIVISION SET statement
Example 8-62
02 TABLE-A OCCURS 50 TIMES
INDEXED BY IND-1,IND-2,PIC 999.
.
.
.
SET IND-1 TO 5.
SET IND-2 TO 7.
SET IND-1,TABLE-A (IND-1) TO IND-2.
The third SET statement is equivalent to the following two statements, which are executed
in the order in which they appear:
Statement Action
SET IND-1 TO IND-2 IND-1 is set to the occurrence number 7, the current value
of IND-2.
SET TABLE-A (IND-1) TO IND-2 Since the first SET statement sets IND-1 to 7,
TABLE-A (IND-1) = TABLE-A (7).
Thus, this statement sets TABLE-A (7) to 7.
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
UP BY identifier-3
SET {index-3}...
DOWN BY integer-2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 497
SET statement PROCEDURE DIVISION
Example 8-63
02 TABLE-A PICTURE X(20) OCCURS 5 INDEXED BY IND-1.
.
.
.
SET IND-1 TO 4.
SET IND-1 UP BY 2.
SET IND-1 DOWN BY 3.
The first SET statement sets index IND-1 to occurrence number 4; the second, to 6 (i.e. 4
+ 2); and the third, to 3 (i.e. 6 - 3).
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
ON
SET {mnemonic-name-1}... TO ...
OFF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
Each mnemonic-name must be associated with an external switch whose status can be
altered (see "Condition-name condition", page 320).
Format 4
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
TRUE
SET {condition-name-1}... TO ...
FALSE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
General rules
1. The literal specified in the VALUE clause and associated with condition-name-1 is
entered in the conditional variable according to the rules governing the VALUE clause
(see page 297).
498 U41112-J-Z125-1-76
PROCEDURE DIVISION SET statement
If more than one literal is specified in the VALUE clause, the conditional variable is set
to the value of the first literal appearing in the VALUE clause.
2. If two or more condition-names are specified, they are treated as though a SET
statement had been written for each individual condition-name.
3. For "SET...TO FALSE", the literal specified with FALSE in the VALUE clause which is
associated with condition-name is entered in the conditional variable according to
the rules governing the VALUE clause (see "SET condition-name TO TRUE").
Example 8-64
for format 4
IDENTIFICATION DIVISION.
PROGRAM-ID. DAYSET.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 EXAMPLE1.
02 WORKDAY PICTURE X.
88 MONDAY VALUE "1".
88 FRIDAY VALUE "5".
01 EXAMPLE2.
02 WEEKDAY PIC X.
88 WORKDAYS VALUE "1" "2" "3" "4" "5".
PROCEDURE DIVISION.
P1 SECTION.
SETTING.
SET FRIDAY TO TRUE.
DISPLAY "Workday =" WORKDAY UPON T.
SET WORKDAYS TO TRUE.
DISPLAY "Weekday =" WEEKDAY UPON T.
FINISH-PAR.
STOP RUN.
U41112-J-Z125-1-76 499
SET statement PROCEDURE DIVISION
Once the first SET statement has been performed, the data item WORKDAY (conditional
variable) will contain the literal assigned in the VALUE clause to the condition-name
FRIDAY: "5".
Once the second SET statement has been performed, the data item WEEKDAY will contain
the literal "1".
500 U41112-J-Z125-1-76
PROCEDURE DIVISION SET statement
Format 5
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SET {identifier-5}...TO identifier-6
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
U41112-J-Z125-1-76 501
SET statement PROCEDURE DIVISION
5. If the data item referenced by identifier-5 is described with a class-name, the data item
referenced by identifier-6 must be one of the following:
a) an object reference described with a class-name, subject to the following rules:
– If the data item referenced by identifier-5 is described with an ONLY phrase, the
data item referenced by identifier-6 must also be described with the ONLY
phrase. Furthermore, the class-name specified in the description of the data
item referenced by identifier-6 must be the same as the class-name specified in
the description of the data item referenced by identifier-5.
– If the data item referenced by identifier-5 is described without an ONLY phrase,
the class-name specified in the description of the data item referenced by
identifier-6 must reference the same class or subclass specified in the
description of the data item referenced by identifier-5.
– The presence or absence of the FACTORY phrase must be the same as in the
description of the data item referenced by identifier-5.
b) an object reference described with an ACTIVE-CLASS phrase, subject to the
following rules:
– The data item referenced by identifier-5 must not be described with the ONLY
phrase.
– The class containing the data item referenced by identifier-6 must be the same
class or a subclass of the class specified in the description of the data item
referenced by identifier-5.
– The presence or absence of the FACTORY phrase must be the same as in the
description of the data item referenced by identifier-5.
c) the predefined object reference SELF, subject to the following rules:
– The data item referenced by identifier-5 must not be described with the ONLY
phrase.
– The class of an object containing the SET statement must be the same class or
a subclass of the class specified in the description of the data item referenced
by identifier-5.
– If the data item referenced by identifier-5 is described without a FACTORY
phrase, the source unit containing the SET statement must be an object
instance.
– If the data item referenced by identifier-5 is described with a FACTORY phrase,
the source unit containing the SET statement must be a factory object.
d) a class-name, provided the following applies:
– The description of the data item referenced by identifier-5 contains a
FACTORY phrase.
– The class-name references the same class or a subclass of the class specified
in the data item referenced by identifier-5;
e) the predefined object reference NULL.
502 U41112-J-Z125-1-76
PROCEDURE DIVISION SET statement
U41112-J-Z125-1-76 503
SORT statement PROCEDURE DIVISION
SORT statement
Function
Format 1 Sorting records.
The SORT statement is used to sort records either created in an input proce-
dure or contained in a file according to a data items (set of specified keys). The
sorted records are released to an output procedure or entered in a file.
Format 2 Sorting tables.
The SORT statement causes table elements to be arranged according to a
user-defined collating sequence.
DESCENDING KEY
ON {data-name-1}... ...
ASCENDING KEY-YY
THRU
INPUT PROCEDURE IS paragraph-name-1 paragraph-name-2
THROUGH
USING {file-name-1}...
THRU
OUTPUT PROCEDURE IS paragraph-name-3 paragraph-name-4
THROUGH
GIVING {file-name-2}...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The SORT statement may be specified anywhere in the Procedure Division except
– in DECLARATIVES and
– in input/output procedures which belong to a SORT statement.
2. sort-file-name must be described in a sort-file description (SD) entry in the Data
Division.
3. sort-file-name must correspond to the sort-file-name defined in the SELECT clause
(format 2).
504 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
4. data-name-1... are key data-names. A key is that part of a record which is used as a
basis for sorting. Keys must be defined in a record description belonging to an SD entry.
They are subject to the following rules:
a) The data items must not be of variable length.
b) Key data-names may be qualified (see "Qualification", page 84).
c) When two or more record descriptions are supplied, the keys need only be
described in one of these descriptions. If a key is defined in more than one record
description, the descriptions of that key must be identical, and the descriptions must
ensure that the key appears in the same position within each record.
d) A key must not be defined with an OCCURS clause and must not be subordinate to
a data item defined with an OCCURS clause.
e) If the sort file referenced by file-name-1 contains variable length records, all the data
items identified by key data-names must be contained within the first n character
positions of the record, where n equals the minimum record size specified for the
sort file.
f) A maximum of 64 keys may be specified for any file.
g) A key must begin within the first 4096 bytes of the record.
h) Keys for sorting purposes are always listed from left to right in order of significance,
regardless of whether they are ascending or descending. Hence, the first specifi-
cation of data-name-1 is the principal key and the second specification of data-
name-1 the subsidiary key.
i) The maximum length of a key which can be processed by SORT depends on the
format of the key. The maximum length is 16 bytes for the packed decimal format
(PD), the length of the record for a character-string, and 256 bytes for all other
formats.
j) The keys following the KEY-YY specification must be defined either with PIC 99
USAGE DISPLAY or USAGE PACKED-DECIMAL (see section 10.3).
5. file-name-1..., file-name-2... must be defined in a file description (FD) entry in the Data
Division.
6. The record length of records from input files passed to the SORT operation are gov-
erned by the following rules: If the sort file has a fixed length record format, program
execution is terminated if the record is too long. If the record is too short, the missing
spaces will be filled with blanks. If the sort file has a variable length record format, the
input records are accepted without any alteration of their length. This length must be
within the range specified for the sort file in the RECORD clause (see "RECORD
clause", page 225).
U41112-J-Z125-1-76 505
SORT statement PROCEDURE DIVISION
General rules
506 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
4. When the program is executed, the collating sequence for the comparison of non-
numeric sort items is set as follows:
a) If COLLATING SEQUENCE has been specified in the SORT statement, this entry
is used as a sort criterion.
b) If COLLATING SEQUENCE was not specified in the SORT statement, the program-
specific collating sequence will be used (see "OBJECT-COMPUTER paragraph",
page 161).
5. INPUT PROCEDURE indicates that the Procedure Division contains an input
procedure to process records prior to sorting. If INPUT PROCEDURE is specified,
control passes to it when the input section of the SORT program is ready to accept the
first record. During RELEASE statement processing the input procedure releases
records to the sort-file (see "RELEASE statement", page 478). The compiler inserts a
return mechanism at the end of the last section in the input procedure, i.e. once the last
statement in the input procedure has been processed the input procedure is terminated
and the released records will be sorted in the sort-file. The following rules apply to the
input procedure, which is a self-contained section within the Procedure Division:
a) It must consist of one or more sections that are written consecutively.
b) It must contain at least one RELEASE statement so that records can be released
to the sort-file (see "RELEASE statement", page 478).
c) It must not lead to the execution of a MERGE, RETURN, or SORT statement.
d) It may include any procedures needed to select, modify or copy records.
e) It is permitted to leave the input procedure if the programmer makes sure that a
transfer from the input procedure is followed by a return to it, in order to effect a
proper exit from this procedure (i.e. processing its last statement).
f) It is permitted to branch from points outside an input procedure to procedure-names
within that procedure if such a branch does not involve a RELEASE statement or
the end of the input procedure.
6. An input procedure, when specified, is processed before the records in the sort-file are
sorted.
7. If the USING phrase is specified, all the records in the input files (file-name-1...) are
transferred to the sort file referenced by sort-file-name. The input files must not be in
the open mode when execution of the SORT statement begins. The execution of the
SORT statement for each of the named files consists of the following phases:
a) The processing of the file is initiated. The initiation is performed as if an OPEN
statement with the INPUT phrase had been executed.
U41112-J-Z125-1-76 507
SORT statement PROCEDURE DIVISION
b) The logical records are obtained and released to the sort operation. Each record is
obtained as if a READ statement with the NEXT RECORD and the AT END phrases
had been executed. For a relative file, the content of the relative key data item is
undefined after the execution of the SORT statement if file-name-1 is not
additionally referenced in the GIVING phrase.
A relative file must be defined in the FILE CONTROL paragraph with ACCESS
MODE IS SEQUENTIAL.
c) The processing of the file is terminated. The termination is performed as if a CLOSE
statement without optional phrases had been executed. This termination is
performed before the sort operation begins.
These implicit functions are performed such that any associated USE AFTER
EXCEPTION/ERROR procedures are executed; however, the execution of such a USE
procedure must not cause the execution of any statement manipulating the input files
or their record area declarations.
8. OUTPUT PROCEDURE means that the Procedure Division contains an output
procedure in which records are processed after sorting. When the OUTPUT
PROCEDURE phrase is used, control is passed to the output procedure after the sort-
file has been processed by the SORT command. During RETURN statement
processing the output procedure accepts the records from the sort-file. The compiler
inserts a return mechanism at the end of the last section in the output procedure, i.e.
once the last statement in the output procedure has been executed the procedure is
terminated and control passes to the statement that follows the SORT statement.
The following rules apply to the output procedure, which is a self-contained section
within the Procedure Division:
a) It must consist of one or more sections that are written consecutively and that do
not form part of an input procedure.
b) It must contain at least one RETURN statement to make the sorted records avail-
able for processing (see "RETURN statement", page 479).
c) It must not lead to the execution of a MERGE, RELEASE, or SORT statement.
d) It may include any procedures needed to select, modify, or copy records before they
are transferred.
e) It is permitted to leave the output procedure if the programmer makes sure that a
transfer from the output procedure is followed by a return to it, in order to effect a
proper exit from this procedure (i.e. processing its last statement).
f) It is permitted to branch from points outside an output procedure to procedure-
names within that procedure if such a branch does not involve a RETURN
statement or the end of the output procedure.
508 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
U41112-J-Z125-1-76 509
SORT statement PROCEDURE DIVISION
These implicit functions are performed such that any associated USE AFTER
EXCEPTION/ERROR procedures are executed; however, the execution of such a USE
procedure must not cause the execution of any statement manipulating the input files
or their record area declarations. On the first attempt to write beyond the externally
defined boundaries of the file, any USE AFTER STANDARD EXCEPTION/ERROR
procedure specified for the file is executed; if control is returned from this USE
procedure or if no such USE procedure was specified, the processing of the file is termi-
nated, as described in c) above.
12. Since the SORT statement is not directed at individual records, it does not conform to
the standard input/output statements (READ, WRITE, etc.). The READ statement,
when executing, reads a single record; likewise, the WRITE statement writes an
individual record. The SORT statement, on the other hand, does not treat an individual
record but an entire file. Thus, this entire file must be placed at the disposal of SORT,
either via the USING phrase or by repeated use of the RELEASE statement within an
input procedure, before SORT can function. The SORT routine alters the sequence of
the records within the file, and hence the first record returned by the SORT routine is,
as a rule, not the first record released to the routine. SORT cannot provide any output
before it has received the whole of the input.
510 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
Example 8-65
Sort processing with one output file
IDENTIFICATION DIVISION.
PROGRAM-ID. SORT1.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT MASTER-FILE ASSIGN TO "MASTER-FILE".
SELECT OUTPUT-FILE ASSIGN TO "OUTPUT-FILE".
SELECT SORT-FILE ASSIGN TO "SORTWK".
DATA DIVISION.
FILE SECTION.
FD MASTER-FILE LABEL RECORD STANDARD.
01 MASTER-RECORD.
02 E0 PIC X.
02 E1 PIC 9(4).
02 E2 PIC 9(4).
02 E3 PIC 9(4).
FD OUTPUT-FILE LABEL RECORD STANDARD.
01 OUTPUT-RECORD.
02 A0 PIC X.
02 A1 PIC 9(4).
02 A2 PIC 9(4).
02 A3 PIC 9(4).
SD SORT-FILE LABEL RECORD STANDARD.
01 SORT-RECORD.
02 S0 PIC X.
02 S1 PIC 9(4).
02 S2 PIC 9(4).
02 S3 PIC 9(4).
PROCEDURE DIVISION.
P1 SECTION.
SORTING.
SORT SORT-FILE ASCENDING S1 S2 S3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 (1)
USING MASTER-FILE GIVING OUTPUT-FILE.
STOP RUN.
U41112-J-Z125-1-76 511
SORT statement PROCEDURE DIVISION
Example 8-66
Sort processing with two output files
IDENTIFICATION DIVISION.
PROGRAM-ID. SORT2.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT MASTER-FILE ASSIGN TO "MASTER-FILE".
SELECT OUTPUT-FILE-1 ASSIGN TO "OUTPUT-FILE-1".
SELECT OUTPUT-FILE-2 ASSIGN TO "OUTPUT-FILE-2".
SELECT SORT-FILE ASSIGN TO "SORTWK".
DATA DIVISION.
FILE SECTION.
FD MASTER-FILE LABEL RECORD STANDARD.
01 INPUT-RECORD.
02 E0 PIC X.
02 E1 PIC 9(4).
02 E2 PIC 9(4).
02 E3 PIC 9(4).
FD OUTPUT-FILE-1 LABEL RECORD STANDARD.
01 OUTPUT-RECORD-1 PIC X(13).
FD OUTPUT-FILE-2 LABEL RECORD STANDARD.
01 OUTPUT-RECORD-2 PIC X(13).
SD SORT-FILE LABEL RECORD STANDARD.
01 SORT-RECORD.
02 S0 PIC X.
02 S1 PIC 9(4).
02 S2 PIC 9(4).
02 S3 PIC 9(4).
WORKING-STORAGE SECTION.
01 INPUT-STATUS PIC X VALUE LOW-VALUE.
88 INPUT-END VALUE HIGH-VALUE.
01 SORT-STATUS PIC X VALUE LOW-VALUE.
88 SORT-END VALUE HIGH-VALUE.
PROCEDURE DIVISION.
MAIN SECTION.
M1.
OPEN INPUT MASTER-FILE OUTPUT OUTPUT-FILE-1 OUTPUT-FILE-2.
SORT SORT-FILE ASCENDING S1 S2 S3
INPUT PROCEDURE IPROC LR2LR2LR2 (1)
OUTPUT PROCEDURE OPROC.
CLOSE MASTER-FILE OUTPUT-FILE-1 OUTPUT-FILE-2.
ME.
STOP RUN.
IPROC SECTION.
IP0.
PERFORM UNTIL INPUT-END
READ INPUT
AT END
SET INPUT-END TO TRUE
NOT AT END
IF E0 NOT = "C" LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 (2)
THEN
RELEASE SORT-RECORD FROM INPUT-RECORD
END-IF
END-READ
END-PERFORM.
512 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
OPROC SECTION.
A0.
PERFORM UNTIL SORT-END
RETURN SORT-FILE
AT END
SET SORT-END TO TRUE
NOT AT END
IF S0 = "A" LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 (3)
THEN
WRITE OUTPUT-RECORD-1 FROM SORT-RECORD
ELSE
WRITE OUTPUT-RECORD-2 FROM SORT-RECORD
END-IF
END-RETURN
END-PERFORM.
U41112-J-Z125-1-76 513
SORT statement PROCEDURE DIVISION
Example 8-67
IDENTIFICATION DIVISION.
PROGRAM-ID. MERGE1.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT MASTER-FILE-1 ASSIGN TO "MASTER-FILE-1".
SELECT MASTER-FILE-2 ASSIGN TO "MASTER-FILE-2".
SELECT OUTPUT-FILE-1 ASSIGN TO "OUTPUT-FILE-1".
SELECT OUTPUT-FILE-2 ASSIGN TO "OUTPUT-FILE-2".
SELECT SORT-FILE ASSIGN TO "SORTWK".
DATA DIVISION.
FILE SECTION.
FD MASTER-FILE-1 LABEL RECORD STANDARD.
01 MASTER-RECORD-1.
02 E10 PIC X.
02 E11 PIC 9(4).
02 E12 PIC 9(4).
02 E13 PIC 9(4).
FD MASTER-FILE-2 LABEL RECORD STANDARD.
01 MASTER-RECORD-2.
02 E20 PIC X.
02 E21 PIC 9(4).
02 E22 PIC 9(4).
02 E23 PIC 9(4).
FD OUTPUT-FILE-1 LABEL RECORD STANDARD.
01 OUTPUT-RECORD-1 PIC X(13).
FD OUTPUT-FILE-2 LABEL RECORD STANDARD.
01 OUTPUT-RECORD-2 PIC X(13).
SD SORT-FILE LABEL RECORD STANDARD.
01 SORT-RECORD.
02 S0 PIC X.
02 S1 PIC 9(4).
02 S2 PIC 9(4).
02 S3 PIC 9(4).
PROCEDURE DIVISION.
MAIN SECTION.
M01.
MERGE SORT-FILE ON ASCENDING S1 S2 S3
USING MASTER-FILE-1 MASTER-FILE-2 LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 (1)
GIVING OUTPUT-FILE-1 OUTPUT-FILE-2.
M02.
STOP RUN.
(1) The records from two files are sorted according to the same criteria and output to
two identical files in sorted order.
All files are sorted in ascending order according to the sort criteria S1 S2 S3.
514 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
Example 8-68
IDENTIFICATION DIVISION.
PROGRAM-ID. MERGE2.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT MASTER-FILE-1 ASSIGN TO "MASTER-FILE-1".
SELECT MASTER-FILE-2 ASSIGN TO "MASTER-FILE-2".
SELECT OUTPUT-FILE-1 ASSIGN TO "OUTPUT-FILE-1".
SELECT OUTPUT-FILE-2 ASSIGN TO "OUTPUT-FILE-2".
SELECT SORT-FILE ASSIGN TO "SORTWK".
DATA DIVISION.
FILE SECTION.
FD MASTER-FILE-1 LABEL RECORD STANDARD.
01 MASTER-RECORD-1.
02 E10 PIC X.
02 E11 PIC 9(4).
02 E12 PIC 9(4).
02 E13 PIC 9(4).
FD MASTER-FILE-2 LABEL RECORD STANDARD.
01 MASTER-RECORD-2.
02 E20 PIC X.
02 E21 PIC 9(4).
02 E22 PIC 9(4).
02 E23 PIC 9(4).
FD OUTPUT-FILE-1 LABEL RECORD STANDARD.
01 OUTPUT-RECORD-1 PIC X(13).
FD OUTPUT-FILE-2 LABEL RECORD STANDARD.
01 OUTPUT-RECORD-2 PIC X(13).
SD SORT-FILE LABEL RECORD STANDARD.
01 SORT-RECORD.
02 S0 PIC X.
02 S1 PIC 9(4).
02 S2 PIC 9(4).
02 S3 PIC 9(4).
WORKING-STORAGE SECTION.
01 MERGE-STATUS PIC X VALUE LOW-VALUE.
88 MERGE-END VALUE HIGH-VALUE.
PROCEDURE DIVISION.
MAIN SECTION.
M01.
OPEN OUTPUT OUTPUT-FILE-1 OUTPUT-FILE-2.
M02.
MERGE SORT-FILE ON ASCENDING S1 S2 S3
USING MASTER-FILE-1 MASTER-FILE-2 LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 (1)
OUTPUT PROCEDURE IS OPROC1.
M03.
CLOSE OUTPUT-FILE-1 OUTPUT-FILE-2.
STOP RUN.
STOP RUN.
.
.
.
U41112-J-Z125-1-76 515
SORT statement PROCEDURE DIVISION
OPROC SECTION.
A01.
PERFORM UNTIL MERGE-ENDE
RETURN SORT
AT END
SET MERGE-END TO TRUE MU LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2 (2)
NOT AT END
WRITE OUTPUT-RECORD-1 FROM SORT-RECORD
WRITE OUTPUT-RECORD-2 FROM SORT-RECORD
END-RETURN
END-PERFORM.
(1) The records of both files are sorted according to the same criteria and released to
the sort-file in sorted order.
Control then passes to the output procedure (OPROC SECTION).
(2) The sort-file is released record-by-record and written to the output files.
Syntax rules
1. The SORT statement may be used anywhere in the Procedure Division except in
DECLARATIVES and input and output procedures that belong to a SORT statement.
2. data-name-2 and data-name-3, if USING is specified, specify the table to be sorted.
data-name-1... denotes one or more data items to be used as sort keys (key fields).
3. The record specified by data-name-2 must be defined in a data description entry, and
is subject to the following rules:
a) data-name-2 may be qualified.
b) The data description entry for data-name-2 must contain an OCCURS clause, i.e.
be defined as a a table element.
c) If the table specified by data-name-2 is subordinate to a table (multidimensional
table), then data-name-2 must be defined as an indexable table, i.e. an index-name
must be specified in the data description entry for the superordinate table by means
of the INDEXED-BY phrase. Before execution of the SORT statement, the index-
name must be supplied with the desired element number (see "Indexing", page 89).
516 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
4. The key fields specified by data-name-1 must be defined in the data description entry
for data-name-2, where the following rules apply:
a) data-name-1 is either the same as data-name-2 or the same as a data item subor-
dinate to data-name-2.
b) data-name-1 may be qualified.
c) If data-name-1 refers to a data item subordinate to data-name-2, then the
description of this data item must neither contain an OCCURS clause itself nor be
subordinate to a data item whose description contains an OCCURS clause.
d) data-name-1 must not refer to a data item whose description contains a SIGN
clause.
e) If the data item specified by data-name-1 is defined as numeric, it must not
comprise more than 16 digits including sign.
f) The keys following the KEY-YY specification must be defined either with PIC 99
USAGE DISPLAY or with USAGE PACKED-DECIMAL (see section 11.7).
5. For data-name-3, the same rules apply as for data-name-2.
6. If the USING phrase is used, data-name-2 and data-name-3 must be described as
alphanumeric data items.
General rules
1. The key words ASCENDING and DESCENDING apply to all subsequent data-name-1
specifications up to the next key word ASCENDING or DESCENDING.
2. The data items specified by data-name-1 are the sort keys. The sort keys are used
hierarchically from left to right for sort processing, irrespective of whether ASCENDING
or DESCENDING is specified. The first instance of data-name-1 is thus the main sort
key, the second instance of data-name-1 is the next most significant sort key etc.
3. If DUPLICATES is specified and two or more table elements are found to match in
respect of all their key fields, then the relative sequence of these table elements will not
be changed by sort processing.
4. If DUPLICATES is not specified and two or more table elements are found to match in
respect of all their key fields, then the relative sequence of these table elements will be
undefined after sort processing.
5. The collating sequence that is used in comparing the non-numeric key fields is defined
as follows on commencement of execution of the SORT statement:
a) If COLLATING SEQUENCE is specified in the SORT statement, this specification
serves as the criterion for the collating sequence,
U41112-J-Z125-1-76 517
SORT statement PROCEDURE DIVISION
518 U41112-J-Z125-1-76
PROCEDURE DIVISION SORT statement
Example 8-69
Sorting a table
IDENTIFICATION DIVISION.
PROGRAM-ID. TABSORT.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 NAMETAB.
02 TAB-ELEM OCCURS 10 TIMES.
03 FORENAME PIC X(8).
03 FILLER PIC X(3) VALUE SPACES.
03 NAME PIC X(10).
PROCEDURE DIVISION.
SINGLE SECTION.
INITIALIZATION.
MOVE "PETER" TO FORENAME (1) MOVE "KRAUS" TO NAME (1).
MOVE "JANE" TO FORENAME (2) MOVE "FONDA" TO NAME (2).
MOVE "PETER" TO FORENAME (3) MOVE "FONDA" TO NAME (3).
MOVE "KARL" TO FORENAME (4) MOVE "KRAUS" TO NAME (4).
MOVE "UWE" TO FORENAME (5) MOVE "SEELER" TO NAME (5).
MOVE "WALT" TO FORENAME (6) MOVE "DISNEY" TO NAME (6).
MOVE "CLARA" TO FORENAME (7) MOVE "WIECK" TO NAME (7).
MOVE "LEONID" TO FORENAME (8) MOVE "KOGAN" TO NAME (8).
MOVE "ERICH" TO FORENAME (9) MOVE "FROMM" TO NAME (9).
MOVE "ELVIS" TO FORENAME (10) MOVE "PRESLEY" TO NAME (10).
DISPLAY NAMETAB UPON T.
SORTING.
SORT TAB-ELEM ON ASCENDING KEY NAME FORENAME.
DISPLAY NAMETAB UPON T.
ENDE.
STOP RUN.
Sorted table:
Element number
(1) WALT DISNEY
(2) JANE FONDA
(3) PETER FONDA
(4) ERICH FROMM
(5) LEONID KOGAN
(6) KARL KRAUS
(7) PETER KRAUS
(8) ELVIS PRESLEY
(9) UWE SEELER
(10) CLARA WIECK
U41112-J-Z125-1-76 519
START statement PROCEDURE DIVISION
START statement
Function
The START statement defines the logical starting point within a file for subsequent
sequential read operations.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IS EQUAL TO
IS =
IS GREATER THAN
IS >
IS NOT LESS THAN
IS NOT <
START file-name [WITH NO LOCK] KEY IS GREATER THAN OR EQUAL TO file-name
MUIS >= MU
IS LESS THAN
IS <
IS LESS THAN OR EQUAL TO
IS <=
IS NOT GREATER THAN
IS NOT >
[END-START]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
The format extension WITH NO LOCK is effective during shared updating of files; it is
described in the "COBOL2000 User Guide" [1].
Syntax rules
520 U41112-J-Z125-1-76
PROCEDURE DIVISION START statement
6. The INVALID KEY phrase must be present if no applicable USE procedure has been
specified.
General rules
For relative and indexed file organization, the following also applies:
1. The file specified by file-name must be open in the INPUT or I-O mode at the time the
START statement is executed (see “OPEN statement”, page 443).
2. If the KEY phrase is omitted from the START statement, the relational operator EQUAL
is assumed.
3. After execution of a START statement, the contents of the FILE STATUS data items (if
specified) of that file are updated (see “FILE STATUS clause”, page 189).
4. The END-START phrase delimits the scope of the START statement.
5. The type of comparison is specified by the relational operator in the KEY phrase. The
position of each record in the file specified by file-name is compared with the contents
of the data item referenced by data-name (RELATIVE KEY; this applies to files with
relative organization).
The type of comparison is specified by the relational operator in the KEY phrase. The
logical key of each record in the file specified by data-name is compared with the con-
tents of the data item referenced by data-name (RECORD KEY or ALTERNATE
RECORD KEY). If the length of data-name differs from that of the RECORD KEY or
ALTERNATE KEY item, the comparison is performed as though the larger data item had
been truncated from the right to the length of the smaller item. All remaining rules gov-
erning the comparison of non-numeric operands (of equal size) then apply, with any
specified PROGRAM COLLATING SEQUENCE being ignored. All key comparisons
thus take place on the basis of the EBCDIC collating sequence, i.e. as though no PRO-
GRAM COLLATING SEQUENCE or PROGRAM COLLATING SEQUENCE IS NATIVE
had been specified (this applies to indexed files):
a) For the relational operators EQUAL, GREATER, GREATER OR EQUAL, NOT LESS
and their equivalents, the current record pointer is positioned to the first record cur-
rently existing in the file whose key satisfies the comparison.
b) For the relational operators LESS, LESS OR EQUAL, NOT GREATER and their
equivalents, the record pointer is positioned to the last record whose key satisfies
the comparison.
c) If the relation condition is not satisfied for any record in the file, an invalid key con-
dition occurs, and the START statement is terminated unsuccessfully.
U41112-J-Z125-1-76 521
START statement PROCEDURE DIVISION
522 U41112-J-Z125-1-76
PROCEDURE DIVISION STOP statement
STOP statement
Function
The STOP statement causes a permanent or temporary suspension of the execution of the
object program (run unit).
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
RUN
STOP
literal
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The literal may be numeric, non-numeric, or any figurative constant except ALL literal.
2. If the literal is numeric, it must be an unsigned integer.
3. If a STOP statement with RUN phrase appears in a sentence, then it must be the only
statement in that sentence, or it must be the last statement in a sequence of imperative
statements.
4. The STOP statement with the RUN phrase specified terminates execution of the
program, and returns control to the operating system.
5. If STOP literal is used, the literal is communicated to the system operator. In this case,
only the system operator can resume the program. Continuation of the program begins
with the next executable statement.
General rules
1. If the number of characters of the non-numeric literal exceeds the hardware capability
of the master console or subconsole, then more than one physical output operation will
be performed to output the literal.
2. During the execution of a STOP RUN statement, an implicit CLOSE statement without
any optional phrases is executed for each file that is in the open mode in the run unit.
Any USE procedures associated with any of these files are not executed.
U41112-J-Z125-1-76 523
STRING statement PROCEDURE DIVISION
STRING statement
Function
The STRING statement moves and juxtaposes the partial or complete contents of two or
more data items into a single data item.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1 identifier-2
STRING ... [DELIMITED BYliteral-2 ] ...
literal-1 SIZE
[END-STRING]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
524 U41112-J-Z125-1-76
PROCEDURE DIVISION STRING statement
8. identifier-3 must not represent an edited data item and must not be described with the
JUSTIFIED clause.
9. identifier-4 is a counter item and must be described as an elementary numeric integer
data item of sufficient size to accommodate the size of the data item referenced by
identifier-3 plus the value 1.
The symbol P is prohibited in the PICTURE character-string of identifier-6.
10. identifier-3 must not be subjected to reference modification.
11. END-STRING delimits the scope of the STRING statement.
General rules
1. When the STRING statement is executed, the transfer of data is governed by the
following rules:
a) The sending items literal-1 or the contents of identifier-1 are transferred to the
receiving item referenced by identifier-3 in accordance with the rules for alphanu-
meric-to-alphanumeric moves, except that no space filling will be provided.
b) If the DELIMITED BY phrase is specified without the SIZE phrase, the content of
identifier-1... or the value of literal-1 is transferred character-by-character to the
receiving data item, beginning with the leftmost character and continuing from left
to right until the end of the sending data item is reached or until the character(s)
specified by the delimiter referenced by literal-2, or the contents of identifier-2, are
encountered. The delimiter is not transferred.
c) If the DELIMITED BY phrase is specified with the SIZE phrase, the entire contents
of the sending items referenced by literal-1 or identifier-1 are transferred to the
receiving item referenced by identifier-3 until all data has been transferred or the
end of identifier-3 has been reached. The transfer takes place in the sequence
specified in the STRING statement.
2. If the POINTER phrase is specified, the counter item referenced by identifier-4 is
explicitly available to the user, i.e. an initial value greater than 0, and of adequate size
to contain a value of the length of identifier-3 plus one byte, must be set by the user.
3. The subscripts of an identifier in the POINTER phrase are evaluated before the
STRING statement is executed.
4. If the POINTER phrase is not specified, the following general rules apply as if the user
had specified identifier-4 referencing a data item with an initial value of 1.
5. When moved to the receiving item identifier-3, each character is transferred separately
from the sending item to the character position of identifier-3 which is determined by the
value of the counter item identifier-4. Each time a character is moved, identifier-4 is
incremented by 1. This is the only manner in which the value of identifier-4 changes
during execution of the STRING statement.
U41112-J-Z125-1-76 525
STRING statement PROCEDURE DIVISION
6. At the end of execution of the STRING statement, only the portion of the receiving item
referenced by identifier-3 into which characters were moved is changed. The rest of
identifier-3 remains the same.
7. If at any time during or after the initialization of the STRING statement, but before
processing is completed, the value associated with the counter item referenced by
identifier-4 is either less than one or exceeds the number of character positions in the
receiving item referenced by identifier-3, no (further) data is transferred to identifier-3,
and the imperative statement in the ON OVERFLOW phrase, if specified, is executed.
8. If the ON OVERFLOW phrase is not specified when one of the conditions described
above is encountered, control is transferred to the end of the STRING statement.
9. The imperative statement in the NOT ON OVERFLOW phrase is executed if the
STRING statement ends without one of the conditions described above having been
encountered.
526 U41112-J-Z125-1-76
PROCEDURE DIVISION STRING statement
Example 8-70
IDENTIFICATION DIVISION.
PROGRAM-ID. STRNG.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 FIELD1 PIC X(16) VALUE "INITIAL RESTRICTION".
77 FIELD2 PIC X(12) VALUE "VALUE RANGE".
77 FIELD3 PIC X(25) VALUE SPACES.
77 FIELD4 PIC 99 VALUE 3.
PROCEDURE DIVISION.
PROC SECTION.
MAIN.
DISPLAY "Before STRING: " UPON T.
PERFORM DISPLAY-FIELDS.
STRING FIELD1, FIELD2 DELIMITED BY "B",
" INVALID" DELIMITED BY SIZE
INTO FIELD3 WITH POINTER FIELD4
ON OVERFLOW
DISPLAY "Error" UPON T
END-STRING
DISPLAY "After STRING" UPON T.
PERFORM DISPLAY-FIELDS.
STOP RUN.
DISPLAY-FIELDS.
DISPLAY "Field1 = *" FIELD1 "*" UPON T.
DISPLAY "Field2 = *" FIELD2 "*" UPON T.
DISPLAY "Field3 = *" FIELD3 "*" UPON T.
DISPLAY "Field4 = *" FIELD4 "*" UPON T.
Result:
Before STRING After STRING
FIELD1 = *INITIAL-RESTRICTION FIELD1 = *INITIAL-RESTRICTION*
FIELD2 = *VALUE-RANGE* FIELD2 = *VALUE-RANGE*
FIELD3 = * * FIELD3 = * SET-INITIAL-VALUES *
FIELD4 = *03* FIELD4 = *22*
U41112-J-Z125-1-76 527
SUBTRACT statement PROCEDURE DIVISION
SUBTRACT statement
Function
The SUBTRACT statement is used to subtract the value of a numeric item, or the sum of
two or more values of numeric data items, from one or more items.
Format 1 of the SUBTRACT statement stores the difference in one of the operands.
In a SUBTRACT statement, more than one subtraction may be specified by
supplying more than one result item.
Format 2 of the SUBTRACT statement uses the GIVING phrase.
Format 3 of the SUBTRACT statement subtracts the items in one group item from the
corresponding items in another group item.
Format 1
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1
SUBTRACT ...
literal-1
[END-SUBTRACT]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
528 U41112-J-Z125-1-76
PROCEDURE DIVISION SUBTRACT statement
Example 8-71
for format 1
Statement PICTURE of result item Calculation
SUBTRACT A, B FROM D 999 D - (A + B) stored in D as nnn
SUBTRACT A FROM B,C 9(3) for B B - A stored in B as nnn
Format 2
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
identifier-1 identifier-m
SUBTRACT ... FROM
literal-1 literal-m
[END-SUBTRACT]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. Each identifier preceding the word GIVING must refer to an elementary numeric item.
2. identifier-n may refer either to an elementary numeric item or to an elementary numeric
edited item.
3. The composite of operands determined by using all of the operands in a given state-
ment, except for the data items which follow the word GIVING, must not contain more
than 18 digits (see "Arithmetic statements", page 338).
4. All literals and identifiers preceding the word FROM are added together, and the sum is
subtracted from literal-m or identifier-m. The results of the subtraction are stored as the
new value of identifier-n.
5. END-SUBTRACT delimits the scope of the SUBTRACT statement.
Additional rules are given under "Options in arithmetic statements" (page 341ff), where the
GIVING, ROUNDED, and (NOT) ON SIZE ERROR phrases are described.
U41112-J-Z125-1-76 529
SUBTRACT statement PROCEDURE DIVISION
Example 8-72
for format 2
Statement PICTURE of result item (C) Calculation
SUBTRACT A, B FROM 9(5) 100 - (A + B) stored in C as nnnnn
100 GIVING C.
Format 3
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CORR
SUBTRACT identifier-1
CORRESPONDING
[END-SUBTRACT]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Example 8-73
for format 3
Refer to the description of the CORRESPONDING phrase for an example of the use of this
phrase (page 341).
530 U41112-J-Z125-1-76
PROCEDURE DIVISION UNSTRING statement
UNSTRING statement
Function
The UNSTRING statement causes contiguous data in a sending item to be separated and
placed into multiple receiving items.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
UNSTRING identifier-1
identifier-2 identifier-3
DELIMITED BY [ALL] OR [ALL] ...
literal-1 literal-2
[END-UNSTRING]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. Each literal must be a non-numeric literal. In addition, each literal may be any figurative
constant, except ALL literal.
2. identifier-1, identifier-2, identifier-3, identifier-5 must reference data items described,
implicitly or explicitly, as alphanumeric.
3. identifier-4 may be described as either
– alphabetic (except that the symbol B must not be used in the PICTURE character-
string), or
– alphanumeric or numeric (except that the symbol P must not be used in the PIC-
TURE character-string) and must be described, implicitly or explicitly, as USAGE IS
DISPLAY.
4. identifier-6, identifier-7, identifier-8 must reference integer data items.
The symbol P must not be used in the PICTURE character-string.
5. All references to identifier-2, literal-1, identifier-4, identifier-5, identifier-6 apply analo-
gously to all recursions thereof, and to identifier-3 and literal-2.
6. identifier-1 represents the sending area.
U41112-J-Z125-1-76 531
UNSTRING statement PROCEDURE DIVISION
7. identifier-4 represents the receiving area, identifier-5 the receiving area for delimiters.
8. literal-1 or the data item referenced by identifier-2 specifies a delimiter
9. identifier-6 represents the count of the number of characters encountered within
identifier-1 up to the delimiter, i.e. the number of characters within identifier-1 which are
to be moved to identifier-4. This value does not include a count of the delimiter
character(s).
10. The data item referenced by identifier-7 contains a value that indicates a character
position within the area referenced by identifier-1 (relative to the beginning of that area).
11. The data item referenced by identifier-8 is a counter for the number of receiving items
accessed during an UNSTRING operation.
12. literal-1 or identifier-2 may contain any character from the computer’s character set.
13. identifier-1 must not be subjected to reference modification.
14. DELIMITER IN and COUNT IN can be used only in conjunction with DELIMITED BY.
15. END-UNSTRING delimits the scope of the UNSTRING statement.
General rules
532 U41112-J-Z125-1-76
PROCEDURE DIVISION UNSTRING statement
U41112-J-Z125-1-76 533
UNSTRING statement PROCEDURE DIVISION
8. The initialization of the contents of the data items associated with the POINTER or
TALLYING phrase is the responsibility of the user.
9. The contents of the data item referenced by identifier-7 will be incremented by 1 for
each character examined in the data item referenced by identifier-1.
When the execution of an UNSTRING statement with a POINTER phrase is completed,
identifier-7 will contain a value equal to the initial value plus the number of characters
examined in the data item referenced by identifier-1.
10. When the execution of an UNSTRING statement with a TALLYING phrase is completed,
identifier-8 contains a value equal to its initial value plus the number of receiving data
items accessed.
11. Either of the following situations causes an overflow condition:
a) If an UNSTRING is initiated, and the value in the data item referenced by identifier-
7 is less than 1 or greater than the size of the data item referenced by identifier-1.
b) If, during execution of an UNSTRING statement, all receiving areas have been
acted upon, and the data item referenced by identifier-1 contains characters that
have not been examined.
12. When an OVERFLOW condition exists, the UNSTRING operation is terminated.
If an ON OVERFLOW phrase has been specified, the imperative statement given in this
phrase is executed. If the ON OVERFLOW phrase is not specified, control is transferred
to the next statement to be executed.
13. The imperative statement specified in the NOT ON OVERFLOW phrase is executed if
the UNSTRING statement is terminated and none of the conditions described above
has been encountered.
14. Subscripts and indexes for the identifiers are analyzed as follows:
a) If the items identifier-1, identifier-7, identifier-8 are subscripted or indexed, the index
value for these items is calculated once only, immediately before the UNSTRING
statement is executed.
b) Any subscripting of identifiers in the DELIMITED BY, INTO, DELIMITER IN, and
COUNT phrases is evaluated immediately before the data is transferred to the
respective data item.
534 U41112-J-Z125-1-76
PROCEDURE DIVISION UNSTRING statement
Example 8-74
IDENTIFICATION DIVISION.
PROGRAM-ID. UNSTRING.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 FIELD PIC X(12) VALUE "ABCDEFGHIJKL".
01 AREA1.
02 PART1 PIC X VALUE SPACES.
02 PART2 PIC XX VALUE SPACES.
02 PART3 PIC XXX VALUE SPACES.
01 NUMB PIC 99 VALUE ZERO.
PROCEDURE DIVISION.
PROC SECTION.
MAIN.
DISPLAY "Before UNSTRING" UPON T.
PERFORM DISPLAY-FIELDS.
*
UNSTRING FIELD DELIMITED BY "E" OR "H" OR "K" OR "L"
INTO PART3, PART2, PART1
TALLYING IN NUMB.
END-UNSTRING
*
DISPLAY "After UNSTRING" UPON T.
PERFORM DISPLAY-FIELDS.
STOP RUN.
DISPLAY-FIELDS.
DISPLAY "Field = *" FIELD "*" UPON T.
DISPLAY "Part1 = *" PART1 "*" UPON T.
DISPLAY "Part2 = *" PART2 "*" UPON T.
DISPLAY "Part3 = *" PART3 "*" UPON T.
DISPLAY "Numb = *" NUMB "*" UPON T.
Result:
U41112-J-Z125-1-76 535
USE statement PROCEDURE DIVISION
USE statement
Function
The USE statement introduces declarative procedures and defines the conditions for their
execution. The USE statement itself, however, is not executed.
Format 1 declares label handling routines.
Format 2 declares procedures to be run if an input/output error occurs for a file.
Format 3 same as format 2 but with the GLOBAL statement, and applies to nested
programs only.
Format 4 declares procedures to be executed by the Report Writer before the output
of listings. This format is described in chapter 10.
1. file-name-1 must be defined in a file description (FD) entry of the program’s Data Divi-
sion.
2. file-name-1 must not be the name of a sort file.
3. file-name-1 refers to the file description entry for which the specified label handling
procedures are to be performed.
4. The procedures specified are executed in conjunction with OPEN and CLOSE state-
ments for the file.
5. Once a USE procedure has been executed, program execution resumes with the calling
routine.
6. BEFORE or AFTER indicates the types of labels to be processed.
BEFORE indicates that nonstandard labels are to be processed (such labels may be
specified only for tape files).
AFTER indicates that user labels follow standard file labels and that these user labels
are to be processed.
536 U41112-J-Z125-1-76
PROCEDURE DIVISION USE statement
1. The labels to be processed for a file must be specified within the file description entry
of that file as data-names in the LABEL RECORDS clause. These labels must be de-
fined as level-01 data items within the file description entry or the LINKAGE SECTION.
2. The same file-name may appear in more than one variant of the format-1 USE
statement. However, this must not cause two or more declarative procedures to be
initiated at the same time.
3. If the file-name-1 specification is used, the file description for the file-name must not
specify a LABEL RECORDS clause with the OMITTED phrase.
4. No user label routines can be declared for external files.
5. The standard system procedures are performed on all standard label records consisting
of system and user labels.
a) Labels on input or input/output files are checked in the following order:
1. The I-O system checks standard header labels.
2. The USE procedures (if any) check user header labels.
3. The I-O system checks standard trailer labels.
4. The USE procedures (if any) check user trailer labels.
a) Labels on output files are created in the following order:
1. The I-O system creates standard header labels.
2. The USE procedures (if any) create user header labels.
U41112-J-Z125-1-76 537
USE statement PROCEDURE DIVISION
3. Before the user header labels are written, they are checked to see whether they
begin with the string UHL.
4. The I-O system creates standard trailer labels.
5. The USE procedures (if any) create user trailer labels.
6. Before the user trailer labels are written, they are checked to see whether they
begin with the string UTL.
6. Within a USE procedure, there must be no reference to nondeclarative procedures
except for the PERFORM statement.
References to procedure names which are subordinate to a USE statement may be
made from another procedure or from a nondeclarative procedure by using a
PERFORM statement only.
7. The exit from a format-1 declarative procedure is generated by the compiler following
the last statement in a given section. All logical paths within that section must lead to
this exit point.
8. There is one exception to general rule 7:
The GO TO statement with the MORE-LABELS phrase may be used as a special exit
point. After this statement is executed, the runtime system will take one of the following
actions:
a) If labels are currently being created, the system will write the current header or
trailer labels; the program will then continue at the beginning of the declarative sec-
tion in order to create more labels. The user must make sure that the last statement
in the section is executed after all labels are created. At this point, it should be noted
that after execution of the GO TO statement with the MORE-LABELS phrase, a la-
bel will be written in any case; if the user did not supply a new label, the runtime
system will generate a dummy label record in analogy to general rule 7.
b) If labels are currently being checked, the system will read an additional header or
trailer label; the program will then continue at the beginning of the declarative sec-
tion in order to check more labels. However, when processing user labels, the sys-
tem will reenter the section only when there is another user label to check. Thus, in
this case, the programmer does not have to provide a program path that flows
through the last statement in the section. On the other hand, when processing non-
standard labels, the system does not know how many labels exist. The last state-
ment in the section must therefore be executed in this case in order to terminate
nonstandard label processing.
538 U41112-J-Z125-1-76
PROCEDURE DIVISION USE statement
Example 8-75
for format 1
In this example, one declarative section (ALPHA) handles header labels and another
(BETA) handles trailer labels. The declarative procedures are executed both in input and
output modes.
IDENTIFICATION DIVISION.
PROGRAM-ID. USESEQ.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT SAMPLE-FILE ASSIGN TO "TESTTAPE".
DATA DIVISION.
FILE SECTION.
FD SAMPLE-FILE,
RECORD CONTAINS 100 CHARACTERS,
LABEL RECORD IS SAMPLE-LABEL,
DATA RECORD IS SAMPLE-RECORD.
01 SAMPLE-LABEL.
02 LABEL-ID PICTURE X(4).
02 LABEL-INFO PICTURE X(76).
01 SAMPLE-RECORD PICTURE X(100).
WORKING-STORAGE SECTION.
77 I-O-INDICATOR PICTURE X.
88 INPUT-MODE VALUE "I".
88 OUTPUT-MODE VALUE "O".
77 LABEL-COUNTER PICTURE 9.
PROCEDURE DIVISION.
DECLARATIVES.
ALPHA SECTION.
USE AFTER STANDARD BEGINNING FILE
LABEL PROCEDURE ON SAMPLE-FILE.
ALPHA-1.
IF INPUT-MODE
THEN
DISPLAY "512010 THIS LABEL READ:-" SAMPLE-LABEL
UPON T
GO TO MORE-LABELS
ELSE
IF LABEL-COUNTER = 0
THEN
MOVE "UHL1" TO LABEL-ID
MOVE "THIS WAS PRODUCED BY ALPHA SECTION."
TO LABEL-INFO
DISPLAY "511030 THIS LABEL CREATED:-" SAMPLE-LABEL
UPON T
MOVE 1 TO LABEL-COUNTER
GO TO MORE-LABELS
ELSE
MOVE "UHL2" TO LABEL-ID
MOVE "SECOND LABEL PRODUCED BY ALPHA SECTION" TO LABEL-INFO
DISPLAY "511530 AND THIS LABEL TOO:-"
SAMPLE-LABEL UPON T
MOVE 2 TO LABEL-COUNTER
U41112-J-Z125-1-76 539
USE statement PROCEDURE DIVISION
END-IF
END-IF.
ALPHA-END.
EXIT.
BETA SECTION.
USE AFTER STANDARD ENDING FILE
LABEL PROCEDURE ON SAMPLE-FILE.
BETA-1.
IF INPUT-MODE
THEN
DISPLAY "522010 THIS LABEL READ:-" SAMPLE-LABEL
UPON T
GO TO MORE-LABELS
ELSE
IF LABEL-COUNTER = 0
THEN
MOVE "UTL1" TO LABEL-ID
MOVE "THIS WAS PRODUCED BY BETA SECTION" TO LABEL-INFO
DISPLAY "521030 THIS LABEL CREATED:-" SAMPLE-LABEL
UPON T
MOVE 1 TO LABEL-COUNTER
GO TO MORE-LABELS
ELSE
MOVE "UTL2" TO LABEL-ID
MOVE "SECOND LABEL PRODUCED BY BETA SECTION" TO LABEL-INFO
DISPLAY "521530 AND THIS LABEL TOO: "
SAMPLE-LABEL UPON T
MOVE 2 TO LABEL-COUNTER
END-IF
END-IF.
BETA-END.
EXIT.
END DECLARATIVES.
GAMMA SECTION.
HERE-GOES.
MOVE "O" TO I-O-INDICATOR.
OPEN OUTPUT SAMPLE-FILE
CLOSE SAMPLE-FILE
STOP RUN.
540 U41112-J-Z125-1-76
PROCEDURE DIVISION USE statement
Example 8-76
for format 1
In this example, UHL-FIELD, LABEL-NO and USER-INFO are common label items.
Therefore, the unqualified reference to UHL-FIELD in the paragraph named L-1 is legit-
imate.
Data Division entries:
FD FILE-1.
...
LABEL RECORD IS LABEL-1
...
01 LABEL-1.
02 UHL-FIELD PIC X(3).
02 LABEL-NO PIC 9.
02 USER-INFO PIC X(76).
01 RECORD-1.
...
FD FILE-2
...
LABEL RECORD IS LABEL-2
...
01 LABEL-2.
02 UHL-FIELD PIC X(3).
02 LABEL-NO PIC 9.
02 USER-INFO PIC X(76).
01 RECORD-2.
Procedure Division statements:
L SECTION.
USE AFTER STANDARD LABEL PROCEDURE ON INPUT.
L-1.
IF UHL-FIELD NOT = "UHL" THEN STOP RUN.
...
GO TO MORE-LABELS.
L-9.
EXIT.
M SECTION.
...
HOUSEKEEPING SECTION.
FILE-OPEN.
OPEN INPUT FILE-1, FILE-2.
U41112-J-Z125-1-76 541
USE statement PROCEDURE DIVISION
1. The ERROR and EXCEPTION phrases are equivalent and may be used interchange-
ably.
2. file-name-1 must not appear in more than one USE statement. The INPUT, OUTPUT,
I-O, and EXTEND phrases may each be specified only once.
3. Files referenced either implicitly (INPUT, OUTPUT, I-O and EXTEND) or explicitly (file-
name-1, file-name-2, ...) in the USE statement need not have the same organization
and access mode.
542 U41112-J-Z125-1-76
PROCEDURE DIVISION USE statement
7. I-O indicates that the specified procedures are executed only for files opened in I-O
mode (OPEN statement with the I-O phrase).
8. EXTEND indicates that the specified procedures are executed only for files opened in
extend mode (OPEN statement with the EXTEND phrase).
9. Within a USE procedure, there must be no reference to nondeclarative procedures,
except for the PERFORM statement.
10. Reference to procedure names which are subordinate to a USE statement may be
made from another procedure or from a nondeclarative procedure by using a PER-
FORM statement only.
U41112-J-Z125-1-76 543
USE statement PROCEDURE DIVISION
Example 8-77
for format 2
IDENTIFICATION DIVISION.
PROGRAM-ID. USESEQ2.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT MASTER-FILE ASSIGN "MASTER-FILE"
FILE STATUS INDICATOR.
FILE SECTION.
FD MASTER-FILE.
01 REC PIC X(80).
WORKING-STORAGE SECTION.
01 INDICATOR PIC 99.
01 CLOSE-INDICATOR PIC X VALUE "0".
88 FILE-CLOSED VALUE "0".
88 FILE-OPEN VALUE "1".
PROCEDURE DIVISION.
DECLARATIVES.
INPUT-ERROR SECTION.
USE AFTER ERROR PROCEDURE ON MASTER-FILE.
STATUS-QUERY.
IF INDICATOR = 10
DISPLAY "End of MASTER-FILE encountered" UPON T
ELSE
DISPLAY "Unrecoverable error (" Indicator
") for MASTER-FILE" UPON T
IF FILE-OPEN
CLOSE MASTER-FILE
END-IF
DISPLAY "Program terminated abnormally" UPON T
STOP RUN
END-IF.
END DECLARATIVES.
BEGIN SECTION.
WORK.
OPEN INPUT MASTER-FILE.
SET FILE-OPEN TO TRUE.
READ MASTER-FILE.
CLOSE MASTER-FILE WITH LOCK.
SET FILE-CLOSED TO TRUE.
OPEN INPUT MASTER-FILE.
CLOSE MASTER-FILE.
STOP RUN.
544 U41112-J-Z125-1-76
PROCEDURE DIVISION USE statement
Example 8-78
for format 2
IDENTIFICATION DIVISION.
PROGRAM-ID. USEREL.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT OPTIONAL WORKFILE ASSIGN TO "WORKFILE"
ORGANIZATION IS RELATIVE
ACCESS MODE IS DYNAMIC
RELATIVE KEY IS RELKEY
FILE STATUS INDICATOR.
DATA DIVISION.
FILE SECTION.
FD WORKFILE.
01 REC.
03 INHOLD PIC X(100).
WORKING-STORAGE SECTION.
01 INDICATOR PIC 99.
01 RELKEY PIC 9(4).
01 CLOSE-INDICATOR PIC X VALUE "0".
88 FILE-CLOSED VALUE "0".
88 FILE-OPEN VALUE "1".
PROCEDURE DIVISION.
DECLARATIVES.
INPUT-ERROR SECTION.
USE AFTER ERROR PROCEDURE ON WORKFILE.
STATUS-QUERY.
EVALUATE INDICATOR
WHEN 10
DISPLAY "End of WORKFILE encountered" UPON T
WHEN 22
DISPLAY "Record with key" RELKEY "ALREADY EXISTS" UPON T
WHEN 23
DISPLAY "Record with key" RELKEY "NON-EXISTENT" UPON T
WHEN OTHER
DISPLAY "Unrecoverable error "(" INDICATOR")"
"FOR FILE-INPUT" UPON T
IF FILE-OPEN
THEN
CLOSE WORKFILE
END-IF
DISPLAY "Program terminated abnormally" UPON T
STOP RUN
END-EVALUATE.
END-DECLARATIVES.
MAIN SECTION.
OPEN-CLOSE.
...
STOP RUN.
U41112-J-Z125-1-76 545
USE statement PROCEDURE DIVISION
IDENTIFICATION DIVISION.
PROGRAM-ID. USEIND.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS T.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT MASTER-FILE ASSIGN "IN-OUT"
ORGANIZATION IS INDEXED
RECORD KEY ISAMKEY
ACCESS MODE IS DYNAMIC
FILE STATUS INDICATOR.
DATA DIVISION.
FILE SECTION.
FD FILE1.
01 RECORD-FORMAT.
03 ISAMKEY PIC 9(8).
03 CONTENTS PIC X(72).
WORKING-STORAGE SECTION.
01 INDICATOR PIC 99.
01 CLOSE-INDICATOR PIC X VALUE "0".
88 FILE-CLOSED VALUE "0".
88 FILE-OPEN VALUE "1".
PROCEDURE DIVISION.
DECLARATIVES.
FILE-ERROR SECTION.
USE AFTER ERROR PROCEDURE ON FILE1.
STATUS-QUERY.
EVALUATE INDICATOR
WHEN 10
DISPLAY "End of FILE1 encountered" UPON T
WHEN 21
DISPLAY "Record with key" ISAMKEY
"ALREADY EXISTS OR NOT IN"
"ASCENDING ORDER" UPON T
WHEN 22
DISPLAY "Record with key" ISAMKEY
"ALREADY EXISTS" UPON T
WHEN 23
DISPLAY "Record with key" ISAMKEY
"NON-EXISTENT" UPON T
WHEN OTHER
DISPLAY "Unrecoverable error"
"(" INDICATOR") FOR MASTER FILE" UPON T
IF FILE-OPEN
THEN
CLOSE FILE1
END-IF
DISPLAY "Program terminated abnormally" UPON T
STOP RUN
END-EVALUATE.
END DECLARATIVES.
BEGIN SECTION.
OPEN-CLOSE.
. . .
STOP RUN.
546 U41112-J-Z125-1-76
PROCEDURE DIVISION USE statement
The USE statement with the GLOBAL phrase can be specified in nested programs in order
to define procedure declarations or label routines as global.
For the declaration of user label routines cannot contain a GLOBAL clause.
1. The GLOBAL phrase for a USE procedure has the same effect as the GLOBAL clause
in data and file descriptions.
2. If an I-O statement requires the use of a USE procedure, then the valid USE procedure
is selected from the sum total of all the USE procedures declared in the nested
program, in accordance with the following rules of precedence:
a) The valid USE procedure is the one defined in the same program.
b) If a) does not apply, the valid USE procedure is the one declared as global in the
directly superordinate (next outer) program.
c) If neither a) nor b) applies, the valid USE procedure is the one declared as global in
the indirectly superordinate program.
Rule c) applies until all indirectly superordinate programs have been searched for the
valid global USE procedure.
If no suitable USE procedure is found, then none is executed.
3. As an extension to ANS85, the compiler described here also permits PERFORM state-
ments that relate to program segments outside of the DECLARATIVES. These program
segments may also contain CALL, GO TO, GOBACK and EXIT PROGRAM statements.
When a global USE procedure is used, this may result in recursive calling of the
program that activated the USE procedure. A recursive call (always inadmissible) is not
detected until program execution time, and results in program abortion.
A global USE procedure should not therefore execute any EXIT PROGRAM statement.
U41112-J-Z125-1-76 547
USE statement PROCEDURE DIVISION
Example 8-80
for format 3
of the scope of validity of global USE procedures
PROGRAM-ID. A-PROG.
...
FD FILE1 GLOBAL.
...
PROGRAM-ID. B-PROG.
...
USE GLOBAL ... ON FILE1. (1) Global USE procedure
...
PROGRAM-ID. C-PROG.
...
USE GLOBAL ... ON INPUT. (2) Global USE procedure
USE ... ON OUTPUT. (3) Local USE procedure
...
OPEN OUTPUT FILE1. USE procedure (3)
OPEN EXTEND FILE1. USE procedure (1)
...
PROGRAM-ID. D-PROG.
...
OPEN INPUT FILE1. USE procedure (2)
...
PROGRAM-ID. E-PROG.
...
FD FILE1.
...
OPEN INPUT FILE1. USE procedure (2)
OPEN OUTPUT FILE1. USE procedure (1)
...
END PROGRAM E-PROG.
END PROGRAM D-PROG.
END PROGRAM C-PROG.
END PROGRAM B-PROG.
PROGRAM-ID. F-PROG.
...
OPEN I-O FILE1. Not a USE procedure
END PROGRAM F-PROG.
END PROGRAM A-PROG.
548 U41112-J-Z125-1-76
PROCEDURE DIVISION WRITE statement
WRITE statement
Function
identifier-2 LINES
AFTER integer LINE
ADVANCING
BEFORE mnemonic-name
PAGE
END-OF-PAGE
AT imperative-statement-1
EOP
END-OF-PAGE
NOT AT imperative-statement-2
EOP
[END-WRITE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. record-name and identifier-1 must not refer to the same storage area.
2. record-name must be associated with a file description (FD) entry in the Data Division
of the program and may be qualified.
3. record-name must not be part of a sort file.
4. If identifier-2 is used in the ADVANCING phrase, it must be the name of an elementary
integer data item.
However, the compiler also permits the use of non-numeric elementary items for
identifier-2.
5. The value of integer or the data item referenced by identifier-2 must be greater than or
equal to zero, but not greater than 15.
For files with the ASSIGN entry PRINTER literal-1, integer must be greater than 15 and
less than 100.
U41112-J-Z125-1-76 549
WRITE statement PROCEDURE DIVISION
1. The record supplied by a WRITE statement is no longer available in the record area,
unless the file associated with the record was specified in a SAME RECORD AREA
clause or the execution of the WRITE statement was unsuccessful. The record is also
available to any other files which may have been referenced in any SAME RECORD
AREA clause together with the specified file.
2. Execution of a WRITE statement with the FROM phrase is equivalent to the execution
of the following statements:
MOVE identifier-1 TO record-name
the same WRITE statement without the FROM phrase
Data is transferred according to the rules for a MOVE statement without the
CORRESPONDING phrase.
The content of the record area before execution of the implicit MOVE statement has no
effect on the execution of the WRITE statement.
After the WRITE statement is successfully executed, the information is still available in
the area referenced by identifier-1; however, as pointed out in general rule 1, this is not
necessarily true for the record area.
3. If the end-of-volume condition is encountered on a multi-volume output file for tape or
disk storage and sequential access mode, the following steps will be performed during
execution of the WRITE statement:
a) The standard volume header label procedures and the user volume trailer label pro-
cedures specified via a USE procedure are performed. The order in which these
procedures are executed depends on the BEFORE/AFTER phrases supplied in the
USE procedure, if any.
b) A volume swap is effected.
550 U41112-J-Z125-1-76
PROCEDURE DIVISION WRITE statement
c) The standard volume header label procedures and the user volume header label
procedures specified via a USE procedure are performed. The order in which these
procedures are executed depends on the BEFORE/AFTER phrases supplied in the
USE procedure, if any.
4. After execution of a WRITE statement, the value of the data item of any FILE STATUS
clause existing for that file is updated (see also "FILE STATUS clause", page 189).
5. Execution of a WRITE statement does not affect the file position.
6. If a file is open in extend mode, the WRITE statement causes records to be added to
the end of the file as if the file were open in output mode. The first record written after
execution of the OPEN EXTEND statement is the successor of the last record in the file.
7. If the VARYING phrase has been specified for the file associated with record-name, the
number of character positions in the record referenced by record-name must not be
larger than integer-3 or smaller than integer-2 (see "RECORD clause", format 2, page
225). If no RECORD clause is specified with the VARYING phrase, the number of char-
acter positions must not be longer than the largest record (as determined by the record
description entry) of the associated file. If either of these cases occur, the WRITE state-
ment is unsuccessful, and the WRITE operation does not take place. The content of the
record area remains unchanged. The I-O status of the file associated with record-name
is set to a value indicating the cause of the condition (see "I-O status", page 696).
8. Both the ADVANCING and the END-OF-PAGE phrases allow control of the vertical
positioning of each individual line on a representation of a printed page.
9. When the BEFORE/AFTER ADVANCING phrase is used, the corresponding record is
printed before or after the page is advanced according to the rules described below.
10. If the end-of-page condition does not occur during the execution of a WRITE statement
with the NOT END-OF-PAGE phrase, control is transferred to imperative-statement-2 if
the WRITE statement is executed successfully. The transfer of control takes place after
the record is written and after updating of the I/O status of the file from which the record
originates.
If the execution of the WRITE statement is unsuccessful, the I/O status of the file is
updated, then the USE procedure specified for this file is executed, and finally control
is transferred to the imperative-statement-2.
11. The ADVANCING phrase causes the representation of the printed page to be advanced
according to the following rules:
a) If identifier-2 (non-numeric or numeric integer elementary data item), integer or
mnemonic-name is present, the page is advanced in accordance with the rules
specified in Table 8-18.
U41112-J-Z125-1-76 551
WRITE statement PROCEDURE DIVISION
b) If PAGE is present, the record is printed either before or after positioning to the
beginning of the first line on a new page. The beginning of a new page is defined
either by the physical properties of the printer (advance to channel 1) or, if a
LINAGE clause is present, by the beginning of the next logical page (see also "LIN-
AGE clause", page 221).
12. If the ADVANCING phrase is omitted, a WRITE...AFTER ADVANCING 1 LINE will be
executed for files with the ASSIGN specification PRINTER or PRINTER literal-1 (see
also Table 8-18, page 555).
13. If the end of a logical page is encountered during execution of a WRITE statement with
the END-OF-PAGE phrase, control is transferred to imperative-statement-1. The logical
end of a page is defined by the LINAGE clause in the file description entry of the file.
14. An END-OF-PAGE condition occurs when the execution of a WRITE statement with the
END-OF-PAGE phrase causes printing or spacing within the page footing area. This is
the case whenever, during the execution of such a WRITE statement, the value of the
special register LINAGE-COUNTER becomes equal to or greater than the value of
integer-2 of the LINAGE clause data item referenced by data-name-2. In this case, the
WRITE statement is executed, and control is then transferred to the imperative
statement which follows the END-OF-PAGE phrase.
15. An automatic page overflow condition occurs when the execution of a given WRITE
statement (with or without an END-OF-PAGE phrase) cannot be fully accommodated
within the current page body.
This is the case whenever, during the execution of such a WRITE statement, the value
of the special register LINAGE-COUNTER becomes equal to or greater than the value
of integer-1 or the LINAGE clause data item referenced by data-name-1. In this case,
the record is printed either before or after positioning to the first line of the next logical
page (depending on the BEFORE/AFTER phrase). This line is defined by specification
of the LINAGE clause. The imperative statement specified in the END-OF-PAGE phrase
is executed after the record has been written and the device repositioned.
If the integer-2 or data-name-2 phrases of the LINAGE clause are not used, the END-
OF-PAGE condition will occur whenever a WRITE statement is executed (with EOP
phrase specified) and the value in the special LINAGE-COUNTER register is greater
than or equal to the value of integer-1 or the LINAGE clause data item referenced by
data-name-1.
If integer-2 or data-name-2 is specified in the LINAGE clause but execution of a WRITE
statement would result in the value of the LINAGE-COUNTER being both
a) equal to or greater than the value of data-name-2 or integer-2, and
b) equal to or greater than the value of data-name-1 or integer-1
processing proceeds as if integer-2 or data-name-2 had not been specified.
552 U41112-J-Z125-1-76
PROCEDURE DIVISION WRITE statement
16. When the ADVANCING phrase is used together with the LINAGE clause for a device
which does not represent a physical printer, any blank lines at the top and bottom
margins as well as within the page body are represented on the appropriate storage
medium as records containing blank characters.
17. Execution of a WRITE statement which attempts to write outside the physical bound-
aries of a file results in an exception condition. The following steps are performed:
a) The value of the FILE STATUS data item of the file is set to indicate violation of the
boundaries of the file (see "FILE STATUS clause", page 189).
b) Any USE ERROR/EXCEPTION procedure that is explicitly or implicitly specified for
this file will be executed.
c) If there is neither an explicit nor an implicit USE procedure for this file, the program
will terminate abnormally.
18. When a WRITE statement is executed, the file must have been opened with an OPEN
statement containing the OUTPUT or EXTEND phrase.
19. Table 4-7 gives precise detail of the use of the first character in the record, depending
on the symbolic device names of the ASSIGN clause and the WRITE statement
phrases.
20. When a WRITE statement is used with AFTER-ADVANCING phrase, the printer is
positioned to the line requested and is advanced one additional line after printing.
If PRINTER literal-1 is specified in the ASSIGN phrase, a WRITE AFTER phrase is
performed as follows:
a) An empty record is printed with corresponding form-feed specification (WRITE BE-
FORE).
The record is written.
For all devices, form-feed suppression is only possible when the WRITE BEFORE
phrase is specified.
21. END-WRITE delimits the scope of the WRITE statement.
U41112-J-Z125-1-76 553
WRITE statement PROCEDURE DIVISION
Example 8-81
for format 1
The file LOADFILE is read and written to the print file called AFILE.
Each current record is written before advancing 5 blank lines.
IDENTIFICATION DIVISION.
PROGRAM-ID. WP1.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT AFILE ASSIGN TO PRINTER "PRINTOUT".
SELECT LOADFILE ASSIGN TO "MASTER-FILE".
DATA DIVISION.
FILE SECTION.
FD AFILE
LINAGE IS 24 LINES
LINES AT TOP 24
LINES AT BOTTOM 24.
01 CUSTMRREC PIC X(95).
FD LOADFILE
LABEL RECORD IS STANDARD.
01 CUSTREC.
05 CNA PIC X(30).
05 STR PIC X(20).
05 LOC PIC X(20).
05 ZIP PIC X(5).
05 TYP PIC X(20).
WORKING-STORAGE SECTION.
01 FILE-SWITCH PIC X VALUE LOW-VALUE.
88 EOF VALUE HIGH-VALUE.
PROCEDURE DIVISION.
MAIN SECTION.
FILE-OPEN.
OPEN OUTPUT AFILE.
OPEN INPUT LOADFILE.
READS.
PERFORM UNTIL EOF
READ LOADFILE INTO CUSTMRREC
AT END
CLOSE AFILE LOADFILE
SET EOF TO TRUE
NOT AT END
WRITE CUSTMRREC BEFORE ADVANCING 5.
END-READ
END-PERFORM
STOP RUN.
554 U41112-J-Z125-1-76
PROCEDURE DIVISION WRITE statement
U41112-J-Z125-1-76 555
WRITE statement PROCEDURE DIVISION
556 U41112-J-Z125-1-76
PROCEDURE DIVISION WRITE statement
[END-WRITE]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
1. record-name and identifier-1 must not reference the same storage area.
2. record-name must be associated with a file description (FD) entry in the Data Division
of the program and may be qualified.
3. The INVALID KEY phrase must be specified for a file unless an applicable USE
procedure was declared.
For relative and indexed file organization, the following also applies:
1. The file whose record is referenced by the WRITE statement must be open in the
OUTPUT, I-O or EXTEND mode.
2. The record released by a WRITE statement is no longer available in the record area,
unless the file associated with the record was specified in a SAME RECORD AREA
clause, or the execution of the WRITE statement was abnormally terminated as unsuc-
cessful because of the occurrence of an invalid key condition. The record is also avail-
able to those files which were referenced in a SAME RECORD AREA clause together
with the specified file.
3. Execution of a WRITE statement with the FROM phrase is equivalent to execution of
the following statements:
MOVE identifier-1 TO record-name
the same WRITE statement without the FROM phrase
Data is transferred according to the rules for a MOVE statement without the CORRE-
SPONDING phrase.
The contents of the record area before execution of the implicit MOVE statement has
no effect on the execution of the WRITE statement.
U41112-J-Z125-1-76 557
WRITE statement PROCEDURE DIVISION
4. Execution of a WRITE statement causes the contents of the data item that was speci-
fied in the FILE STATUS clause of the related file description entry to be updated (see
also "FILE STATUS clause", page 189).
5. If, during the execution of a WRITE statement with the NOT INVALID KEY phrase, the
invalid key condition does not occur, control is transferred to imperative-statement-2 as
follows:
a) If the execution of the WRITE statement is successful: after the record is written and
after updating the I/O status of the file from which the record originates.
b) If the execution of the WRITE statement is unsuccessful: after the I/O status of the
file has been updated and after executing the USE procedure that was specified for
the file from which the record originates.
6. Occurrence of an invalid key condition indicates that the WRITE statement was unsuc-
cessful; the contents of the record area are still available, and any existing FILE
STATUS data item in that file is set to a value indicating the cause of the invalid key
condition. The program resumes execution in accordance with the rules for the invalid
key condition.
7. The number of character positions in the record referenced by record-name must not
be larger than the largest or smaller than the smallest number of character positions
allowed by the associated RECORD IS VARYING clause. Otherwise, the WRITE state-
ment is unsuccessful, the WRITE operation does not take place, the content of the
record area is unaffected and the I-O status of the file associated with record-name is
set to a value indicating a record length conflict (see "I-O status", page 695ff).
8. END-WRITE delimits the scope of the WRITE statement.
558 U41112-J-Z125-1-76
PROCEDURE DIVISION WRITE statement
b) In random or dynamic access modes (which are equivalent for OUTPUT), the value
of the data item in the (here mandatory) RELATIVE KEY phrase must be set by the
user to equal the relative record number which is to be assigned to the record con-
tained in the record area. That record is then output as the nth record of the file,
where "n" is the value of the relative record number.
11. If a file is in extend mode (OPEN statement with EXTEND phrase), a WRITE statement
causes a record to be appended to the file. The first record released in this manner
receives a relative record number which is 1 higher than the highest existing relative
record number in the file. The relative record number of each subsequent record is
incremented by 1 (with respect to the previous record). If the RELATIVE KEY phrase is
specified, the relative record number of the MOVE statement is transferred to the record
key field with each WRITE statement.
12. If a file is opened in update mode (OPEN statement with I-O phrase), and its access
mode is either random or dynamic (which means the same in this case), the WRITE
statement inserts records in the associated existing file. The value of the data item of
the (here mandatory) RELATIVE KEY phrase must be set by the user to equal the
relative record number which is to be assigned to the record contained in the record
area. As the WRITE statement is executed, the contents of the record with the appro-
priate record number are transferred to the File Control Processor.
13. The invalid key condition is caused by the events listed in Table 8-20.
ACCESS MODE OPEN mode and action tak- Reason for INVALID KEY condi-
clause en tion
SEQUENTIAL OUTPUT or EXTEND There is no room in the file for the
A record is appended to an new record.
existing or newly created file.
RANDOM OUTPUT or I-O The content of the RELATIVE KEY
or A record is appended to an field specifies a record which
DYNAMIC existing file. already exists in the file or there is
no room in the file for the new
record.
Table 8-20 WRITE statement - Causes of invalid key conditions
U41112-J-Z125-1-76 559
WRITE statement PROCEDURE DIVISION
15. If a file is opened in output mode (OPEN statement with OUTPUT phrase), the following
should be noted:
a) In sequential access mode, the WRITE statement releases a record for the creation
of a new file. In this context, the records must be transferred in ascending order of
RECORD KEY values. Before execution of the WRITE statement, the RECORD
KEY data item must be set to the required value.
b) In random or dynamic access modes (which are equivalent for OUTPUT), records
may be released to the File Control Processor in any program-specified order.
16. The invalid key condition is caused by the events listed in Table 8-21.
Access mode OPEN mode and Cause of invalid key condition
action taken
SEQUENTIAL OUTPUT / EXTEND Either the value of the primary key is not
greater than that of the preceding record
A record is added to a file to be (the primary record keys must be sorted in
newly created. ascending alphanumeric order), or
("load mode"). no more space is available in the file for
writing the record.
RANDOM OUTPUT/ I-O / EXTEND The record has the same primary key
or value as a record already existing in the
DYNAMIC A record is added to an existing file, or
file no more space is available on the file for
writing the record, or
an alternate key value for which duplicates
are not permitted already exists in a
record in the file.
Table 8-21WRITE statement - Causes of invalid key conditions
17. If the file was opened in extend mode, the first record passed to DMS must have a
primary key whose value is higher than the highest existing primary key value in the file.
18. If ALTERNATE RECORD KEY WITH DUPLICATES is specified, the alternate key value
of the record does not need to be unique.
560 U41112-J-Z125-1-76
9 Intrinsic functions
Intrinsic functions make it possible to reference a temporary data item that is made available
by the COBOL program and whose value is calculated automatically when the function is
used.
9.1 General
Function-name
Each intrinsic function has a name that the programmer uses to address it. A function-name
is a key word from a special list of COBOL words and is a necessary part of the function-
identifier. Outside the function-identifier context, a key word can also be used as a user-
defined word.
Each function that executes successfully returns a function result, the returned value. To
determine the returned value, the function processes the data values supplied by the
arguments specified in the function-identifier.
The function result is defined
a) by the length of the returned value in alphanumeric functions,
b) by the sign of the returned value, or by the integer in the case of numeric and integer
functions,
c) or, in all remaining cases, by the returned value itself.
For the arguments particular rules apply: data type, number, length and value range of the
arguments are determined by the definition of the function. The function returns a defined
returned value only if these rules are observed.
U41112-J-Z125-1-76 561
General Intrinsic functions
If a function is supplied with an invalid argument, the function result is undefined. A compiler
option can be used in such cases to check the argument values and assign the function the
error default value that indicates that the function has not executed successfully. A further
compiler option can be used to ensure that the error is reported at run time (error messages
COB9123 - COB9128). Refer to the COBOL2000 User Guide [1] for further information.
Date conversion
Arguments
Arguments specify the values used when executing a function. The arguments are specified
in the function-identifier (see page 91) as identifiers, arithmetic expressions, or literals. The
format description of each function indicates the number of arguments required (zero, one
or more). For some functions the number of arguments can be variable.
Arguments belong to a particular data class or to a subset of a data class. There are the
following argument types:
a) Numeric. An arithmetic expression must be specified. The value of the arithmetic
expression, including the sign, is used to determine the function value.
b) Alphabetic. A data item of class alphabetic or a non-numeric literal comprising exclu-
sively alphabetic characters must be specified. The length of the data item specified as
argument can be used to determine the function value.
c) Alphanumeric. A data item of class alphabetic or alphanumeric or a non-numeric literal
must be specified. The length of the data item specified as argument can be used to
determine the function value.
d) Integer. An arithmetic expression that always produces an integer value must be
specified. The value of the arithmetic expression, including sign, is used to determine
the function value.
c) Of class "object“.
A table can be referenced if the format of a function permits argument repetition. Reference
is made by specifying the data-name and any identifiers for the table, followed directly by
subscription in which one or more subscripts is the word ALL.
If ALL is specified as a subscript, it has the same effect as specifying each table element at
this subscript position.
562 U41112-J-Z125-1-76
Intrinsic functions General
Example:
Function types
Functions are elementary data items. They return alphanumeric, numeric or integer values,
and cannot be receiving operands. There are the following types of function:
a) Alphanumeric functions. They belong to class and category alphanumeric.
Alphanumeric functions have implicit DISPLAY format.
b) Numeric functions. They belong to class and category numeric.
A numeric function is always treated as signed.
A numeric function can be used only in an arithmetic expression.
A numeric function must not be referenced if an integer operand is required, even if
evaluation of the function results in an integer value.
c) Integer functions. They belong to class and category numeric.
An integer function is always treated as signed.
An integer function may be used only in an arithmetic expression.
U41112-J-Z125-1-76 563
Overview of intrinsic functions Intrinsic functions
A alphabetic
I integer
N numeric
X alphanumeric
O object reference
The "Type" column defines function type as follows:
I integer
N numeric
X alphanumeric
564 U41112-J-Z125-1-76
Intrinsic functions Overview of intrinsic functions
U41112-J-Z125-1-76 565
Overview of intrinsic functions Intrinsic functions
566 U41112-J-Z125-1-76
Intrinsic functions ACOS
ACOS - Arccosine
The ACOS function returns a numeric value in radians that approximates the arc cosine of
argument-1.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ACOS (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the arc cosine of argument-1 and is greater
than or equal to zero and less than or equal to pi.
2. The error default value is -2.
Example 9-1
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 AS PIC S9V999 VALUE -0.25.
01 R PIC 9V99.
01 RES PIC +9.99.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION ACOS (AS).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: +1.82
U41112-J-Z125-1-76 567
ADDR Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ADDR (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The return value is an integer representing the address of argument-1 at run time.
568 U41112-J-Z125-1-76
Intrinsic functions ANNUITY
ANNUITY - Annuity
The ANNUITY function returns a numeric value that approximates the ratio of an annuity
paid at the end of each period for the number of periods specified by argument-2 to an initial
investment of one. Interest is earned at the rate specified by argument-1 and is applied at
the end of the period, before the payment.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ANNUITY (argument-1 argument-2)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. When the value of argument-1 is equal to zero, the value of the function is the approxi-
mation of: 1 / argument-2
2. When the value of argument-1 is not equal to zero, the value of the function is the
approximation of:
argument-1 / (1 - (1 + argument-1)**(- argument-2))
3. The error default value is -2.
U41112-J-Z125-1-76 569
ANNUITY Intrinsic functions
Example 9-2
The following program calculates the annual payments for a loan of 100000 at three
different interest rates over a period of 1 to 10 years.
IDENTIFICATION DIVISION.
PROGRAM-ID. INTEREST-TABLE.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS WINDOW
DECIMAL-POINT IS COMMA.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 CAPITAL PIC 9(9).
01 PD PIC 99.
01 CALC-TABLE.
02 INTEREST PIC V9(7) OCCURS 3 INDEXED BY R-IND-S.
01 HEADER-LINE.
02 PIC XX VALUE SPACE.
02 OCCURS 3 INDEXED BY T-IND-S.
10 INTR-ED PIC BBBZZ9,999999B.
10 PIC X VALUE FROM (1) "%" REPEATED TO END.
01 OUTPUT-TABLE.
02 THIS-LINE OCCURS 10 INDEXED BY A-IND-Z.
10 PERIOD PIC Z9.
10 RATE PIC BZZZBZZZBZZ9,99 OCCURS 3 INDEXED BY A-IND-S.
PROCEDURE DIVISION.
ONLY SECTION.
PARA.
MOVE 100000 TO CAPITAL
*** Interest 5,75 % ***
MOVE 0,0575 TO INTEREST (1)
*** Interest 8,90 % ***
MOVE 0,0890 TO INTEREST (2)
*** Interest 12,10 % ***
MOVE 0,1210 TO INTEREST (3)
PERFORM VARYING R-IND-S FROM 1 BY 1 UNTIL R-IND-S > 3
SET T-IND-S TO R-IND-S
MULTIPLY INTEREST (R-IND-S) BY 100 GIVING INTR-ED (T-IND-S)
END-PERFORM
PERFORM VARYING A-IND-Z FROM 1 BY 1 UNTIL A-IND-Z > 10
PERFORM VARYING A-IND-S FROM 1 BY 1 UNTIL A-IND-S > 3
SET R-IND-S TO A-IND-S
SET PD TO A-IND-Z
MOVE PD TO PERIOD (A-IND-Z)
COMPUTE RATE (A-IND-Z A-IND-S) = CAPITAL *
FUNCTION ANNUITY (INTEREST (R-IND-S) PD)
END-PERFORM
END-PERFORM
DISPLAY HEADER-LINE UPON WINDOW
PERFORM VARYING A-IND-Z FROM 1 BY 1 UNTIL A-IND-Z > 10
DISPLAY THIS-LINE (A-IND-Z) UPON WINDOW
END-PERFORM
STOP RUN.
570 U41112-J-Z125-1-76
Intrinsic functions ANNUITY
Result:
U41112-J-Z125-1-76 571
ASIN Intrinsic functions
ASIN - Arcsine
The ASIN function returns a numeric value in radians that approximates the arc sine of
argument-1.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ASIN (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the arcsine of argument-1 and is greater
than or equal to -pi/2 and less than or equal to +pi/2.
2. The error default value is -2.
Example 9-3
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 AN PIC S9V999 VALUE -0.45.
01 R PIC 9V99.
01 RES PIC -9.99.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION ASIN (AN).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 0.46
572 U41112-J-Z125-1-76
Intrinsic functions ATAN
ATAN - Arctangent
The ATAN function returns a numeric value in radians that approximates the arctangent of
argument-1.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ATAN (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the arctangent of argument-1 and is greater
than -pi/2 and less than +pi/2.
Example 9-4
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 9V9999.
01 RES PIC -9.9999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION ATAN (-0.45).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 0.4228
U41112-J-Z125-1-76 573
CHAR Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION CHAR (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. If more than one character has the same position in the program collating sequence,
the character returned as the function value is that of the first literal specified for that
character position in the ALPHABET clause.
2. If the current program collating sequence was not specified by an ALPHABET clause,
the EBCDIC collating sequence is assumed.
3. The error default value is a space.
574 U41112-J-Z125-1-76
Intrinsic functions CHAR
Example 9-5
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 LETTER PIC 999 VALUE 194.
01 R PIC X.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
MOVE FUNCTION CHAR (LETTER) TO R.
DISPLAY R UPON T.
STOP RUN.
Result: A
The ordinal position of "A" in EBCDIC is 194.
U41112-J-Z125-1-76 575
COS Intrinsic functions
COS - Cosine
The COS function returns the cosine of the angle or arc that is specified in radians by
argument-1.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION COS (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the cosine of argument-1 and is greater than
or equal to -1 and less than or equal to +1.
Example 9-6
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC S9V9(10).
01 RES PIC -9.9(10).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION COS (3.1425).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: -0.9999995883
576 U41112-J-Z125-1-76
Intrinsic functions CURRENT-DATE
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION CURRENT-DATE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Returned values
1. The character positions returned, numbered from left to right, are:
Character Contents
position
1-4 Four numeric digits of the year (Gregorian calendar).
5-6 Two numeric digits of the month of the year, in the range 01 through 12.
7-8 Two numeric digits of the day of the month, in the range 01 through 31.
9-10 Two numeric digits of the hours past midnight, in the range 00 through 23.
11-12 Two numeric digits of the minutes past the hour, in the range 00 through 59.
13-14 Two numeric digits of the seconds past the minute, in the range 00 through 59.
15-21 0000000
Example 9-7
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A-DATE PIC XXXX/XX/XXBBXXBXXBXXBXXBBX(5).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
MOVE FUNCTION CURRENT-DATE TO A-DATE.
DISPLAY A-DATE UPON T.
STOP RUN.
Result: 1995/08/10 14 36 19 00 00000
U41112-J-Z125-1-76 577
DATE-OF-INTEGER Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION DATE-OF-INTEGER (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value represents the ISO Standard date equivalent of the integer specified
in argument-1.
2. YYYY represents a year in the Gregorian calendar, MM represents the month of that
year, and DD represents the day of that month.
3. The error default value is 0.
Example 9-8
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A-DATE PIC 9(8).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE A-DATE = FUNCTION DATE-OF-INTEGER (50000).
DISPLAY A-DATE UPON T.
STOP RUN.
Result: 17371123
The 50000th day as of 31.12.1600 was 23.11.1737.
578 U41112-J-Z125-1-76
Intrinsic functions DATE-TO-YYYYMMDD
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION DATE-TO-YYYYMMD (argument-1 [argument-2])
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the date specified in argument-1 with a 4-digit year. For an argu-
ment of the form YYMMDD, the returned value is defined by:
FUNCTION YEAR-TO-YYYY (YY, argument-2) * 10000 + MMDD
2. The error default value is 0.
U41112-J-Z125-1-76 579
DATE-TO-YYYYMMDD Intrinsic functions
Example 9-9
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A-DATE PIC 9(8).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE A-DATE = FUNCTION DATE-TO-YYYYMMDD (590123).
DISPLAY A-DATE UPON T. (1)
COMPUTE A-DATE = FUNCTION DATE-TO-YYYYMMDD (470101 -50).
DISPLAY A-DATE UPON T. (2)
STOP RUN.
A more detailed example is provided with the description of the YEAR-TO-YYYY function.
Result:
In the year 1996 the program returns the following results:
(1) 19590123
(2) 18470101
In the year 2009 the program returns the following results:
(1) 20590123
(2) 19470101
580 U41112-J-Z125-1-76
Intrinsic functions DAY-OF-INTEGER
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION DAY-OF-INTEGER (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value represents the Julian equivalent of the integer specified in
argument-1.
2. YYYY represents a year in the Gregorian calendar, and DDD represents the day of that
year.
3. The error default value is 0.
Example 9-10
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 DAYS PIC 9999 VALUE 5000.
01 A-DATE PIC X(7).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE A-DATE = FUNCTION DAY-OF-INTEGER (DAYS)
DISPLAY A-DATE UPON T.
STOP RUN.
Result: 1614252
The 5000th day as of 31.12.1600 was the 252nd day of the year 1614.
U41112-J-Z125-1-76 581
DAY-TO-YYYYDDD Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION DAY-TO-YYYYDDD (argument-1 [argument-2])
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the date specified in argument-1 with a 4-digit year. For an argu-
ment of the form YYDDD, the returned value is defined by:
FUNCTION YEAR-TO-YYYY (YY, argument-2) * 1000 + DDD
2. The error default value is 0.
582 U41112-J-Z125-1-76
Intrinsic functions DAY-TO-YYYYDDD
Example 9-11
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A-DATE PIC 9(7).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE A-DATE = FUNCTION DAY-TO-YYYYDDD (59001).
DISPLAY A-DATE UPON T. (1)
COMPUTE A-DATE = FUNCTION DAY-TO-YYYYDDD (47365 -50).
DISPLAY A-DATE UPON T. (2)
STOP RUN.
A more detailed example is provided with the description of the YEAR-TO-YYYY function.
Result:
In the year 1996 the program returns the following results:
(1) 1959001
(2) 1847365
In the year 2009 the program returns the following results:
(1) 2059001
(2) 1947365
U41112-J-Z125-1-76 583
FACTORIAL Intrinsic functions
FACTORIAL - Factorial
The FACTORIAL function returns an integer that is the factorial of argument-1.
The type of this function is integer.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION FACTORIAL (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. Argument-1 must be an integer greater than or equal to zero and less than or equal to
19.
Returned values
Example 9-12
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(8).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION FACTORIAL (07).
DISPLAY RES UPON T.
STOP RUN.
Result: 00005040
584 U41112-J-Z125-1-76
Intrinsic functions INTEGER
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION INTEGER (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. Argument-1 must be class numeric and must be greater than or equal to -1018+1 and
less than 1018.
Returned values
1. The returned value is the greatest integer less than or equal to the value of argument-
1. For example, if the value of argument-1 is -1.5, -2 is returned. If the value of
argument-1 is +1.5, +1 is returned.
2. The error default value is -999’999’999’999’999’999.
Example 9-13
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(8).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION INTEGER (-3.3).
DISPLAY RES UPON T.
STOP RUN.
Result: 00000004
U41112-J-Z125-1-76 585
INTEGER-OF-DATE Intrinsic functions
Arguments
1. Argument-1 must be an integer of the form YYYYMMDD, whose value is obtained from
the calculation: (YYYY * 10000) + (MM * 100) + DD
a) YYYY represents the year in the Gregorian calendar. It must be an integer greater
than 1600.
b) MM represents a month and must be a positive integer less than 13.
c) DD represents a day and must be a positive integer less than 32 provided that it is
valid for the specified month and year combination.
Returned values
1. The returned value is an integer that is the number of days the date represented by
argument-1 succeeds December 31, 1600, in the Gregorian calendar.
2. The error default value is 0.
586 U41112-J-Z125-1-76
Intrinsic functions INTEGER-OF-DATE
Example 9-14
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 DAYS PIC 9(8).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE DAYS = FUNCTION INTEGER-OF-DATE (19530410).
DISPLAY DAYS UPON T.
STOP RUN.
Result: 00128665
10.4.1953 was the 128665th day as of 31.12.1600.
U41112-J-Z125-1-76 587
INTEGER-OF-DAY Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION INTEGER-OF-DAY (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. Argument-1 must be an integer of the form YYYYDDD, whose value is obtained from
the calculation: (YYYY * 1000) + DDD
a) YYYY represents the year in the Gregorian calendar. It must be an integer greater
than 1600.
b) DDD represents the day of the year. It must be a positive integer less than 367 but
366 may only be specified for a leap year.
Returned values
1. The returned value is an integer that is the number of days the date represented by
argument-1 succeeds December 31, 1600, in the Gregorian calendar.
2. The error default value is 0.
588 U41112-J-Z125-1-76
Intrinsic functions INTEGER-OF-DAY
Example 9-15
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 DAYS PIC 9(7).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE DAYS = FUNCTION INTEGER-OF-DAY (1993299).
DISPLAY DAYS UPON T.
STOP RUN.
Result: 0143474
The 299th day of the year 1993 is the 143474th day as of 31.12.1600.
U41112-J-Z125-1-76 589
INTEGER-PART Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION INTEGER-PART (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. Argument-1 must be class numeric and must be greater than -1018 and less than 1018.
Returned values
Example 9-16
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(8).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION INTEGER-PART (-3.3).
DISPLAY RES UPON T.
STOP RUN.
Result: -00000003
590 U41112-J-Z125-1-76
Intrinsic functions LENGTH
Example 9-17
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION LENGTH ("abbreviation").
DISPLAY RES UPON T.
STOP RUN.
Result: 012
Note: If an object reference is involved, the length of the object reference and not the size
of the object itself is returned.
U41112-J-Z125-1-76 591
LOG Intrinsic functions
LOG - Logarithm
The LOG function returns a numeric value that approximates the logarithm to the base e
(natural log) of argument-1.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION LOG (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the logarithm to the base e of argument-1.
2. The error default value is -999’999’999’999’999’999.
Example 9-18
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 L PIC S99V999 VALUE 3.
01 R PIC S99V999999.
01 RES PIC 99.999999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION LOG (L).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 01.098612
592 U41112-J-Z125-1-76
Intrinsic functions LOG10
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION LOG10 (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the logarithm to the base 10 of argument-1.
2. The error default value is -999’999’999’999’999’999.
Example 9-19
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 L PIC S99V999 VALUE 3.
01 R PIC S99V999999.
01 RES PIC 99.999999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION LOG10 (L).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 00.477121
U41112-J-Z125-1-76 593
LOWER-CASE Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION LOWER-CASE (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the same character string as argument-1, except that each
uppercase letter is replaced by the corresponding lowercase letter.
2. The character string returned has the same length as argument-1.
3. Umlauts are not converted.
4. The error default value is a space.
Example 9-20
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC X(20).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
MOVE FUNCTION LOWER-CASE ("SIEMENS NIXDORF") TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: siemens nixdorf
594 U41112-J-Z125-1-76
Intrinsic functions MAX
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION MAX ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. If more than one argument is specified, all arguments must be of the same class.
Returned values
1. The returned value is the content of the argument having the greatest value. The
comparisons used to determine the greatest value are made according to the rules for
simple conditions.
2. If more than one argument has the same greatest value, the content of the argument
returned is the leftmost argument having that value.
3. If the type of the function is alphanumeric, the size of the returned value is the same as
the size of the selected argument.
4. The error default value is 0.
See also: MIN, ORD-MAX, ORD-MIN, RANGE, MEAN, MEDIAN, MIDRANGE, SUM
U41112-J-Z125-1-76 595
MAX Intrinsic functions
Example 9-21
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(3).
01 RES1 PIC X(4).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION MAX (12 32 5 8 17 9).
MOVE FUNCTION MAX ("HUGO" "EGON" "THEO" "OTTO") TO RES1.
DISPLAY "Argument with greatest value: " RES UPON T.
DISPLAY "Argument with greatest value: " RES1 UPON T.
STOP RUN.
Result: Argument with greatest value RES: 032
Argument with greatest value RES1: THEO
596 U41112-J-Z125-1-76
Intrinsic functions MEAN
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION MEAN ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
Example 9-22
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 999V999.
01 RES PIC 999.999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION MEAN (12 32 5 8 17 9).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 013.833
U41112-J-Z125-1-76 597
MEDIAN Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION MEDIAN ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the content of the argument having the middle value in the list
formed by arranging all the argument values in sorted order.
2. If the number of occurrences referenced by argument is odd, the returned value is such
that at least half of the occurrences referenced by argument are greater than or equal
to the returned value and at least half are less than or equal. If the number of occur-
rences referenced by argument is even, the returned value is the arithmetic mean of the
values referenced by the two middle occurrences.
3. The comparisons used to arrange the argument values in sorted order are made
according to the rules for simple conditions (see 319).
4. The error default value is 0.
598 U41112-J-Z125-1-76
Intrinsic functions MEDIAN
Example 9-23
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION MEDIAN (2 32 8 128 16 64 256).
DISPLAY RES UPON T.
STOP RUN.
Result: 032
U41112-J-Z125-1-76 599
MIDRANGE Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION MIDRANGE ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the arithmetic mean of the greatest argument value and the least
argument value. The comparisons used to determine the greatest and least values are
made according to the rules for simple conditions (see 319).
2. The error default value is 0.
Example 9-24
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 999V999.
01 RES PIC 999.999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION MIDRANGE (12 32 5 8 17 9).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 018.500
600 U41112-J-Z125-1-76
Intrinsic functions MIN
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION MIN ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. If more than one argument is specified, all arguments must be of the same class.
Returned values
1. The returned value is the content of the argument having the least value. The compar-
isons used to determine the least value are made according to the rules for simple
conditions.
2. If more than one argument has the same least value, the content of the argument
returned is the leftmost argument having that value.
3. If the type of the function is alphanumeric, the size of the returned value is the same as
the size of the selected argument.
4. The error default value is 0.
See also: MAX, RANGE, MEAN, MEDIAN, MIDRANGE, SUM
U41112-J-Z125-1-76 601
MIN Intrinsic functions
Example 9-25
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION MIN (12 32 5 8 17 9).
DISPLAY RES UPON T.
STOP RUN.
Result: 005
602 U41112-J-Z125-1-76
Intrinsic functions MOD
MOD - Modulo
The MOD function returns an integer value that is argument-1 modulo argument-2.
The type of this function is integer.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION MOD (argument-1 argument-2)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. Argument-1 and argument-2 must be integers.
2. The value of argument-2 must not be zero.
3. The value of argument-1 must be >= -1018+1 and < 1018.
If the value of argument-1 is outside this range, the function value can be calculated but
is not guaranteed to be correct.
Returned values
1. The returned value is argument-1 modulo argument-2. The returned value is defined
as:
argument-1 - (argument-2 * FUNCTION INTEGER (argument-1 / argument-2))
2. The error default value is -999’999’999’999’999’999.
Example 9-26
U41112-J-Z125-1-76 603
NUMVAL Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION NUMVAL (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
oder
+
digits[.[digits]] -
[Ë] [Ë]
.digits CR
DB
Returned values
604 U41112-J-Z125-1-76
Intrinsic functions NUMVAL
Example 9-27
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 V PIC X(8) VALUE "+ 15.00".
01 R PIC 99V99.
01 RES PIC 99.99.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION NUMVAL (V).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 15.00
U41112-J-Z125-1-76 605
NUMVAL-C Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION NUMVAL-C (argument-1 [argument-2])
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
606 U41112-J-Z125-1-76
Intrinsic functions NUMVAL-C
Returned values
Example 9-28
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 V PIC X(8) VALUE "- $15.00".
01 R PIC 99V99.
01 RES PIC 99.99.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION NUMVAL-C (V).
DISPLAY RES UPON T.
STOP RUN.
Result: 15.00
U41112-J-Z125-1-76 607
ORD Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ORD (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. Argument-1 must be one character in length and must be class alphabetic or alphanu-
meric.
Returned values
1. The returned value is the ordinal position of argument-1 in the collating sequence for
the program.
Example 9-29
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 L PIC X VALUE "Z".
01 R PIC X(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION ORD (L).
DISPLAY R UPON T.
STOP RUN.
Result: 234
The ordinal position of the letter Z in EBCDIC is 234.
608 U41112-J-Z125-1-76
Intrinsic functions ORD-MAX
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ORD-MAX ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. If more than one argument is specified, all arguments must be of the same class.
2. argument-1 may not be of class "object“.
Returned values
1. The returned value is the ordinal number that indicates the position of the argument
having the greatest value in the argument series.
2. The comparisons used to determine the greatest valued argument are made according
to the rules for simple conditions (see 319).
3. If more than one argument has the same greatest value, the number returned corre-
sponds to the position of the leftmost argument having that value.
4. The error default value is 0.
Example 9-30
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 9(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION ORD-MAX (13 4 9 18 5 7).
DISPLAY R UPON T.
STOP RUN.
Result: 004
The fourth argument (18) has the greatest value.
U41112-J-Z125-1-76 609
ORD-MIN Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION ORD-MIN ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
1. If more than one argument is specified, all arguments must be of the same class.
2. argument-1 may not be of class "object“.
Returned values
1. The returned value is the ordinal number that indicates the position of the argument
having the last value in the argument series.
2. The comparisons used to determine the least valued argument are made according to
the rules for simple conditions (see 319).
3. If more than one argument has the same least value, the number returned corresponds
to the position of the leftmost argument having that value.
4. The error default value is 0.
Example 9-31
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 9(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION ORD-MIN ("Z" "3" "B" "?" "a").
DISPLAY R UPON T.
STOP RUN.
Result: 004
The fourth argument ("?") has the least value.
610 U41112-J-Z125-1-76
Intrinsic functions PRESENT-VALUE
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION PRESENT-VALUE (argument-1 {argument-2}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
U41112-J-Z125-1-76 611
PRESENT-VALUE Intrinsic functions
Example 9-32
...
DATA DIVISION.
WORKING-STORAGE SECTION.
*** Interest rate 10% **********
01 INTEREST PIC 9V99 VALUE 0.10.
*** Four payments *********
01 B-1 PIC 9(4) VALUE 1000.
01 B-2 PIC 9(4) VALUE 2000.
01 B-3 PIC 9(4) VALUE 1000.
01 B-4 PIC 9(4) VALUE 1000.
*** Principal amount repaid ***
01 PAR PIC 9(6).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE PAR = FUNCTION PRESENT-VALUE (INTEREST B-1 B-2 B-3 B-4).
DISPLAY "Amount repaid: " PAR UPON T.
STOP RUN.
Result: Amount repaid: 003996
This is the principal amount repaid by 4 payments.
612 U41112-J-Z125-1-76
Intrinsic functions RANDOM
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION RANDOM [(argument-1)]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is greater than or equal to zero and less than one.
2. For a given seed value, the sequence of pseudo-random numbers will always be the
same.
3. The range of argument-1 values that will yield distinct sequences of pseudo-random
numbers is 0 through 231-1.
4. The error default value is -1.
U41112-J-Z125-1-76 613
RANDOM Intrinsic functions
Example 9-33
IDENTIFICATION DIVISION.
PROGRAM-ID. LOTTO.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SPECIAL-NAMES.
TERMINAL IS VIDEO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 LIST.
05 ELEM OCCURS 6 INDEXED BY SI, LI.
10 Z PIC Z9 VALUE FROM (1) IS ZERO REPEATED TO END.
10 T PIC XX VALUE FROM (1) IS ", " REPEATED TO END.
01 Z-0 PIC Z9.
01 RAN-VAL PIC V9(18) BINARY.
01 INIT-ARG PIC 9(5) BINARY.
01 ID-1.
02 PIC X(5).
02 D1 PIC 9.
02 PIC X.
02 D2 PIC 9.
02 PIC X.
02 D3 PIC 9.
02 PIC X.
02 D4 PIC 9.
02 PIC X.
02 D5 PIC 9.
02 PIC X(7).
01 D6 PIC 9.
PROCEDURE DIVISION.
M SECTION.
M1.
*
* Select a seed for the random function based on the
* time, date, and weekday
*
MOVE FUNCTION CURRENT-DATE TO ID-1
ACCEPT D6 FROM DAY-OF-WEEK
COMPUTE INIT-ARG =
(10 * D1 + 1000 * D2 + 100 * D3 + D4 + 10000 * D5) * D6
*
* Compute the first random number
*
COMPUTE RAN-VAL = FUNCTION RANDOM (INIT-ARG)
*
* Traverse the loop until 6 elements have been entered
* into the list
*
PERFORM VARYING LI FROM 1 BY 1 UNTIL LI > 6
*
* Traverse the loop until a unique number is found
* and entered into the current list element
*
PERFORM UNTIL Z (LI) NOT ZERO
*
* Map the return value of the RANDOM function
* to an integer between 1 and 49
*
614 U41112-J-Z125-1-76
Intrinsic functions RANDOM
U41112-J-Z125-1-76 615
RANGE Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION RANGE ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is equal to the greatest value of argument-1 minus the least value
of argument-1. The comparisons used to determine the greatest and least values are
made according to the rules for simple conditions (see 3.9.4, "Simple conditions").
2. The error default value is -1.
See also: MIN, MAX, MEAN, MEDIAN, MIDRANGE, ORD-MAX, ORD-MIN, SUM
Example 9-34
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION RANGE (12 32 5 8 17 9).
DISPLAY RES UPON T.
STOP RUN.
Result: 027
616 U41112-J-Z125-1-76
Intrinsic functions REM
REM - Remainder
The REM function returns a numeric value that is the remainder of argument-1 divided by
argument-2.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION REM (argument-1 argument-2)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
Example 9-35
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION REM (928 14).
DISPLAY R UPON T.
STOP RUN.
Result: 004
U41112-J-Z125-1-76 617
REVERSE Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION REVERSE (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
Example 9-36
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 REV PIC X(14) VALUE "dog ma i,amgod".
01 RES PIC X(14).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
MOVE FUNCTION REVERSE (REV) TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: dogma,i am god
618 U41112-J-Z125-1-76
Intrinsic functions SIN
SIN - Sine
The SIN function returns the sine of the angle or arc that is specified in radians by
argument-1.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION SIN (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the sine of argument-1 and is greater than
or equal to -1 and less than or equal to +1.
Example 9-37
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC S9V9(10).
01 RES PIC -9.9(10).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION SIN (3.1425).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: -0.0009073462
U41112-J-Z125-1-76 619
SQRT Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION SQRT (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the absolute value of the approximation of the square root of
argument-1.
2. The error default value is -2.
Example 9-38
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 99V999999.
01 RES PIC 99.999999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION SQRT (33).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 05.744562
620 U41112-J-Z125-1-76
Intrinsic functions STANDARD-DEVIATION
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION STANDARD-DEVIATION ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the standard deviation of the argument
series.
2. The returned value is calculated as follows:
a) The difference between each argument value and the arithmetic mean of the argu-
ment series is calculated and squared.
b) The values obtained are then added. This quantity is divided by the number of val-
ues in the argument series.
c) The square root of the quotient obtained is then calculated. The returned value is
the absolute value of this square root.
3. If the argument series consists of only one value, or if the argument series consists of
all variable occurrence data items and the total number of occurrences for all of them is
one, the returned value is zero.
4. The error default value is -1.
U41112-J-Z125-1-76 621
STANDARD-DEVIATION Intrinsic functions
Example 9-39
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 99V9999.
01 RES PIC 99.9999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION STANDARD-DEVIATION (2 4 6).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 01.6329
622 U41112-J-Z125-1-76
Intrinsic functions SUM
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION SUM ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
Example 9-40
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC 9(3).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE RES = FUNCTION SUM (12 32 5 8 17 9).
DISPLAY RES UPON T.
STOP RUN.
Result: 00000083
U41112-J-Z125-1-76 623
TAN Intrinsic functions
TAN - Tangent
The TAN function returns the tangent of the angle or arc that is specified in radians by
argument-1.
The type of this function is numeric.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION TAN (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
Example 9-41
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC S9V9(10).
01 RES PIC -9.9(10).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION TAN (3.1425).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 0.0009073466
624 U41112-J-Z125-1-76
Intrinsic functions UPPER-CASE
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION UPPER-CASE (argument-1)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The same character string as argument-1 is returned, except that each lowercase letter
is replaced by the corresponding uppercase letter.
2. The character string returned has the same length as argument-1.
3. Umlauts are not converted.
4. The error default value is a space.
Example 9-42
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RES PIC X(20).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
MOVE FUNCTION UPPER-CASE ("wonderwoman") TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: WONDERWOMAN
U41112-J-Z125-1-76 625
VARIANCE Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION VARIANCE ({argument-1}...)
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the approximation of the variance of the argument series.
2. The returned value is defined as the square of the standard deviation of the argument
series (see STANDARD-DEVIATION function).
3. If the argument series consists of only one value, or if the argument series consists of
all variable occurrence data items and the total number of occurrences for all of them is
one, the returned value is zero.
4. The error default value is -1.
Example 9-43
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 R PIC 99V9999.
01 RES PIC 99.9999.
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
COMPUTE R = FUNCTION VARIANCE (2 4 6).
MOVE R TO RES.
DISPLAY RES UPON T.
STOP RUN.
Result: 02.6666
626 U41112-J-Z125-1-76
Intrinsic functions WHEN-COMPILED
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION WHEN-COMPILED
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Returned values
Example 9-44
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A-DATE PIC X(21).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
MOVE FUNCTION WHEN-COMPILED TO A-DATE.
DISPLAY A-DATE UPON T.
STOP RUN.
Result: 199604211434270000000
U41112-J-Z125-1-76 627
YEAR-TO-YYYY Intrinsic functions
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
FUNCTION YEAR-TO-YYYY (argument-1 [argument-2])
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Arguments
Returned values
1. The returned value is the year specified in argument-1 together with the century.
The returned value depends on the intermediate value
628 U41112-J-Z125-1-76
Intrinsic functions YEAR-TO-YYYY
Example 9-45
...
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A-DATE PIC 9(7).
01 CURRENT-YEAR PIC 9(7).
01 YEAR PIC 9(7).
PROCEDURE DIVISION.
P1 SECTION.
MAIN.
*
* Calculation of the function with a floating window:
*
* The 100-year interval in which the calculated year falls is to
* include the years (current year -35) through (current year +64):
*
COMPUTE A-DATE = FUNCTION YEAR-TO-YYYY (59 64).
DISPLAY A-DATE UPON T. (1)
*
* Without 2nd argument (or 2nd argument =50)
* The 100-year interval includes the years (current year -49)
* through (current year +50):
*
COMPUTE A-DATE = FUNCTION YEAR-TO-YYYY (0).
DISPLAY A-DATE UPON T. (2)
*
* The 2nd argument can also be negative
* The 100-year interval includes the years (current year -109)
* through (current year -10):
*
COMPUTE A-DATE = FUNCTION YEAR-TO-YYYY (96 -10).
DISPLAY A-DATE UPON T. (3)
*
* Calculation of the function with a fixed window
*
* The 100-year interval in which the calculated year falls is to
* include the years 1950 through 2049:
*
* Calculation of the last year of the 100-year interval
* relative to the current year
*
MOVE FUNCTION CURRENT-DATE(1:4) TO CURRENT-YEAR.
COMPUTE YEAR = 2049 - CURRENT-YEAR.
* Calculation of the function values
COMPUTE A-DATE = FUNCTION YEAR-TO-YYYY (50 YEAR).
DISPLAY A-DATE UPON T. (4)
COMPUTE A-DATE = FUNCTION YEAR-TO-YYYY (1 YEAR).
DISPLAY A-DATE UPON T. (5)
U41112-J-Z125-1-76 629
YEAR-TO-YYYY Intrinsic functions
*
* The 100-year interval in which the calculated year falls is to
* include the years 1890 through 1989:
*
* Calculation of the last year of the 100-year interval
* relative to the current year
*
MOVE FUNCTION CURRENT-DATE(1:4) TO CURRENT-YEAR.
COMPUTE YEAR = 1989 - CURRENT-YEAR.
* Calculation of the function values
COMPUTE A-DATE = FUNCTION YEAR-TO-YYYY (89 YEAR).
DISPLAY A-DATE UPON T. (6)
COMPUTE A-DATE = FUNCTION YEAR-TO-YYYY (90 YEAR).
DISPLAY A-DATE UPON T. (7)
STOP RUN.
Result:
In the year 1996 the program returns the following results:
(1) 2059
(2) 2000
(3) 1896
(4) 1950
(5) 2001
(6) 1989
(7) 1890
In the year 2050 the program returns the following results:
(1) 2059
(2) 2100
(3) 1996
(4) 1950
(5) 2001
(6) 1989
(7) 1890
630 U41112-J-Z125-1-76
10 Report Writer
U41112-J-Z125-1-76 631
General description Report Writer
632 U41112-J-Z125-1-76
Report Writer General description
The specification of control data items in conjunction with the report groups "control
heading" and "control footing" thus enables the user to have the report produced in a struc-
tured format.
The report group description entry, formally similar to a record description, is used to
describe the properties of all data items in the report. Beyond the ordinary framework of
COBOL language elements for the description of data items, a report data item is assigned
line and column, i.e. a page position; in other words, the data item is declared to be a print
field. Each of these fields receives information.
Three types of information may be supplied:
SOURCE information (SOURCE clause information), which is available through a data
item defined outside the REPORT SECTION.
SUM information (SUM clause information), as a result of adding up data representing, in
turn, SOURCE information and/or SUM information.
VALUE information (VALUE clause information), as a predefined information value.
Since a given report may contain several types of report groups, the report group
description specifies the type of the report group. The seven types that may be used are
shown in Table 10-1.
With its report and all associated report group description entries, the report is completely
described as to its format and content (including the summation operations required); that
is, all prerequisites to writing the report are met.
Type Definition
REPORT HEADING A report group that is written only once, as the first group of the report.
REPORT FOOTING A report group that is written only once, as the last group of the report.
PAGE HEADING A report group written at the top of each page. Exceptions:
1. The page heading is written after the report heading.
2. The page heading is suppressed when the page is explicitly reserved
for the report heading or footing.
PAGE FOOTING A report group written at the bottom of each page (exceptions: same as
page heading).
DETAIL This report group type is the only one which is not produced automatically
but must be specified in a GENERATE statement. Each execution of this
statement produces the specified detail report group at object time.
CONTROL HEADING This report group is generated as a heading group for a series of detail
report groups, due to a control break.
CONTROL This report group is generated as a footing group for a series of detail
FOOTING report groups, due to a control break. It usually sums up data concerning
the preceding series of detail report groups.
Table 10-1: Report group types used in report group description
U41112-J-Z125-1-76 633
General description Report Writer
634 U41112-J-Z125-1-76
Report Writer/Data Division REPORT clause
REPORT clause
Function
The REPORT clause relates one or several reports described in the REPORT SECTION to
a file in whose file description (FD) entry this clause is specified. Each of these reports is
written line by line to the file assigned by the REPORT clause and described as an output
file.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
REPORT IS
{{report-name-1}...
REPORTS ARE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
Each report-name specified in the REPORT clause must be the subject of a report descrip-
tion entry defining that name as a report-name.
General rules
1. The name of each report to be produced by the Report Writer must appear in the
REPORT clause of the file description for the sequential output file to which the report
is to be written.
2. Specification of several report-names in one REPORT clause relates these reports to
the file whose file description entry contains the REPORT clause. When created, these
reports are written to the assigned file regardless of the order in which the report names
are specified and regardless of their formats, their lengths or any similar details.
3. Each report-name defined by a report description entry must be specified in one, and
only one, REPORT clause; that is, a given report may be assigned to one file only.
4. The record format (variable, fixed, or unspecified length) is determined by the entry in
the RECORD CONTAINS clause.
U41112-J-Z125-1-76 635
REPORT SECTION Report Writer/Data Division
REPORT SECTION
Function
The REPORT SECTION describes the format and contents of the reports to be generated.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
REPORT SECTION.
General rules
1. The REPORT SECTION must be the last section of the Data Division, unless
SUB-SCHEMA SECTION is also specified (see General format of the Data Division,
page 204).
2. The report group description entries must all follow the related report description entry
in a body.
3. A report group description entry formally corresponds to a record description of the
FILE SECTION or WORKING-STORAGE SECTION. The report group description
entry comprises all of the data description entries for a single report group. The first
entry in the report group description begins with level-number 01. All associated data
description entries must begin with level-number 02 (see "Report group description
entries", page 649).
636 U41112-J-Z125-1-76
Report Writer/Data Division Report description entry
Function
The report description (RD) entry is used to name a report, define its page format, identify
its lines, and for structuring the report. It may perform the following functions as required.
1. Specification of a character identifying the print lines of a report (CODE clause).
2. Declaration of a group hierarchy for structuring the report (CONTROL clause).
3. Definition of a page format by specifying vertical boundaries for report group specific
regions (PAGE LIMIT clause).
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
RD report-name
[CODE clause]
[CONTROL clause]
[PAGE LIMIT clause]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. RD is the level indicator, which identifies the beginning of the report description and
must immediately precede the report-name.
2. The report-name must be specified in a REPORT clause of the file description entry for
the file on which the report is to be written.
3. No more than 31 data-names may be specified in a CONTROL clause within a report
description.
4. The report-name identifies the report and, accordingly, must be unique.
The RD entry clauses are described on the pages that follow.
U41112-J-Z125-1-76 637
CODE clause Report Writer/Data Division
CODE clause
Function
The CODE clause specifies a character for identifying the print lines that belong to a specific
report. This character is inserted in the first position of each print line of the report but must
not be printed. It is used to separate the print lines of two or more reports that are inter-
leaved or written consecutively on the report file.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CODE literal
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The literal must be a two-character non-numeric literal. The COBOL2000 compiler uses
only the first character of the literal for marking the report.
2. If a report description entry includes the CODE clause, all other report description
entries assigned to the same output file (through the REPORT clause) must have a
CODE clause also.
3. The character which is written at the beginning of each print line is associated with the
literal.
4. The character for identifying the print lines of a report is inserted at the beginning of the
line, following the carriage control character. This character must not appear in the print
format.
General rule
The CODE clause must not be specified if the report is to be printed immediately
("online") or if it is assigned to the report file SYSLST. It must be ensured that reports
do not overlap, i.e. that during the time lapse between the INITIATE and TERMINATE
statement for one report no GENERATE statement is executed for another report.
638 U41112-J-Z125-1-76
Report Writer/Data Division CONTROL clause
CONTROL clause
Function
The CONTROL clause defines the data items that are used as control data items of the
report to determine the group hierarchy and, thus, the hierarchical structuring of the report.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
CONTROL IS {data-name-1}...
CONTROLS ARE FINAL [data-name-1]...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. No more than 31 data-names may be entered in the CONTROL clause, including the
FINAL phrase if specified.
2. data-name-1... may be qualified but must not be indexed.
3. No data item may be subordinated to a data-name if its length is defined in the
OCCURS clause as variable.
4. data-name-1... must not be defined in the REPORT SECTION but rather in the FILE
SECTION, LOCAL-STORAGE SECTION or WORKING-STORAGE SECTION. A
data-name entered in the CONTROL clause may be defined in the LINKAGE SECTION
of the called program, provided that the called program is continuously available in
memory from the time the report is initiated until its production is terminated.
5. The data item used may be up to 256 characters in length.
6. Each data-name-1 must identify a different data item.
Two separate recurrences of data-name-1 must not refer to data items which (by redef-
inition) refer to the same memory locations.
7. A control data item is a data item which is specified in the CONTROL clause. It is tested
whenever a GENERATE statement is executed for the same report in order to ascertain
whether its value has changed since the last GENERATE statement was executed for
that report.
If such a change in value is found to have taken place, a "control break" occurs, i.e.
special action (described below) will be taken before the detail report group specified
by the GENERATE statement is written. If changes in value have occurred in several
control data items when a GENERATE statement is executed, it is always the hierarchi-
cally supreme change in value to which all control break concepts (such as control
break and control break level) are related.
U41112-J-Z125-1-76 639
CONTROL clause Report Writer/Data Division
General rules
1. The action implied by a control break depends on whether a control heading and/or a
control footing, or neither of the two are defined for each control hierarchy level. If a
control break occurs, the Report Writer creates the following control headings and
control footings (as present), in the order shown below:
a) Control footing of the lowest level.
b) Control footing of the next higher level.
.
.
.
c) Control footing of the level responsible for the control break.
d) Control heading of the level responsible for the control break.
e) Control heading of the next lower level.
.
.
.
f) Control heading of the lowest level.
Next, the Report Writer writes the detail report group initiated by the GENERATE
statement.
For example, when the control break data-names for a report are specified as YEAR,
MONTH, and DAY (listed in this order in the CONTROL clause), associating each of
these data-names with one control heading as well as one control footing, then, if a
control break occurs for YEAR (that is, the contents of the data item YEAR has changed
between two chronologically successive GENERATE statements), the body groups are
printed in the following order:
640 U41112-J-Z125-1-76
Report Writer/Data Division CONTROL clause
Example 10-1
U41112-J-Z125-1-76 641
GLOBAL clause Report Writer/Data Division
GLOBAL clause
Function
The GLOBAL clause can only be used within a nested program. It defines a report-name
as global. A global name can be accessed by the program defining it and by any other
program contained directly or indirectly in this program.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
IS GLOBAL
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Formats for the file description entry can be found under the FILE SECTION.
Syntax rules
General rules
642 U41112-J-Z125-1-76
Report Writer/Data Division PAGE LIMIT clause
Function
The PAGE LIMIT clause is used to define the length of a page and the vertical subdivisions
within which report groups are presented.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
LIMIT IS LINE
PAGE integer-p
LIMITS ARE LINES
[HEADING integer-h]
[FIRST DETAIL integer-d]
[LAST DETAIL integerl-e]
[FOOTING integer-f]
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. integer-p indicates the maximum possible number of print lines per page.
2. integer-p must not exceed 999.
3. The other integers of the PAGE LIMIT clause are line numbers. Since the numbering of
the lines on a page starts with 1, integer-p may also be interpreted as a line number.
4. The integers of the PAGE LIMIT clause are subject to the following relationships:
integer-h must be equal to or greater than 1.
integer-d must be equal to or greater than integer-h.
integer-e must be equal to or greater than integer-d.
integer-f must be equal to or greater than integer-e.
integer-p must be equal to or greater than integer-f.
5. integer-h of the HEADING phrase specifies the first line on the page on which anything
may be written.
6. integer-h must not exceed 999.
7. integer-p of the LIMIT phrase specifies the last line on the page on which anything may
be written.
8. integer-d of the FIRST DETAIL phrase specifies the lowest line number permitted for
any body groups.
9. integer-d must not exceed 999.
U41112-J-Z125-1-76 643
PAGE LIMIT clause Report Writer/Data Division
10. integer-e of the LAST DETAIL phrase specifies the highest line number permitted for
any detail groups and control headings.
11. integer-e must not exceed 999.
12. No more than 127 detail report groups (DETAIL) may be specified within a report
description entry.
13. integer-f of the FOOTING phrase specifies the highest line number permitted for any
control footings.
14. No more than 31 control footings may be specified within a report description entry.
15. integer-f must not exceed 999.
16. If the PAGE LIMIT clause is specified but one or more of the optional integers is omitted,
the following values are internally assumed by default:
Omitted integer Value assumed when nothing is specified
HEADING integer-h 1
FIRST DETAIL integer-d Value of HEADING integer-h
LAST DETAIL integer-e Value of FOOTING integer-f
FOOTING integer-f Value of LIMIT integer-p
17. If the PAGE LIMIT clause is omitted entirely, the compiler assumes the following values
for each integer of the PAGE LIMIT clause:
Integer Assumed value
LIMIT integer-p 50
HEADING integer-h 1
FIRST DETAIL integer-d 1
LAST DETAIL integer-e 48
FOOTING integer-f 48
General rules
1. The Report Writer uses the phrases of the PAGE LIMIT clause for partitioning the page
into regions. Only report groups of specific types may be printed in certain regions. The
page regions for each type of report group are:
a) If the report heading description includes the NEXT GROUP NEXT PAGE clause,
the report heading prints from the line whose number is integer-h through the line
whose number is integer-p. Otherwise, the report heading must not print beyond the
line whose number is integer-d minus 1, which requires explicit entry of integer-d
(see under b. below).
644 U41112-J-Z125-1-76
Report Writer/Data Division PAGE LIMIT clause
b) The page heading must lie in the region from integer h through integer d minus 1.
This region does not exist if the value of integer-d is established by the compiler. It
is therefore necessary for integer-d to be supplied explicitly in the PAGE LIMIT
clause when printing a page heading or report heading which does not appear on
a page by itself.
c) Detail report groups and control headings may be printed only in the region from
integer-d through integer-e, these boundaries included.
d) Printout of control footings is permitted in the region from integer-d through
integer-f.
e) A page footing may be printed only in the region from integer-f+1 through
integer-p. This region does not exist if the PAGE LIMIT clause is supplied without
the integer-f phrase. Therefore, in this case, printing a page footing requires that
integer-f be specified explicitly.
f) If a whole page is associated with the report footing by means of LINE NEXT PAGE,
the report footing may print in the region from integer-h through integer-p.
Otherwise, report footings are subject to rule e).
2. NEXT GROUP and LINE clauses of the report group description entries must not
conflict with the PAGE LIMIT clause; that is, the lines of a report group must be within
the assigned region.
3. Table 10-2 is a schematic view of the partitioning of a page into regions in those cases
where each integer of the PAGE LIMIT clause has a different value.
U41112-J-Z125-1-76 645
PAGE LIMIT clause Report Writer/Data Division
integer-h
integer-h +1
.
.
.
integer-d -1
integer-d
integer-d +1
.
.
.
integer-e -1
integer-e
integer-e +1
.
.
.
integer-f -1
integer-f
integer-f +1
.
.
.
integer-p -1
integer-p
Table 10-2 Page partitioning into regions (schematic)
646 U41112-J-Z125-1-76
Report Writer/Data Division PAGE LIMIT clause
4. Table 10-2 shows all print page regions which result when the PAGE LIMIT clause is
specified with integer-h less than integer-d less than integer-e less than integer-f less
than integer-p. The same assumption applies to the following rules for using these
regions.
Region 1:
Region 2:
U41112-J-Z125-1-76 647
PAGE LIMIT clause Report Writer/Data Division
Region 3:
Region 4:
Region 5:
648 U41112-J-Z125-1-76
Report Writer/Data Division Report group description entry
Function
The report group description entry describes and defines the format, type, and properties
of a report group as a series of elementary items and items associated with information.
These items, organized in lines and columns, form the line(s) to be printed in a report group.
A prepositioning to the next report group to be written may be achieved by a NEXT GROUP
phrase.
Using the type of report group, demands are placed both on the description of the report
group and on the Report Writer when the report group is created. For example, the page
positioning of a report group is also determined by the type of the report group. Much the
same is true of the time the report group is produced. Summations, for instance, can be
defined in control footings only. They are executed immediately preceding the creation of
detail groups or the control footings concerned, depending on type of summation.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
01 [data-name-1]
TYPE clause
[LINE clause]
[NEXT GROUP clause]
02 [data-name-2]
[LINE clause]
[COLUMN clause]
[GROUP INDICATE clause]
PICTURE clause
[BLANK WHEN ZERO clause]
[JUSTIFIED RIGHT clause]
[SIGN clause]
[USAGE clause]
SOURCE clause
SUM clause
VALUE clause
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The description of a report group must begin with a 01-level entry, followed by at least
one 02-level entry.
2. With the exception of the data-name, which must immediately follow the level-number,
the clauses may be written in any order.
U41112-J-Z125-1-76 649
Report group description entry Report Writer/Data Division
3. A report consists of a series of report groups. Up to seven different report group types
(see TYPE clause, page 678) may appear in the report.
By definition, a report group consists of one or several elementary items, where each
item with a COLUMN clause (printable item) must be assigned to one line. Report
groups which do not contain printable items are nonprintable. A printable report group
is a unit comprising one or more lines.
With the exception of the report heading and the report footing, any report group may
be created several times in the course of creating report; in this case, there must be no
change in the report group format or in the constant information contents.
4. No more than 127 report group description entries may be specified in a report
description entry.
5. The data-name which immediately follows the level-number 01 is the name of the report
group. It must be supplied if the report group is to be referenced directly in a
GENERATE statement (detail group), a USE BEFORE REPORTING statement, an
UPON phrase within a SUM clause, or is to be used for qualification.
6. The TYPE clause specifies the type of report group, enabling the Report Writer to
determine the modalities (when, where) for producing that report group.
7. The LINE clause assigns the printable items specified within its range to a line of the
current or next print page. The first LINE clause of a report group description entry
therefore determines the positioning of that report group. The range extends until the
next LINE clause or the end of the report group entry.
8. The NEXT GROUP clause causes (after a report group is printed) the next report group
to be positioned to the line number supplied in the phrases of the NEXT GROUP clause.
The COLUMN, GROUP INDICATE, BLANK, JUSTIFIED, and PICTURE clauses define
the location and format of the printable data item for a particular print line of the report
group.
9. SOURCE, SUM, and VALUE clauses associate the data items with the respective infor-
mation. In addition, the SUM clause also defines an internal sum counter whose
contents is automatically updated by the Report Writer.
10. Each printable item must be covered by a LINE clause. This LINE clause represents a
print line.
650 U41112-J-Z125-1-76
Report Writer/Data Division Report group description entry
General rules
1. The name of a report group may be specified in the REPORT SECTION and in the
Procedure Division. Only names of control footings and detail groups may be supplied
in the REPORT SECTION. While the name of a detail group may be defined in the
UPON phrase of a SUM clause, the name of a control footing may be used only for
qualifying a sum counter. In the Procedure Division, the name of a report group may be
specified only in two cases:
a) The name of a detail group may be specified in a GENERATE statement.
b) In a USE BEFORE REPORTING statement, any report group name (except names
of detail groups) may be used.
As a qualifier for a report group name, only the associated report name is allowable.
2. A data-name immediately following the level-number 02 of a report group entry should
not be specified unless that data item description includes a SUM clause. In this case,
the data-name will be interpreted as the name of the sum counter which is established
as a result of the SUM clause (see "SUM clause", page 670). The name of a sum
counter may again be specified in a SUM clause. If the data-name is supplied although
no SUM clause is present, in other words, if the data-name is defined as the name of
the item, its use is illegal.
Sum counters may only be qualified by report group names and/or report names.
Table 10-3 lists the report group entry clauses and briefly describes each.
The BLANK WHEN ZERO, JUSTIFIED, PICTURE, USAGE and VALUE clauses are also
used in other sections of the Data Division; that is, they are assumed to be known here
(refer to the pertinent descriptions).
All other report entry clauses are described on the following pages, in alphabetical order.
U41112-J-Z125-1-76 651
Report group description entry Report Writer/Data Division
652 U41112-J-Z125-1-76
Report Writer/Data Division COLUMN clause
COLUMN clause
Function
The COLUMN clause defines a data item as a printable field by specifying its column
number (integer) to indicate the starting position of that item with respect to the print line.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
COLUMN integer
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. The presence of the COLUMN clause in the description entry for a data item containing
the mandatory PICTURE clause as well as either a SOURCE, SUM, or VALUE clause
constitutes a printable item.
2. Every entry that defines a printable item must either contain, or be preceded by (in the
same report group description), a LINE clause. The printable item will be printed on the
print line specified by the LINE clause.
3. Within the scope of a LINE clause (that is, before the next LINE clause occurs or until
the report the report entry ends), the printable items must be defined in ascending
column number sequence. The printable items are printed on the line in the order in
which they were defined.
4. Printable items on a print line must not be so defined that they overlap each other
(concerning the COLUMN and PICTURE clauses).
5. Immediately before the printable items in a line are printed, i.e. before the print line is
written to the report file, the information is automatically moved to these items by implicit
MOVE statements. Depending on whether the description of the receiving item
(=printable item) includes the SOURCE, VALUE, or SUM clause, the sending item will
be the identifier from the SOURCE clause, the literal from the VALUE clause, or the
internal sum counter which was established for the SUM clause.
U41112-J-Z125-1-76 653
COLUMN clause Report Writer/Data Division
6. The Report Writer supplies space characters for all positions of a print line that are not
occupied by printable items.
Example 10-2
654 U41112-J-Z125-1-76
Report Writer/Data Division GROUP INDICATE clause
Function
The GROUP INDICATE clause indicates to the Report Writer that the printable item with
which it is associated is to be printed only if the detail report group is written for the first time
on a page of the report or for the first time after a control break.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
GROUP INDICATE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The GROUP INDICATE clause may be used only in a detail report group. The item
description containing the GROUP INDICATE clause must also include a COLUMN
clause.
2. The GROUP INDICATE clause causes the Report Writer to print the associated
printable item according to the SOURCE or VALUE clause specified, only in the
following cases:
a) On the first presentation of the detail report group in the report
b) On the first presentation of the detail report group after a page advance or
c) On the first presentation of the detail report group after a control break.
In all other cases, space characters are substituted for the printable field, suppressing
the associated data in the print layout.
U41112-J-Z125-1-76 655
GROUP INDICATE clause Report Writer/Data Division
Example 10-3
The above extract from a report comprises three detail report groups of the same report
group definition, created immediately following a control break (change in the current con-
tents of DAY).The current values JANUARY and 15 of the sending items (SOURCE items)
for the first two printable items of this 1-line detail report group appear, therefore, only in the
first line (detail report group).
656 U41112-J-Z125-1-76
Report Writer/Data Division LINE clause
LINE clause
Function
The LINE clause specifies the line on the report page on which one or more printable items
defined within its scope (see COLUMN clause, page 653) are to be printed. In special appli-
cation, it is used simply for page advance.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
integer-1
LINE NUMBER IS PLUS integer-2
NEXT PAGE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. integer-1 and integer-2 may only be specified as unsigned integers. integer-1 must be
greater than or equal to 1, integer-2 must be greater than or equal to 0. The value of
integer-1 or integer-2 must not exceed 999.
2. A LINE clause with integer-1 phrase specified is called an absolute LINE clause.
integer-1 is interpreted as a line number. Therefore, when creating the associated
report group, integer-1 indicates the particular line on the report page on which the
printable items which belong to the LINE clause and, thus, are organized as a line will
ultimately be written. In this way, an absolute LINE clause always defines a print line.
3. A LINE clause with PLUS integer-2 phrase specified is called a relative LINE clause.
The print line to receive the printable items associated with a relative LINE clause at the
time the particular report group is generated, is determined relative to the last vertical
positioning. For this purpose, integer-2 is added to the number of the line on which the
report page is presently positioned (see "NEXT GROUP clause", page 662 and "LINE
COUNTER special register", page 688). The sum then designates the number of the
next line to be printed.
Deviations from the above rules are only permissible for special types of report groups,
when the relative LINE clause was used for the first line of a report group. These devia-
tions will be discussed in due course.
4. A LINE clause with a NEXT PAGE phrase causes the associated report group to be
printed on a free page (usually the next page), advancing the page before the report
group is printed.
Whether a LINE NEXT PAGE clause additionally specifies a print line can be seen from
the rules described below.
U41112-J-Z125-1-76 657
LINE clause Report Writer/Data Division
General rules
The following programming rules are classified into two categories -"General notes" and
"Report group syntax notes". Rules in the latter category describe the use of the LINE
clause in the descriptions of the different types of report groups.
The abbreviations used in the report group notes have the following meaning.
Abbreviation Meaning
A one or more absolute LINE clauses
R one or more relative LINE clauses
NP a LINE clause with NEXT PAGE phrase
General notes
1. A printable report group item that is to be written on a line of the report page must either
itself contain a LINE clause in its description or its description must be preceded, within
the associated report group description entry, by a LINE clause. Conversely, all
printable items in the associated report group description entry, which follow the LINE
clause and precede the next LINE clause or the end of that report group description
entry, will be written on the line determined by the LINE clause. Subsequent printable
items from the report group entry are printed combined into lines in the same manner.
2. The vertical spacing parameters (LINE and NEXT PAGE clauses) must be selected for
the different report group types in such a way that these report groups can be printed
within the page regions provided for them (see also "PAGE clause", page 643 and
"TYPE clause", page 678). It is not possible to continue a report group in the associated
specific region on another page.
If a body group cannot be printed in its specific region simply because part of that region
is no longer available, then that body group as a whole will be written in the same region
on the next page, after creating first the page footing on the old page and the page
heading on the new page.
3. If a report group entry includes (one or more) absolute LINE clauses, they must all be
specified:
a) preceding the first relative LINE clause if any, and
b) in the order of ascending integers.
4. The LINE clause with the NEXT PAGE phrase may only be specified in a report group
description entry (01 level) to position to the next page.
658 U41112-J-Z125-1-76
Report Writer/Data Division LINE clause
5. Report heading
The following sequences of LINE clauses may be used in describing a report heading
group:
A
A R
6. Page heading
Only the following sequences of LINES clauses may be used in describing a page
heading group:
A
A R
R
When the first LINE clause from the description of the page heading is a relative clause,
then, generally, the first line of the report group is printed relative to the region boundary
integer-h of the PAGE LIMIT clause (see "PAGE LIMIT clause", page 643). Only when
the report heading was printed on the same page will there be deviation in that the first
line of the report group is printed relative to the vertical spacing resulting from the
creation of the report group heading.
7. Body groups
Detail groups, control headings, and control footings are referred to generically as body
groups.
a) The following sequences of LINE clauses may be used in describing a body group:
NP
NP A
NP A R
NP P
A
A R
R
U41112-J-Z125-1-76 659
LINE clause Report Writer/Data Division
d) A LINE NEXT PAGE clause in the description of a body group indicates to the
Report Writer that the body group is to be printed on the next page which is not yet
occupied by a body group. This may lead to a situation where no page advance is
carried out. This will certainly be the case when the body group is to be written as
the first body group on a particular report.
e) If a body group defined with a LINE clause sequence NP, NP R, or R is the first body
group to be printed on a page, then the first print line of that body group will be
printed on the line whose number is integer-d as specified in the PAGE clause.
However, it may well be the case that the paper has already been advanced beyond
region boundary integer-d, e.g. through the last body group printed because of a
NEXT GROUP clause (see page 662). In this case, the first line of the body group
will be written on the line immediately following the present positioning.
f) If a body group whose first LINE clause is relative is not to be printed as the first
body group on a page, the present positioning (line number) is advanced by the
number of lines specified by integer-2 in the first LINE clause, to the new position
where the first line of this report group will be printed.
8. Page footing
Only the following sequences of LINE clauses may be used in describing a page
footing:
A
A R
9. Report footing
a) The following LINE clause sequence alternatives may be used in describing a
report footing:
NP A
NP A R
A
A R
R
b) The LINE clause with the NEXT PAGE phrase specified is used solely for page
advance.Therefore, the first absolute LINE clause must appear with, or prior to, the
description of the first printable item, in order to permit positioning to the first line of
the report group.
660 U41112-J-Z125-1-76
Report Writer/Data Division LINE clause
Example 10-4
01 DETAIL-GROUP TYPE DETAIL LINE NEXT PAGE.
02 LINE 10 COLUMN 1 PIC X(10) VALUE "1ST ITEM".
02 COLUMN 15 PIC X(4) SOURCE CARD-FIELD-1.
02 LINE 12 COLUMN 1 PIC X(10) VALUE "2ND ITEM".
02 COLUMN 15 PIC 9(5) SOURCE-WORK-FIELD-1.
The two-line detail group is printed on lines 10 and 12 of a page not yet used for
other body groups, because the LINE clause sequence is NP A.
Example 10-5
01 DETAIL-LINE LINE PLUS 1 TYPE DETAIL.
02 COLUMN 2 GROUP INDICATE PIC A(9) SOURCE FIELD-NO-1.
This example shows a report group whose description includes only one relative
LINE clause. The report group will be printed on the line resulting from the present
position being advanced by one line. If the report group is to be printed as the first
body group on that page, and the present positioning has not gone beyond the
integer-d region boundary (FIRST DETAIL phrase if the PAGE LIMIT clause), the
report group is printed to the line whose number is integer-d.
U41112-J-Z125-1-76 661
NEXT GROUP clause Report Writer/Data Division
Function
The NEXT GROUP clause indicates to the Report Writer the particular line on a page to
which the paper is to advance after printing the last line of the report group containing the
NEXT GROUP clause, thereby causing the paper to be prepositioned for the next (chrono-
logically speaking) report group to be printed (minimum distance from the next report
group).
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
integer-1
NEXT GROUP IS PLUS integer-2
NEXT PAGE
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. integer-1 and integer-2 must be specified as unsigned integers equal to or greater than
1 . Their value must not exceed 999.
2. The NEXT GROUP clause must not be specified in a report group description entry
unless a LINE clause has been specified.
3. A NEXT GROUP clause with integer-1 phrase is called an absolute NEXT GROUP
clause. After printing the last line of the associated report group, the Report Writer
advances the paper to the line whose number is specified by integer-1. This may also
involve a page advance, printing the page footing on the previous page and the page
heading on the new page (for body groups only).
4. A NEXT GROUP clause with PLUS integer-2 phrase specified is called a relative NEXT
GROUP clause. Positioning is advanced by integer-2 lines from the last print line of the
associated report group.
5. A NEXT GROUP clause with NEXT PAGE phrase specified indicates that the current
page is considered to be full; that is, after the associated report group is printed, a page
advance is executed (automatic generation of page footing and page heading for body
groups).
6. If in a USE BEFORE REPORTING procedure of a control footing, the PRINT SWITCH
special register is set to 1 by a MOVE statement, the function of the NEXT GROUP
clause is suppressed by the Report Writer Control System.
662 U41112-J-Z125-1-76
Report Writer/Data Division NEXT GROUP clause
General rules
1. The NEXT GROUP clause may appear only in a 01-level report group description entry.
2. Rules for the report heading
a) If the report heading is to appear on a page by itself, its description must contain the
NEXT GROUP clause with the NEXT PAGE phrase.
b) If the report heading is not to appear on a page by itself, the following rules must be
observed:
– The NEXT GROUP clause must not include the NEXT PAGE phrase.
– integer-1 of an absolute NEXT GROUP clause must indicate a line number
greater than the one assigned to the last print line of the report heading.
– An absolute or relative NEXT GROUP clause must be selected in such a way
that the page heading as the next report group can still be contained in its
specific region. A positioning to the line with the number integer-d (see "PAGE
LIMIT clause", page 643) or even to a line which has a higher number owing to
the NEXT GROUP clause is illegal.
3. Rule for the page heading
The NEXT GROUP clause must not be used in describing the page heading.
4. Rules for body groups
a) integer-1 of an absolute NEXT GROUP clause must be greater than or equal to
integer-d yet less than or equal to integer-f (see "PAGE LIMIT clause", page 643).
If the line number integer-1 of the absolute NEXT GROUP clause is less than or
equal to the number of the line that was printed as the last line of the body group
whose description includes the NEXT GROUP clause, the Report Writer executes
a page advance (automatic generation of page footing and page heading included)
and positions on the line specified by integer-1.
b) If a relative NEXT GROUP clause would advance the paper beyond the lower
boundary specified by integer-f (see "PAGE LIMIT clause"), the Report Writer
executes a page advance (generation of page footing and page heading included)
and positions on the upper region boundary specified by integer-d (see "PAGE
LIMIT clause").
c) The NEXT GROUP clause with the NEXT PAGE phrase specified indicates that no
further body group is to be written on the current page. The Report Writer positions
on the upper region boundary integer-d of the next page (including the creation of
page footing and page heading).
U41112-J-Z125-1-76 663
NEXT GROUP clause Report Writer/Data Division
Example 10-6
01 LINE PLUS 2 NEXT GROUP PLUS 1.
TYPE CONTROL FOOTING WDAY.
02...
The NEXT GROUP clause causes the Report Writer to advance only one line after the
above control footing is created.
664 U41112-J-Z125-1-76
Report Writer/Data Division SIGN clause
SIGN clause
Function
The SIGN clause specifies the position and the mode of representation of the operational
sign for numeric data items.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
LEADING
[SIGN IS] [SEPARATE CHARACTER]
TRAILING
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. The SIGN clause may be specified only for a numeric data description entry whose
PICTURE contains the character S.
2. The data description entries to which the SIGN clause applies must be described,
explicitly or implicitly, as USAGE IS DISPLAY.
3. If the SIGN clause is specified in a report group description entry, the SIGN clause must
contain the SEPARATE CHARACTER phrase.
4. The SIGN clause specifies the position and the mode of representation of the opera-
tional sign. It applies only to numeric data description entries whose PICTURE contains
the character S. The S indicates the presence, but not the mode of representation, of
the operational sign.
5. A numeric data description entry whose PICTURE contains the character S, but to
which no SIGN clause applies, has an operational sign, but neither the representation
nor, necessarily, the position of the operational sign is specified by the character S. (For
representation of the operational sign see "USAGE clause", page 285.)
General rules
1. The following rules apply with respect to the required SEPARATE CHARACTER phrase:
a) The letter S in a PICTURE character-string is counted in determining the size of the
item.
b) The operational sign will be presumed to be the leading (or, respectively, trailing)
character position of the elementary numeric data item; this character position is not
a digit position.
U41112-J-Z125-1-76 665
SIGN clause Report Writer/Data Division
c) The operational signs for positive and negative are the standard data format
characters + and -, respectively.
2. Every numeric data description entry whose PICTURE character-string contains the
character S is a signed numeric data description entry. If a SIGN clause applies to such
an entry and conversion is necessary for purposes of computation or comparisons,
conversion takes place automatically.
666 U41112-J-Z125-1-76
Report Writer/Data Division USAGE clause
USAGE clause
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
[USAGE IS] DISPLAY
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
In the REPORT SECTION, the USAGE clause is only used in order to specify the data
format of printable elementary items.
For further syntax rules and general rules relating to USAGE IS DISPLAY, see "USAGE
clause", (page 285).
U41112-J-Z125-1-76 667
SOURCE clause Report Writer/Data Division
SOURCE clause
Function
The SOURCE clause identifies the data item whose contents the Report Writer (by an
implicit MOVE statement) will move to the printable item whose description includes the
SOURCE clause, when this item is to be printed.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SOURCE IS identifier
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rule
Any identifier defined in any section of the Data Division may be specified in a SOURCE
clause. In the case of the REPORT SECTION, however, a SOURCE clause may use
only the PAGE-COUNTER special register, the LINE-COUNTER special register, or a
sum counter if it is associated with the report in whose description the SOURCE clause
appears.
General rules
1. The description of an elementary item containing a SOURCE clause must also contain
a COLUMN clause, that is, the field must be printable.
2. The SOURCE clause in conjunction with the COLUMN clause generates an implicit
MOVE statement. For this MOVE statement, the source (or sending) field is defined by
the identifier from the SOURCE clause. The receiving field is the printable item whose
description includes the SOURCE clause. The picture strings of the PICTURE clauses
of the two fields must adhere to the rules for sending items in the MOVE statement (see
page 434).
3. As the SOURCE clause can never change the value of the data item it specifies, it may
also refer to a control data item. Generally, the system prints the value of the sending
field as it is when the MOVE statement is executed (creation of the associated report
group). If the previous values of the control break data items are in control footings,
Function 1 of the CBL-CTR special register (see page 691) should be used.
668 U41112-J-Z125-1-76
Report Writer/Data Division SOURCE clause
Example 10-7
FILE SECTION.
...
02 DEPT PIC XXX.
...
REPORT SECTION.
...
02 COLUMN 19 PIC XXX SOURCE DEPT.
...
The SOURCE clause has the effect that the value in the data item DEPT is moved to the
printable item concerned when the associated report group is printed.
U41112-J-Z125-1-76 669
SUM clause Report Writer/Data Division
SUM clause
Function
The SUM clause instructs the Report Writer to create and (immediately or subsequently)
print arithmetic sums of data items selected from the detailed information that constitutes
the report. The SUM clause indicates to the Report Writer the addends which are to be
used for summation. In addition, this clause provides a numeric item, which is generated
automatically, for the accumulation of the addends. This field, i.e. the sum counter, is also
the sending field (source item) for the implicit MOVE statement used to edit the printable
field whose description contains the SUM clause.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SUM {identifier-1}... [UPON data-name-1]
data-name-2
RESET ON
FINAL
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
670 U41112-J-Z125-1-76
Report Writer/Data Division SUM clause
General rules
U41112-J-Z125-1-76 671
SUM clause Report Writer/Data Division
summation (see under 5. "Detail summation") immediately following the control break
test and the action resulting from that test, the sum of the cost figures for January 2 is
printed out with the control group footing for DAY. When the control footings are created,
the sum counter is finally reset to zero, as the SUM clause contains no RESET phrase.
2. Use of the PICTURE clause
If the description of a data item, within a given report group entry, includes a SUM
clause, the associated PICTURE clause describes not only the data item but also the
sum counter which the compiler will establish due to the SUM clause. The data item, if
printable, is used for printing out the contents of the associated sum counter. The
PICTURE clause must define the data item as a numeric or numeric-edited data item,
where editing symbols for sum counters will be ignored.
3. Use of the sum counter
If the data item entry that contains a SUM clause has a data-name immediately
following the level-number, that data-name is the name of the internal sum counter,
which can thus be accessed by the programmer (for example, for rounding its contents
prior to printing). The sum counter is a compiler-generated data item whose USAGE is
COMP-3 and whose numeric characteristics are described in the specified PICTURE
clause.
4. Types of summation
The programmer can specify three types of summation:
detail-incrementing, rolling forward, and crossfooting.
5. Detail-incrementing
The time at which the Report Writer adds up an addend (identifier-1... from the SUM
clause) in the related sum counter depends on the addend itself.
The addends used for detail-incrementing are those which are not themselves sum
counters, in other words, are defined outside the REPORT SECTION.
Detail-incrementing is the basis for the other two types of summation. The term "detail-
incrementing" derives from the fact that typically the addends involved in it are printed
with the detail groups of the report.
Detail-incrementing occurs each time that GENERATE statements are executed.
Therefore, the programmer must ensure that the operands used for detail-incrementing
contain the required values at the time that GENERATE statements are executed. If a
SUM clause uses the UPON phrase, the addends in that SUM clause are added into
their sum counter only when this detail-incrementing operation takes place in executing
a GENERATE statement referring to the same detail group as the UPON phrase (there
is, therefore, no point in using the UPON phrase for a summary report). However, if the
672 U41112-J-Z125-1-76
Report Writer/Data Division SUM clause
SUM clause does not include the UPON phrase, then those addends which are not
defined as sum counters are added to their related sum counters when any GENERATE
statement for the report is executed (detail-incrementing).
The Report Writer performs detail-incrementing only after taking certain actions as
regards control break (test; creation of the control footings and headings if test is
positive). This control break processing also includes resetting the sum counters to zero
after creating the control footing whose description contains the corresponding SUM
clauses (see "RESET phrase", page 676). This ensures that the printed sum will contain
only the values of the addends for the particular series of detail groups which is
concluded by the associated control footing (for example, the sum of the cost figures for
January 2).
6. Rolling-forward (hierarchical summation)
The prerequisite for this kind of summation is that a SUM clause of a control footing
must specify as an addend at least one sum counter which was defined as the result of
a SUM clause of a hierarchically lower (that is, less inclusive) control footing. Therefore,
rolling-forward cannot be designated unless a report description includes at least two
control footings whose descriptions each contain at least one SUM clause.
The contents of a sum counter which is specified as an addend in the SUM clause of
another control footing will be added, at the time the associated (hierarchically lower)
control footing is generated, to the contents of the sum counter in whose SUM clause it
appears as an addend.
Example 10-8 illustrates rolling forward:
U41112-J-Z125-1-76 673
SUM clause Report Writer/Data Division
Example 10-8
01 ... TYPE CONTROL FOOTING MONTH.
02 ...
.
.
02 SUM-MONTH COLUMN 46 PICTURE $$$9.99 SUM
SUM-DAY.
In the above control footing description, the rolling-forward function is specified in
conjunction with the following control footing description (see example 10-7):
01 ... TYPE CONTROL FOOTING WDAY.
02 ...
.
.
02 SUM-DAY COLUMN 49 PICTURE $$$9.99 SUM COST.
For each creation of the control footing with the control item DAY, the Report Writer adds
the contents of the sum counter SUM-DAY to the contents of the sum counter SUM-
MONTH, before resetting SUM-DAY to zero. If either a control break or execution of a
TERMINATE statement causes the control footing to be generated with MONTH, the
sum counter SUM-MONTH (before resetting to zero) will contain the sum of all day-
sums (values of SUM-DAY at summation times) of the current month.
7. Crossfooting (adding hierarchically equal sums)
This type of summation takes place when a SUM clause contains, as addends, the
names of sum counters defined by other SUM clauses in the same control footing.
Normally, such addends are sum counters whose values are created through detail-
incrementing.
Example 10-9
01 MINOR TYPE CONTROL FOOTING...
02 SUM-1 SUM WORKING-ITEM-1...
02 SUM-2 SUM WORKING-ITEM-2...
02 SUM SUM SUM-1 SUM-2...
WORKING-ITEM-1 and WORKING-ITEM-2 are data items defined in the WORKING-
STORAGE SECTION of the Data Division. Sum counter SUM accumulates the values
of SUM-1 and SUM-2, previously generated through detail-incrementing.
The Report Writer performs crossfooting just before printing the control footing
concerned. If more than one SUM clause requires such addition, the order of execution
is determined by the sequence of these SUM clauses. This order is essential to the
result of the addition.
Obviously, this type of addition is carried out before rolling-forward, thereby ensuring
that sums hierarchically equivalent in summation may also be rolled forward.
674 U41112-J-Z125-1-76
Report Writer/Data Division SUM clause
Example 10-10
...
CONTROLS ARE STATE, CITY.
...
...
The values accumulated in sum counter SUM-CITY by crossfooting the values from the
hierarchically equivalent sum counters SUM-1 and SUM-2 (detail-incrementing) are
rolled forward in sum counter SUM-STATE (the control footing with STATE is higher in
hierarchy than the control footing with CITY). This is possible only because the sum
counter SUM-CITY contains the proper value before rolling-forward takes place in the
sum counter SUM-STATE.
8. Mixing operands
A SUM clause that does not contain an UPON phrase may include one or more of each
of the following kinds of operands (= addends):
a) Operands defined in the FILE SECTION, WORKING-STORAGE SECTION,
LOCAL-STORAGE SECTION or LINKAGE SECTION.
b) Operands defined as sum counters in a hierarchically inferior control footing.
c) Operands defined as sum counters in the same control footing (whose description
contains the SUM clause).
Summing for each of the above kinds of operands occurs at the times indicated in
the preceding discussions.
9. Use of the UPON phrase
a) When an UPON phrase is used in a SUM clause, all addends of that clause must
be defined outside the REPORT SECTION; that is, they may be defined only in the
FILE SECTION, WORKING-STORAGE SECTION, LOCAL- STORAGE SECTION
and LINKAGE SECTION.
b) The UPON phrase has the effect of preventing detail-incrementing of the addends
from the present SUM clause, unless a GENERATE statement is executed speci-
fying the detail report group indicating in the UPON phrase. A detail-incrementing
caused by any other GENERATE statement will not, therefore, affect any of the
addends in the SUM clause in question.
U41112-J-Z125-1-76 675
SUM clause Report Writer/Data Division
Example 10-11
DATA DIVISION:
FILE SECTION.
FD INFILE...
...
RECORDS ARE MUELLER, MEIER.
01 MUELLER PICTURE 999.
01 MEIER PICTURE 9999.
REPORT SECTION.
...
01 MUELLER-DETAIL TYPE DETAIL.
02 LINE PLUS 1 COLUMN 1 PIC 999 SOURCE MUELLER.
01 MEIER-DETAIL TYPE DETAIL.
02 LINE PLUS 1 COLUMN 1 PIC 9999 SOURCE MEIER.
...
01 MINOR TYPE CONTROL FOOTING...
02 SUMME-1 SUM MUELLER UPON MUELLER-DETAIL...
02 SUMME-2 SUM MEIER UPON MEIER-DETAIL...
...
PROCEDURE DIVISION.
...
GENERATE MUELLER-DETAIL.
...
GENERATE MEIER-DETAIL.
Because MUELLER and MEIER are the names of two different records on the same
file, they cannot be available in memory concurrently. When a MUELLER record is read,
the statement GENERATE MUELLER-DETAIL is executed; at that time, the current
value of MUELLER is added to sum counter SUM-1. The present value of MEIER, on
the other hand, is not added to the contents of sum counter SUM-2 at this time. When
a MEIER record is read, the statement GENERATE MEIER-DETAIL is executed; at this
time, the detail-incrementing occurs in sum counter SUM-2, and not in SUM-1.
10. Use of the RESET phrase
a) Only a data-name (FINAL included) supplied in the CONTROL clause of the same
report may be used in a RESET phrase. Moreover, the control data item must be at
a higher level in hierarchy than the control footing whose description contains the
RESET phrase.
b) Normally, the Report Writer resets a sum counter to zero immediately after printing
the control footing in whose description it is defined. A sum counter whose SUM
clause contains the RESET phrase will be reset to zero only at a time when the
(explicit or implicit) control footing for the control data item (or FINAL) that appears
in the RESET phrase, is (or would be) created. Thus, the RESET phrase serves the
purpose of creating a total for the specified hierarchical level.
676 U41112-J-Z125-1-76
Report Writer/Data Division SUM clause
Example 10-12
01 ... TYPE CONTROL FOOTING DAY.
02 ...
.
.
02 COLUMN 65 PIC $$$$9.99 SUM COST RESET ON FINAL.
01 ... TYPE CONTROL FOOTING FINAL.
02 ...
.
.
02 COLUMN 45 PIC $$$$9.99 SUM SUM-DAY.
Because the SUM clause in the description of the control footing with the control item
DAY contains the phrase RESET ON FINAL, the current value of the associated sum
counter is printed every time the control footing of DAY is generated, without ever
resetting the sum counter to zero. Only when the control footing for FINAL is generated
will the sum counter be reset to zero. Therefore, each printed control footing for DAY
shows the running cost figures from the first detail report group of the report (1st day)
through to the last detail report group written before the current control heading.
A control data item that appears in a RESET phrase does not have to be associated
with a control footing. A sum counter will be reset, as mentioned earlier, even when no
control footing exists for a control item specified in a RESET entry.
11. Actions taken by the Report Writer
When generating a control footing, the Report Writer executes the following steps
(schematically speaking, because steps may be omitted):
a) Adding hierarchically equivalent sums (crossfooting).
b) Execution of the USE BEFORE REPORTING procedures for the control footing
(see page 686).
c) PRINT SWITCH test.
If the value of the PRINT SWITCH special register is 1, step d) is skipped, i.e. step
e) immediately follows step c) after resetting the special register to zero. Otherwise,
step d) comes next.
d) Creation of the control footing (if printable).
e) Hierarchical incrementing (rolling-forward).
f) Any sum counters of the control footings whose SUM clauses do not contain
RESET phrases are reset to zeros by implicit MOVE statements. The same applies
to all those sum counters of the other control footings whose SUM clauses each
contain one such RESET phrase which is referring to the control data item
associated with the current (i.e. newly-created) control footing.
U41112-J-Z125-1-76 677
TYPE clause Report Writer/Data Division
TYPE clause
Function
The TYPE clause indicates the type of the report group in whose description it appears; that
is, it defines the functional characteristics of the report group, thereby also specifying the
circumstances under which the Report Writer will generate that report group.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
REPORT HEADING
RH
PAGE HEADING
PH
DETAIL
TYPE IS
DE
PAGE FOOTING
PF
REPORT FOOTING
RF
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
678 U41112-J-Z125-1-76
Report Writer/Data Division TYPE clause
4. PAGE HEADING indicates a report group which is created as the first group on every
page. A page which is wholly reserved for the report heading or report footing is not
assigned a page heading. If a report heading is present but does not appear on a page
by itself, the page heading is generated as the second group on the first page of the
report.
5. CONTROL HEADING indicates report groups which are written in series when
executing the (chronologically) first GENERATE statement and upon every control
break. Each control heading is associated (by FINAL or data-name-1) with one, and
only one, hierarchical level, which determines the order in which the control headings
are printed (see "CONTROL clause", page 639).
6. DETAIL indicates those report groups which are written because they are supplied in a
GENERATE statement. The name of a detail group must be unique throughout the
report.
7. CONTROL FOOTING indicates those report groups which are written in series upon
every control break and when the TERMINATE statement is executed. Each control
footing is associated (by FINAL or data-name-2) with one, and only one, hierarchical
level, which determines the order in which the control footings are printed (see
"CONTROL clause", page 639).
8. PAGE FOOTING indicates the report group which is generated as the last group of each
report page. Any page that is wholly reserved for the report heading or report footing is
not assigned a page footing. If the report footing does not appear on a page by itself,
the page footing is generated as the last but one group on the last page of the report.
9. REPORT FOOTING indicates a report group that is produced only once, as the last
group in the report. The report footing is the last group printed when the TERMINATE
statement is executed.
General rules
U41112-J-Z125-1-76 679
TYPE clause Report Writer/Data Division
– On the first page of the report, the page heading is preceded by the report heading
in those cases where the report heading is not to appear on a page by itself.
– The page footing of the last page of the report is followed by the report footing in
those cases where the report footing is not to appear on a page by itself.
3. Rules for control headings and control footings
a) Only one control heading and one control footing may be specified for each level of
hierarchy.
b) Control headings and control footings are printed at the following times:
– When the first GENERATE statement for a report is executed, the Report Writer
prints the entire hierarchy of control heading report groups (in the order highest
level first, lowest level last) before printing the detail group as the immediate
product of the GENERATE statement.
– If the Report Writer detects a control break when executing one of the (chrono-
logically) next GENERATE statements, it creates the appropriate series of
control footings and control headings before the detail groups directly refer-
enced by the current GENERATE statement (see "GENERATE statement",
page 682 and "CONTROL clause", page 639).
– When production of a report ends by execution of the TERMINATE statement,
the Report Writer generates all control footings in increasing order of hierarchy
levels.
– FINAL, data-name-1 or data-name-2 specified in the TYPE clause of a control
heading or control footing must appear in the CONTROL clause of the associated
report description entry.
– A control heading or control footing associated with FINAL may only be generated
once for each report, as the first body group of the report (execution of the first GEN-
ERATE statement) or as the last (execution of the TERMINATE statement).
4. Rules for detail report groups
The Report Writer generates a detail report group only when it is specified in a
GENERATE statement and when this GENERATE statement is executed. At least one
detail report group must be defined for each report. This is true, even if the detail report
group is not explicitly used for generating the report; that is, even if it is mainly a
summary report without going into details (that is, detail report groups) (see
"GENERATE statement", page 682).
680 U41112-J-Z125-1-76
Report Writer/Data Division TYPE clause
U41112-J-Z125-1-76 681
GENERATE statement Report Writer/Procedure Division
GENERATE statement
Function
The GENERATE statement directs the Report Writer to produce a portion of the report in
accordance with the report description specified in the REPORT SECTION of the Data
Division.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
data-name
GENERATE
report-name
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
1. data-name must be defined in the REPORT SECTION of the Data Division, as the
name of a detail report group (01-level entry).
2. The report-name must be defined as such (RD entry) in a report description entry of the
REPORT SECTION in the Data Division.
3. As the result of a GENERATE statement referring to a detail report group, part of the
report printed (see rule 5).
4. As the result of a GENERATE statement referring to a report-name, part of a report is
printed (see rule 8).
5. As the result of a GENERATE statement referring to a detail report group, the Report
Writer generates part of the report. The composition of this portion is indicated in syntax
rules 6 and 7. In addition, various summations are generally executed (see "SUM
clause", page 670).
6. When executing the (chronologically) first GENERATE statement (relative to the
execution of the related INITIATE statement), the following report groups (if defined) will
be printed, provided this statement specifies a detail report group:
a) report heading
b) page heading
c) all control headings from the highest to the lowest levels of hierarchy, and
d) the detail report group specified in the GENERATE statement.
682 U41112-J-Z125-1-76
Report Writer/Procedure Division GENERATE statement
General rules
1. At the time of executing a GENERATE statement which specifies a detail report group,
the following information must be available to the Report Writer:
a) All of the SOURCE clause information assigned to the detail report group and all
other report groups to be created by the GENERATE statement.
b) The numeric data of those addends the Report Writer needs to accumulate the
necessary sums.
2. Summary report printing is meaningful only for those reports for which control footings,
too, are defined whose descriptions include SUM clauses.
3. Summary reporting should not be attempted for reports whose descriptions contain
more than one detail report group because it does not allow relations to be established
to the individual detail report groups.
4. The CBL-CTR special register (see page 691) is interrogated by the Report Writer at
the time of the (chronologically) first GENERATE statement. By using the MOVE
statement to supply one of several defined values to this special register any time
between the execution of the INITIATE statement and the (chronologically) first
GENERATE statement, the programmer can select one or both of the following Report
Writer options:
a) Supply appropriate control data item values to the control footings, the page footing
and the page heading.
b) Condition execution of the NEXT GROUP clauses in the control footings (see "CBL-
CTR special register", page 691).
U41112-J-Z125-1-76 683
INITIATE statement Report Writer/Procedure Division
INITIATE statement
Function
The INITIATE statement causes the Report Writer to begin the processing of one or more
reports.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
INITIATE {report-name-1}...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. The INITIATE statement does not open the file the named report is associated with.
This report file, which is defined as a sequential output file, must therefore be OPENed
as OUTPUT before execution of the INITIATE statement.
2. If an INITIATE statement is followed by a second (different) INITIATE statement speci-
fying the same report as the first one, an intervening TERMINATE statement must first
be executed for this report.
3. If an INITIATE and a TERMINATE statement were executed for a given report without
an intervening GENERATE statement, the TERMINATE statement cancels the
INITIATE statement without printing the report (or any portion thereof).
4. Following execution of the INITIATE statement, and prior to execution of the (chronolog-
ically) first GENERATE statement, the programmer may select certain optional
functions of the Report Writer by using the MOVE statement to supply the proper value
to the CBT-CTR special register (see page 691).
684 U41112-J-Z125-1-76
Report Writer/Procedure Division TERMINATE statement
TERMINATE statement
Function
The TERMINATE statement instructs the Report Writer to complete the processing for the
specified reports.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
TERMINATE {report-name-1}...
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
U41112-J-Z125-1-76 685
USE BEFORE REPORTING statement Report Writer/Procedure Division
Function
The USE BEFORE REPORTING statement introduces Procedure Division statements that
are to be executed just before the specified report group is printed by the Report Writer.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
USE [GLOBAL] BEFORE REPORTING report-group-name.
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
General rules
1. The name of a given report group may be specified in one declarative section only.
2. The INITIATE, GENERATE, EXIT PROGRAM, GOBACK, CANCEL and TERMINATE
statements must not appear in a paragraph within any declarative section.
3. A USE BEFORE REPORTING procedure must not alter the value of any control data
item, nor any value of the subscripts used by the Report Writer to access the control
data item.
686 U41112-J-Z125-1-76
Report Writer/Procedure Division USE BEFORE REPORTING statement
4. The rules on references between a USE BEFORE REPORTING declarative and the
remainder of the Procedure Division are the same as for other USE procedures.
5. The following are typical applications of USE BEFORE REPORTING procedures:
a) Suppressing the printing of a report group:
If the statement MOVE 1 TO PRINT-SWITCH is executed in a USE BEFORE
REPORTING declarative, the Report Writer will not print the report group the USE
procedure was associated with. Since the Report Writer always resets the PRINT-
SWITCH special register (see page 690) to zero immediately after suppressing the
report group, this register must be set to 1 again each time that printing is to be
suppressed; with report groups that are written automatically, this can only be done
by means of USE BEFORE REPORTING declaratives.
b) Modifying the contents of a data item specified in a SOURCE clause:
In editing a line with a printable item whose description includes a SOURCE clause,
the contents of the item defined by the SOURCE clause is transferred to the
printable item by means of an implicit MOVE statement. A USE BEFORE
REPORTING procedure may be used to modify the contents of the sending field
just prior to the execution of the implicit MOVE statement.
c) Rounding sum counters:
If the value of a sum counter is to be rounded before it is transferred to the
associated print item for editing, by an implicit MOVE statement, this can only be
achieved by means of a USE BEFORE REPORTING declarative for the control
footing in which the sum counter was defined.
d) If special actions depending on the level within the control hierarchy at which a
control break has occurred are to be taken before writing a page heading, control
heading, control footing, or page footing, this can only be effected via USE BEFORE
REPORTING declaratives for this report group, owing to their automatic generation
(see "SOURCE clause", page 668 and "CBL-CTR special register", page 691).
U41112-J-Z125-1-76 687
LINE-COUNTER Report Writer/Special registers
688 U41112-J-Z125-1-76
Report Writer/Special registers PAGE-COUNTER
U41112-J-Z125-1-76 689
PRINT-SWITCH Report Writer/Special registers
690 U41112-J-Z125-1-76
Report Writer/Special registers CBL-CTR
The corresponding MOVE statement must be executed after the INITIATE statement for the
report but before the (chronologically) first GENERATE statement. This is the only time that
the programmer is permitted to change the value of the CBL-CTR special register.
If two or more reports are defined in the REPORT SECTION, each reference to CBL-CTR
must be qualified by the report-name.
U41112-J-Z125-1-76 691
CBL-CTR Report Writer/Special registers
a) Restoration of the previous values of the control data items in control foot-
ings.
Part 1 of function 1 makes previous values of control data items available to control
footing SOURCE clauses or control footing USE BEFORE REPORTING declara-
tives.
SOURCE clauses (or USE BEFORE REPORTING declaratives) in control footings
referring to control data items produce a problem. At the time the control footings
are printed, some or all of the specified control data items have changed values.
However, since the control footings printed because of a control break obviously
belong to the precontrol break values, it is often desirable that the previous values
(i.e. prior to the control break) should be printed. When function 1 of CBL-CTR is
requested, these previous values of the control data items will be obtained by
SOURCE clauses (or USE BEFORE REPORTING declaratives) of control footings.
For example, assume that the item MONTH-NAME is defined as a control data item
for a report and that the control footing MONTH-FOOTING is defined as follows:
01 MONTH-FOOTING TYPE CONTROL FOOTING
MONTH-NAME LINE PLUS 1.
02 COLUMN 10 PIC X(21) VALUE "***** END OF DATA FOR".
02 COLUMN 33 PIC X(9) SOURCE MONTH-NAME.
In this case, the programmer wants the following control footing to be printed after
all of the JANUARY data has been printed in the detail lines of the report:
***** END OF DATA FOR JANUARY.
Since the above control footing was printed because the item MONTH-NAME
changed from JANUARY to FEBRUARY, FEBRUARY (the current contents) would
be printed rather than JANUARY. By requesting function 1, the programmer can
cause the prior value (JANUARY) to be printed instead of FEBRUARY.
692 U41112-J-Z125-1-76
Report Writer/Special registers CBL-CTR
U41112-J-Z125-1-76 693
CBL-CTR Report Writer/Special registers
The meanings of CBL-CTR values in USE declaratives for the page footing and
control footings are listed below in Table 10-5.
Value Meaning
0 Indicates the final stage of processing, i.e. the TERMINATE statement is being
executed.
1-254 Indicates that the control data item with the corresponding number has just
changed values, and that actions currently taking place were caused by this
control break.
255 Indicates that no control break has occurred (cannot be encountered with
control footing USE procedures).
Table 10-5: CBL-CTR values in USE procedures for page footings and control listings
694 U41112-J-Z125-1-76
11 Language elements and general concepts
Sequential organization
When sequential file organization is used, the logical records are placed on the file or read
sequentially either forwards or backwards (REVERSED) in the order in which they were
generated.
This type of file organization must be used for magnetic tape or unit record files and may be
used for disk storage files. Sequentially organized files require no key for record processing.
U41112-J-Z125-1-76 695
I-O status Sequential file organization
I-O status
The I-O status is a value that can be used in a COBOL program to check the status of an
input/output operation. In order to do this, the FILE STATUS clause must be specified in the
FILE CONTROL paragraph of the Environment Division.
The I-O status value is transferred to a two-character data item
– during the execution of a CLOSE, OPEN, READ, REWRITE, or WRITE statement,
– prior to the execution of any associated imperative statement, and
– prior to the execution of any corresponding USE AFTER STANDARD EXCEPTION
procedure.
The table below shows the I-O status values and their meanings:
I-O status Meaning
Execution successful
00 The I-O statement terminated normally. No further information regarding the I-O
operation is available.
04 Record length conflict: A READ statement terminated normally. However, the length of
the record read lies outside the limits defined in the record description entry for this file.
05 Successful execution of an OPEN INPUT/I-O/EXTEND on a file; however, the refer-
enced file indicated by the OPTIONAL phrase was not present at the time the OPEN
statement was executed.
07 1. Successful OPEN statement with NO REWIND clause on a file that is on a UNIT-
RECORD medium.
2. Successful CLOSE statement with NO REWIND, REEL/UNIT, or FOR REMOVAL
clause on a file that is on a UNIT-RECORD medium.
Execution unsuccessful: at end condition
10 An attempt was made to execute a READ statement.
However, no next logical record existed, because the end-of-file was encountered.
A sequential READ statement with the OPTIONAL phrase was attempted for the first
time on a nonexistent file.
Execution unsuccessful: unrecoverable error
30 1. No further information regarding the I-O operation is available (the DMS code
provides further information).
2. In the case of line sequential processing: unsuccessful attempt to access PLAM
item
34 An attempt was made to write outside the sequential file boundaries set by the system.
35 An OPEN statement with the INPUT/I-O/EXTEND phrase was attempted on a
nonexistent file.
696 U41112-J-Z125-1-76
Sequential file organization I-O status
U41112-J-Z125-1-76 697
I-O status Sequential file organization
698 U41112-J-Z125-1-76
Relative file organization I-O status
Relative organization
When using relative file organization, the location of each record in a relative file is deter-
mined by means of a relative record number, i.e. an integer value greater than zero, which
specifies the position of that record within the logical sequence of the file. The record
number is predefined by the user in a relative key field. The file may be seen as a serial
sequence of areas, each of which contains one logical record. Each of these areas is
identified by a relative record number. Storage and retrieval of the records is accomplished
on the basis of that number. For example, the tenth record is referenced through the relative
record number 10 and is located in the tenth record area, whether or not records have been
written in any of the record areas 1 to 9. Relative file organization is permitted for disk
storage files only.
U41112-J-Z125-1-76 699
I-O status Relative file organization
700 U41112-J-Z125-1-76
Relative file organization I-O status
I-O status
The I-O status is a value that can be used in a COBOL program to check the status of an
input/output operation. In order to do this, the FILE STATUS clause must be specified in the
FILE CONTROL paragraph of the Environment Division.
The I-O status value is transferred to a two-character data item
– during the execution of a CLOSE, OPEN, READ, REWRITE, or WRITE statement,
– prior to the execution of any associated imperative statement, and
– prior to the execution of any corresponding USE AFTER STANDARD EXCEPTION pro-
cedure.
The table below shows the I-O status values and their meanings:
I-O status Meaning
Execution successful
00 The I-O statement terminated normally.
No further information regarding the I-O operation is available.
04 Record length conflict: A READ statement was executed success- fully, but the length
of the record which was read does not lie within the limits specified in the record
description for the file.
Successful OPEN INPUT/I-O/EXTEND for a file with the OPTIONAL phrase in the
SELECT clause that was not present at the time of execution of the OPEN statement.
Execution unsuccessful: at end condition
10 An attempt was made to execute a READ statement. However, no next logical record
was available, since the end-of-file was encountered (sequential READ).
A first attempt was made to execute a READ statement for a non-existent file which is
specified as OPTIONAL.
14 An attempt was made to execute a READ statement.
However, the data item described by RELATIVE KEY is too small to accommodate the
relative record number. (sequential READ).
Execution unsuccessful: invalid key condition
22 Duplicate key
An attempt was made to execute a WRITE statement with a key for which there is
already a record in the file.
23 Record not located or zero record key
An attempt was made (using a READ, START, DELETE or REWRITE statement with a
key) to access a record not contained in the file, or the access was effected with a zero
record key.
U41112-J-Z125-1-76 701
I-O status Relative file organization
702 U41112-J-Z125-1-76
Relative file organization I-O status
U41112-J-Z125-1-76 703
I-O status Indexed file organization
Indexed organization
When indexed file organization is used, the position of each logical record in the file is deter-
mined by indices which are generated with the file and are maintained by the system. These
indices are based on keys which must be supplied by the user in the records. Indexed files
must be assigned to disk storage devices.
The RECORD KEY clause must be specified when creating an indexed file. This clause
defines which data item within the record is to be used as the primary key.
The ALTERNATE RECORD KEY clause can be used to define one or more alternate keys
(secondary keys) in addition to the primary key.
The START statement can be used to define a starting point, within an indexed file, for a
series of subsequent sequential access operations.
704 U41112-J-Z125-1-76
Indexed file organization I-O status
I-O status
The I-O status is a value that can be used in a COBOL program to check the status of an
input/output operation. In order to do this, the FILE STATUS clause must be specified in the
FILE CONTROL paragraph of the Environment Division.
The I-O status value is transferred to a two-character data item
– during the execution of a CLOSE, OPEN, READ, REWRITE, or WRITE statement,
– prior to the execution of any associated imperative statement, and
– prior to the execution of any corresponding USE AFTER STANDARD EXCEPTION pro-
cedure.
The table below shows I-O status values and their meanings:
I-O status Meaning
Execution successful
00 The I-O statement terminated normally. No further information regarding the I-O
operation is available.
02 A record was read with ALTERNATE KEY and subsequent sequential reading with the
same key has found at least one record with an identical key.
A record was written with ALTERNATE KEY WITH DUPLICATES and there is already
a record with an identical key value for at least one alternate key.
04 Record length conflict: A READ statement terminated normally.
However, the length of the record read lies outside the limits defined in the record
description entry for the given file.
05 An OPEN statement was executed for an OPTIONAL file which does not exist.
Execution unsuccessful: at end condition
10 An attempt was made to execute a sequential READ operation. However, no next
logical record was available, as the end-of-file was encountered.
Execution unsuccessful: invalid key condition
21 File sequence error in conjunction with ACCESS MODE IS SEQUENTIAL:
1. The record key value was changed between the successful execution of a READ
statement and the execution of the next REWRITE statement for a file, or
2. the ascending sequence of record keys was violated in successive WRITE state-
ments.
U41112-J-Z125-1-76 705
I-O status Indexed file organization
706 U41112-J-Z125-1-76
Indexed file organization I-O status
U41112-J-Z125-1-76 707
Input/output statements
Note
The description of input/output statements for sequentially organized files uses the
expressions "volume" and "reel". Volume may be used for all input/output devices; reel
is applicable to magnetic tape devices only. The handling of disk storage files with
sequential access is logically equivalent to the handling of magnetic tape files.
Overview
Statement Function
CLOSE Terminates processing of a file
DELETE Deletes a record
OPEN Opens a file for processing
READ Reads a record
REWRITE Replaces a record
START Positions within a file
USE In addition to input/output statements, USE statements may be supplied to spec-
ify error handling procedures (see "DECLARATIVES", page 314)
WRITE Writes a record
DELETE and START are only applicable to relative and indexed file organization.
708 U41112-J-Z125-1-76
Concepts Invalid key condition
U41112-J-Z125-1-76 709
Initial and “last-used” states Concepts
1) The program contains the clause itself or is itself contained in such a program
2) A Cancel on the program itself or any other program in which it is contained
3) Refers to the currently passed parameters
710 U41112-J-Z125-1-76
Concepts Inter-program communication
11.3.1 Concepts
A complete COBOL program that was compiled in a separate compiler run is referred to as
a separately compiled program. It can be either an individual program or the outermost
containing program of a nested program.
Nested program
A COBOL program that comprises a number of complete programs nested within one
another is referred to as a "nested program".
A program that contains further programs is referred to as a "containing program".
A program that is contained in another program is referred to as a "contained program".
The programs of a nested program can be both containing programs and contained
programs, apart from the "outermost" containing program that is treated in exactly the same
manner as a separately compiled program within the run unit.
A contained program can be contained directly or indirectly in another program.
With respect to the immediately superordinate nesting level, a contained program is directly
contained; with respect to other superordinate nesting levels it is indirectly contained.
U41112-J-Z125-1-76 711
Concepts Concepts
Example 11-1
"Sibling program"
The programs comprising a nested program that are contained on the same level of nesting
in a program are referred to as "sibling programs".
"Descendant"
Run unit
A run unit is a particular number of executable programs that act as a logical unit at run time.
A run unit may consist of
– one or more separately compiled programs,
– one or more nested programs,
– a combination of separately compiled programs and nested programs.
The program started on the system level is referred to as "main program" and all other
programs of the run unit are known as "subprograms".
712 U41112-J-Z125-1-76
Inter-program communication Control
Runtime control
Control of a run unit begins with the program that is called on the system level. Each further
program of the run unit is called by means of the CALL statement.
The CALL statement transfers program control to the called program. From there, control is
subsequently returned to the calling program by means of the EXIT PROGRAM statement.
The program is continued at the statement following the CALL statement.
The following example illustrates the logical structure of a run unit comprising five
separately compiled programs, including one nested program:
Example 11-2
Run unit
MAIN-PROG B-PROG
...
... CALL "D-PROG" D-PROG
CALL "A-PROG" A-PROG ...
EXIT PROGRAM. ...
... EXIT PROGRAM.
...
STOP RUN.
CALL "B-PROG
...
CALL "C-PROG" C-PROG
...
EXIT PROGRAM. ...
CALL "C1-PROG"
...
EXIT PROGRAM.
C1-PROG
...
END PROGRAM C1-PROG.
U41112-J-Z125-1-76 713
Program names Inter-program communication
When a program is called in a nested program, the relevant valid program name is then
selected from the sum total of all the program names present in the run unit in accordance
with the following rules of precedence:
1. The call applies to the name of a program that is directly contained in the calling
program.
2. If 1) does not apply, the call applies to a COMMON program, i.e. to a program that can
be called by its "sibling programs" and their "descendants".
3. If neither 1) nor 2) applies, the call applies to a separately compiled program of the run
unit.
714 U41112-J-Z125-1-76
Inter-program communication Program names
Example 11-3
PROGRAM-ID. A-PROG.
...
CALL "B-PROG“. B-PROG in A-PROG (rule 1)
CALL "C-PROG“. Separately compiled C-PROG (rule 3)
CALL "D-PROG“. D-PROG in A-PROG (rule 1)
PROGRAM-ID. B-PROG COMMON.
...
CALL "D-PROG“. Separately compiled D-PROG (rule 3)
CALL "C-PROG“. C-PROG in B-PROG (rule 1)
PROGRAM-ID. C-PROG.
...
CALL "B-PROG“. Separately compiled B-PROG (rule 3)
END PROGRAM C-PROG.
END PROGRAM B-PROG.
PROGRAM-ID. D-PROG.
...
CALL "B-PROG“. B-PROG in A-PROG (rule 2)
CALL "C-PROG“. Separately compiled C-PROG (rule 3)
END PROGRAM D-PROG.
END PROGRAM A-PROG.
U41112-J-Z125-1-76 715
Initial state Inter-program communication
716 U41112-J-Z125-1-76
Inter-program communication Initial state
Example 11-4
PROGRAM-ID. A-PROG.
...
CALL "B-PROG". Statement 1
CALL "B-PROG". Statement 2
...
PROGRAM-ID. B-PROG INITIAL.
...
CALL "C-PROG". Statement 3
CALL "D-PROG". Statement 4
...
PROGRAM-ID. C-PROG COMMON.
...
END PROGRAM C-PROG.
PROGRAM-ID. D-PROG.
...
CALL "C-PROG". Statement 5
CANCEL "C-PROG".
CALL "C-PROG". Statement 6
...
END PROGRAM D-PROG.
END PROGRAM B-PROG.
END PROGRAM A-PROG.
U41112-J-Z125-1-76 717
Using common data Inter-program communication
Example 11-5
A run unit comprises three programs in which certain data is defined as external. The
resulting storage occupancy is illustrated by the following diagram:
Storage area
Program A
Storage area
Program B
Storage area
Program C
Storage area
External data
All internal data, i.e. data not defined as being external, is contained only in the storage area
of the program in which it is defined. All data defined as external, on the other hand, is
contained only in the storage area for external data.
718 U41112-J-Z125-1-76
Inter-program communication Using common data
U41112-J-Z125-1-76 719
Using common data Inter-program communication
When a name is referenced, the valid name is selected from the sum total of all the names
defined in the nested program, in accordance with the following rules of precedence:
1) The referenced name is defined in the same program.
2) If 1) does not apply, the referenced name is defined as a global name in the directly su-
perordinate (next outer) program.
3) If neither 1) nor 2) applies, the referenced name is defined as a global name in the in-
directly superordinate program.
Condition 3) is checked until the data description entry of the referenced name is found
in one of the other indirectly superordinate programs, possibly in the outermost contain-
ing program.
Example 11-6
PROGRAM-ID. A-PROG.
...
01 A1 PIC X GLOBAL.
01 B1 PIC X GLOBAL.
01 C1 PIC X GLOBAL.
...
PROGRAM-ID. B-PROG.
...
01 A1 PIC X GLOBAL.
01 B1 PIC X.
...
MOVE "A" TO A1. A1 in program B-PROG (rule 1)
MOVE "B" TO B1. B1 in program B-PROG (rule 1)
MOVE "C" TO C1. C1 in program A-PROG (rule 2)
...
PROGRAM-ID. C-PROG.
...
MOVE "X" TO A1. A1 in program B-PROG (rule 2)
MOVE "Y" TO B1. B1 in program A-PROG (rule 3)
MOVE "Z" TO C1. C1 in program A-PROG (rule 3)
...
END PROGRAM C-PROG.
END PROGRAM B-PROG.
END PROGRAM A-PROG.
720 U41112-J-Z125-1-76
Inter-program communication Language elements
11.3.7 Overview
The language elements relevant to inter-program communication are summarized in the
following table:
U41112-J-Z125-1-76 721
Sorting and merging of files Sorting records
Sort processing
The user can sort a file on the basis of a series of keys. These sort keys are specified by
the user and are present in each record of the file. The records may be sorted so that all of
their keys are in ascending or in descending order, or so that some of their keys are
ascending and others are descending.
Records are sorted on a file called a sort-file. This file is defined in the Data Division in a
sort-file description (SD) entry, and in the record description associated with the SD. The
SORT statement in the Procedure Division initiates the sort operation.
Sort processing consists of:
1. Releasing all records to the sort-file.
2. Sorting the records on the sort-file.
3. Returning all records from the sort-file.
The user may either provide an input procedure to process records and transfer them to the
sort-file, or he may specify an input file containing the records to be sorted and allow the
SORT statement to transfer these records to the sort-file. Accordingly, he may either provide
an output procedure to retrieve records from the sort-file and process them further, or he
may specify an output file and allow the SORT statement to output the sorted records to this
file.
Multiple sort operations may be specified in a single program.
722 U41112-J-Z125-1-76
Sorting records Sorting and merging of files
Merge processing
The user has the capability of merging from two to 16 sorted input files with the same record
format and transferring them to an output file.
Merging takes place in a file called a sort-file. This file is defined in the Data Division within
a sort-file description (SD) entry, and in the record description associated with the SD.
Merge processing is initiated by means of the MERGE statement in the Procedure Division.
The merge operation is performed in three stages:
1. Release the records of all input files to the sort-file.
2. Merge the records in the sort-file.
3. Return all records from the sort-file.
The MERGE statement releases the records of all specified input files to the sort-file. The
user can specify an output file into which the MERGE statement returns the merged
records. In connection with returning, it is also possible to specify an output procedure. This
procedure accepts records from the sort-file and continues processing them.
Several merge operations may be specified in a single program.
U41112-J-Z125-1-76 723
Sorting and merging of files Sorting records
724 U41112-J-Z125-1-76
Sorting and merging files Language elements
U41112-J-Z125-1-76 725
Language elements Sorting and merging files
726 U41112-J-Z125-1-76
Sorting files Special registers
U41112-J-Z125-1-76 727
Special registers Sorting files
Summary
None of the special registers (except SORT-RETURN) has its value reset or set to zero by
the execution of the SORT statement. If a program contains several sorts, the programmer
must move appropriate values into the SORT-FILE-SIZE, SORT-CORE-SIZE and SORT-
MODE-SIZE registers before each sort is executed.
It should be noted that the special registers are binary items and, therefore, cannot be used
as immediate operands of ACCEPT statements.
Example 11-7
ACCEPT MODE-SIZE FROM MASTER-FILE.
MOVE MODE-SIZE TO SORT-MODE-SIZE.
Since the ACCEPT statement transfers input data from the terminal without conversion, the
MOVE statement is used to achieve conversion to COMPUTATIONAL.
728 U41112-J-Z125-1-76
Sorting files Sorting with century window
General description
This description applies both to file sorting and to table sorting. The century window is
defined in the same way as in the COBOL function YEAR-TO-YYYY. The last year belong-
ing to the window is specified relative to the current year. The specified value determines
the number of years in the future which belong to the century window. For example, the
value 50 when run in 1998 represents the period from 1949 through 2048.
A SORT special register SORT-EOW (SORT-END-OF-WINDOW) is defined to determine
the century window. It is made available in COBOL programs with the SORT or MERGE
statement, and implicitly described by the compiler with PIC(7) PACKED-DECIMAL. The
value saved in SORT-EOW must be between 0 and 99. The default value is 50.
The ASCENDING/DESCENDING phrases in the SORT and MERGE statements have
been extended to enable two-digit year numbers to be used as a SORT key depending on
a century window.
In the MERGE statement the position of the century window is determined at the start of
processing (evaluation of SORT-EOW and current year). If, for example, files are first sorted
with the SORT statement, the same century window must be selected.
Example 11-8
SORT with century window selection
IDENTIFICATION DIVISION.
PROGRAM-ID.SORTIERY.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT MASTER-FILE ASSIGN TO "MASTER-FILE".
SELECT OUTPUT-FILE ASSIGN TO "OUTPUT-FILE".
SELECT SORT-FILE ASSIGN TO "SORTWK".
DATA DIVISION.
FILE SECTION.
FD MASTER-FILE.
01 MASTER-RECORD.
02 E0 PIC X.
02 EY1 PIC 99.
02 EY2 PIC 99 USAGE PACKED-DECIMAL.
02 E3 PIC X(10).
FD OUTPUT-FILE.
01 OUTPUT-RECORD.
02 A0 PIC X.
02 AY1 PIC 99.
02 AY2 PIC 99 USAGE PACKED-DECIMAL.
02 A3 PIC X(10).
SD SORT-FILE.
01 SORT-RECORD.
02 S0 PIC X.
02 SY1 PIC 99.
U41112-J-Z125-1-76 729
Sorting with century window Sorting files
MOVE 10 TO SORT-EOW
* The keys SY1 and SY2 are handled as two-digit year
* numbers within the century window of 1909-2008:
* 06 is greater than 75
SORT SORT-FILE ASCENDING KEY-YY SY1 SY2
DESCENDING KEY S3
USING MASTER-FILE GIVING OUTPUT-FILE.
SORTEND.
STOP RUN.
730 U41112-J-Z125-1-76
Object-oriented concepts Fundamentals of object-oriented programming
Objects
An object is defined by a class and consists of a combination of data and functions. These
functions are called methods of the object. Objects communicate with one another by
exchanging messages, which in turn are sent via calls to methods.
Whenever an object is created, it is always assigned an object reference value that uniquely
identifies it for the lifetime of the object.
Classes
Classes are defined by class definitions and designate a set of objects with their attributes
and methods.
Object references
An object reference is an implicitly or explicitly defined data item. The contents of the
object reference uniquely references an object and its associated information.
Implicitly defined object references are the predefined object references and object
references returned from an object view. Explicitly defined object references are data
items defined by a data description entry specifying a USAGE OBJECT REFERENCE
clause.
U41112-J-Z125-1-76 731
Fundamentals of object-oriented programming Object-oriented concepts
A predefined object reference is an implicitly generated data item referenced by one of the
identifiers NULL, SELF or SUPER.
Object instances
Whenever a new object is to be generated, the system creates a new copy of the attributes
of the class and thus creates an object instance. The methods of the class then apply to this
new object as well.
Factory objects
In OO-COBOL, every class contains one and only one special object, the so-called factory
object, which is described by the FACTORY definition of the class. The factory object is
responsible for creating object instances (objects) of a class.
Methods
Methods are operations, functions and statements that can be executed by an object.
Inheritance
The basic idea behind inheritance is to use a class hierarchy, which is structured from the
“general” to the “special”, so that classes which are “lower” in the hierarchy can inherit the
methods and attributes from the classes above them. The concept of inheritance helps
prevent the redundant duplication of code for similar applications.
A class may inherit from more than one other class; this is called multiple inheritance.
Polymorphism
Polymorphism means that the same message sent to different objects can trigger different
actions depending on the type of object, i.e. can call different methods, provided their
interface is identical.
Interfaces
Every object has an interface consisting of the name and parameter specifications for every
method of an object, including the inherited methods.
Every class has two interfaces: one for the factory object and the other for the remaining
objects.
732 U41112-J-Z125-1-76
Object-oriented concepts Fundamentals of object-oriented programming
Conformance
Conformance is a unidirectional relation from one interface to another interface and from an
object to an interface.
Conformance is one of the underlying principles that enables fundamental features such as
inheritance and interface definitions, for example.
If there is conformance between two classes, all interfaces of one class can also be used
in the other class.
Conformance is bound to specific rules, which are generally checked at compile time. Note,
however, that if an object view is used or a method for a universal object reference is called,
this check occurs only at runtime.
Schematic examples
User program
01 aref usage object reference A a)
Output BBB
Output AAA
U41112-J-Z125-1-76 733
Fundamentals of object-oriented programming Object-oriented concepts
Notes
a) An object reference that can point to objects of class A and all classes that inherit
from it.
b) aref points to a class B object.
c) The method actually called need not be one of those available in the class specified
on defining the object reference (which would be class A and thus the method M(A)),
but will depend on the content of the object reference at the time of invoking the
method: the method is one that is available in the class of the current object and
could be either defined in the class itself or inherited from an object class.
In this case, this is the method M(B).
d) Here, aref now points to a class A object, and an “externally” identical “invoke” as in
c) produces a different output, since the current object is a different object.
Useful tips
– This example illustrates the concept of a “late binding”, since the assignment of the
current method to the method call can only occur at runtime, i.e., when the current
contents of the object reference (and thus the class in which the method is to be found)
is determined.
– This effect occurs only when a method of a super class is overwritten in an inheriting
class. Otherwise, the called method is the one from the super class.
– The important point to remember is that besides the identical method names, even the
interface of the corresponding methods must be the same (so that a subclass object
can be addressed like an object of its super class even on the part of the interface). This
is what effectively produces the conformance and a form of polymorphism.
734 U41112-J-Z125-1-76
Object-oriented concepts Fundamentals of object-oriented programming
User program
01 aref usage object reference A
Output BBB
Notes
a) The current object is a class B object.
b) Method N(A) is called here, since no local N was defined in the inheriting class B
(which is the source of the current object).
c) Executing N leads to a further method call. In this case, SELF stands for the object
with which the method was called, i.e. an object of class B.
This again results in the situation depicted in example 11-9:
The method that applies to an object of class B is the one available in class B, i.e.,
from the set {M(B), N(A)}, and does not have to be a method that is available in the
class containing the invoke with SELF (which would be from the set {M(A), N(A)}).
Useful tips
– This also represents a form of “late binding”.
– If ’no-one’ inherits from class A, then the method called with SELF is exactly the same
as the one also available in class A.
U41112-J-Z125-1-76 735
Fundamentals of object-oriented programming Object-oriented concepts
– By using SELF, methods can invoke other methods for their “current object“, which may
not exist at compile time. This feature can be very useful, since it is not always possible
to predict at compile time “who” will inherit the corresponding class in the future and
possibly replace those methods by methods of its own.
User program
01 aref usage object reference A
Output AAA
Notes
a) The current object is a C object.
b) The method must be found in the set of methods available for C objects, i.e., in
{M(C),N(B)}. Consequently, the methods defined in class B are invoked.
c) This leads to an internal method call for the same object for which method N(B) was
invoked (i.e., still the class C object). SUPER indicates that the method is now to be
found among the methods available in the super-class (for multiple inherited class-
es, the appropriate class should be defined with a class name qualification!).
This super-class is not relative to the current object, but statically refers to the class
736 U41112-J-Z125-1-76
Object-oriented concepts Fundamentals of object-oriented programming
Useful tips
– SUPER enables you to control the method selection by restricting the search to the
statically known inheritance hierarchy instead of the methods available for the current
object.
– By overwriting a method and using SUPER, it is possible to execute additional
operations with a “new” method, while retaining the same interface. Since the methods
available in each class must have unique names, and the “new” method makes the
replaced method invisible, a facility to use this overwritten method of the super-class is
required. The language element SUPER is used for this purpose.
U41112-J-Z125-1-76 737
Conformance Object-oriented concepts
11.5.2 Conformance
Conformance is bound to specific rules, which are explained in more detail below.
The term “conformance” is used in two contexts:
1. Conformance between interfaces that are either defined explicitly with the Interface
language element or given implicitly via the interface of the factory or object section of
a class definition.
As an extension to the above context, it is also possible to speak of a “conformance of
classes” if their factory and object interfaces conform to one another.
2. Conformance between the current parameters and the formal parameters of a call to a
subprogram or method.
738 U41112-J-Z125-1-76
Object-oriented concepts Conformance
5. If the returning item in a given method of interface-2 is an object reference, the corre-
sponding returning item in interface-1 must also be an object reference following these
rules:
a) If the returning item in interface-2 is a universal object reference, the corresponding
returning item in interface-1 must also be an object reference.
b) If the returning item in interface-2 is described with an interface-name that identifies
the interface int-r, the corresponding returning item in interface-1 must be either of
the following:
– an object reference for an interface that conforms to int-r
– an object reference for a class, in accordance with the following rules:
1. If a FACTORY phrase exists, the factory interface of the specified class must
be in conformance with int-r.
2. If no FACTORY phrase exists, the object interface of the specified class
must be in conformance with int-r.
c) If the returning item in interface-2 is described with a class-name, the corresponding
returning item in interface-1 must be an object reference, subject to the following
rules:
– If the returning item in interface-2 is described with the ONLY phrase, then the
returning item in interface-1 must also be described with the ONLY phrase and
the same class-name.
– If the returning item in interface-2 is described without the ONLY phrase, then
the returning item in interface-1 must also be described with the same class-
name or a subclass of that class-name.
– The presence or absence of the FACTORY phrase must be the same.
d) If the returning item in interface-2 is described with the ACTIVE-CLASS phrase, the
corresponding returning item in interface-1 must also be described with the
ACTIVE-CLASS phrase, and the presence or absence of the FACTORY phrase
must be the same.
If the description of the returning item of a method in interface-1 directly or indirectly
references interface-2, the description of the returning item of the corresponding
method in interface-2 must not directly or indirectly reference interface-1.
6. If the returning item in a given method of interface-2 is not an object reference, the
corresponding returning item must have the same PICTURE, USAGE, SIGN,
JUSTIFIED, BLANK WHEN ZERO and SYNCHRONIZED clauses. Furthermore, the
following additional condition applies:
If a decimal point appears in the Picture clause, then the same DECIMAL-POINT IS
COMMA clause must be in effect for both interface-1 and interface-2.
U41112-J-Z125-1-76 739
Conformance Object-oriented concepts
Example 11-12
Interface i1
Method X no parameters
Method Y using a with 01 a Pic 999 usage display.
Interface i2 Y
Method Y using b with 01 b Pic 9(3).
Interface i3
Method Y using c with 01 c Pic 9(4)
Method Z returning d with 01 d usage object reference i1
Interface i4
Method Z returning e with 01 e usage object reference i2
Notes
1. Interface i1 conforms with Interface i2, since method Y from i2 also exists in i1 and its
parameter definitions are the same (9(3) is equivalent to 999 and the usage display is
standard).
2. Interface i2 does not conform with Interface i1, since method X does not exist in i2.
3. Interface i3 does not conform with Interface i2 although methods from i2 are also
present in i3 because the parameters are defined differently here (9(4) instead of 9(3)).
4. Interface i3 conforms with i4, since method Z exists in both, and the returning items,
though not identical, still match: Interface i1 (from the method definition of Z in i3)
conforms with i2 (from the method definition of Z in Z in i4).
740 U41112-J-Z125-1-76
Object-oriented concepts Conformance
Parameters
The number of arguments in the calling source unit must be equal to the number of formal
parameters in the called unit, with the exception of trailing formal parameters that are
specified with an OPTIONAL phrase in the Procedure Division header of the called unit and
omitted from the list of arguments of the calling unit.
Group items
If either the formal parameter or the argument is a group item, then that argument or the
formal parameter corresponding to it must be a group item or an alphanumeric
elementary item. In this case, the formal parameter may be shorter than the current
parameter.
Elementary items
The conformance rules for elementary items depend on whether the argument is
passed BY REFERENCE, BY CONTENT or BY VALUE (phrases in the CALL or
INVOKE statement).
U41112-J-Z125-1-76 741
Conformance Object-oriented concepts
If neither the formal parameter nor the argument is of class object, the following rules apply:
1. If the called source unit is a program for which there is no entry of a program prototype
name (i.e. a program-specifier) in the REPOSITORY paragraph of the calling unit and
there is no NESTED phrase specified on the CALL statement, the formal parameter
must have the same number of character positions as the corresponding argument.
2. If the called unit is one of the following:
– a program for which there is a program-specifier in the REPOSITORY paragraph of
the calling unit,
– a program, and the NESTED phrase is specified on the CALL statement,
– a method,
then the definition of the formal parameter and that of the argument must have the same
PICTURE, USAGE, SIGN, JUSTIFIED, and BLANK WHEN ZERO clauses, with the
following additional conditions:
– If a decimal point appears in the Picture clause, then the same DECIMAL-POINT
IS COMMA clause must be in effect for both the calling and the called source unit
– If the formal parameter has the SYNCHRONIZED phrase, the current parameter
(argument) must also have the same phrase or be defined on level 01.
742 U41112-J-Z125-1-76
Object-oriented concepts Conformance
a) If the formal parameter is numeric, the conformance rules are the same as for a
COMPUTE statement with the argument as the sending operand and the corre-
sponding formal parameter as the receiving operand.
b) If the formal parameter is an index data item, the conformance rules are the same
as for a SET statement with the argument as the sending operand and the corre-
sponding formal parameter as the receiving operand.
c) Otherwise, the conformance rules are the same as for a MOVE statement with the
argument as the sending operand and the corresponding formal parameter as the
receiving operand.
Returning items
A returning item must be specified in a calling statement if and only if a returning item is
defined in the Procedure Division header of the called source unit.
Group items
If one of the operands is a group item, then the corresponding item must also be a group
item or an alphanumeric elementary item and of the same length.
Elementary items
If either of the operands is an object reference, the corresponding item must also be an
object reference, and the following rules apply:
1. If no ACTIVE-CLASS phrase is specified in the returning item of the called source unit,
the conformance rules are the same as if a SET statement were performed in the called
runtime unit with the returning item in the called source unit as the sending operand and
the corresponding returning item in the calling source unit as the receiving operand.
2. If an ACTIVE-CLASS phrase exists in the returning item of the called source unit, the
conformance rules are the same as if a SET statement were performed in the calling
runtime unit with the returning item in the called source unit as the receiving operand,
and a sending operand described with USAGE OBJECT REFERENCE as determined
by the following rules:
a) If a method is invoked with a class-name, the sending operand must be described
with the same class-name and an ONLY phrase.
b) If a method is invoked with the predefined object references SELF or SUPER, the
sending operand must be described with an ACTIVE-CLASS phrase.
c) If a method is invoked with an object reference described with an interface-name,
the sending operand must be a universal object reference.
U41112-J-Z125-1-76 743
Conformance Object-oriented concepts
d) If a method is invoked with any other object reference, this identifier is used as the
sending operand, including the ONLY phrase if specified.
e) If the sending operand selected by applying the above rules is described with
a class-name or an ACTIVE-CLASS phrase, the presence or absence of the
FACTORY phrase must be the same as in the returning item of the called source
unit.
f) If the operands are not object references, then rule b) given under ’Elementary
items passed BY REFERENCE’ applies.
744 U41112-J-Z125-1-76
Object-oriented concepts Conformance
New method
The New method is a factory method that provides a standard mechanism for creating
object instances of a class. Described with COBOL semantics, the interface for the New
method is as follows:
Interface-id. BaseFactoryInterface.
Procedure division.
Method-id. New.
Data division.
Linkage section.
01 outObject usage object reference active-class.
Procedure division returning outObject.
End-method New.
End Interface BaseFactoryInterface.
General rules
1. The New method allocates storage for an object and initializes its data. An object is in
the initial state immediately after it is created.
2. If there is not enough storage to create a new object, execution is aborted.
3. The New method cannot be overridden with OVERRIDE.
FactoryObject method
FactoryObject is an object method that provides a standard mechanism for acquiring
access to the factory object of a class. Described with COBOL semantics, the interface for
the FactoryObject method is as follows:
U41112-J-Z125-1-76 745
Conformance Object-oriented concepts
Interface-id. BaseInterface.
Procedure division.
Method-id. FactoryObject.
Data division.
Linkage section.
01 outFactory usage object reference factory of active-class.
Procedure division returning outFactory.
End method FactoryObject.
End Interface BaseInterface.
General rules
When the FactoryObject method is invoked for an object, it determines the class of the
object and returns a reference to the factory object associated with that class.
Note
The FactoryObject method is useful when one does not know the class of an object. If the
class is known, one can access the methods of a factory object as follows:
invoke classname ’xyFactoryMethodName’
If the class of an object is unknown, then the coding below may be used to invoke one of its
factory methods:
invoke ObjectA ’FactoryObject’ returning FactoryObjectN
invoke FactoryObjectN ’xyFactoryMethodName’
746 U41112-J-Z125-1-76
Concepts Debugging
11.6 Debugging
As debugging aids, the compiler provides the user with debugging lines and a compile time
switch for debugging lines.
Debugging lines
A debugging line is any line with a ’D’ in column 7 (the indicator area) of the line.
Any debugging line that consists solely of spaces from margin A to margin R is considered
the same as a blank line.
The content of a debugging line must be such that a syntactically correct program is formed
with or without the debugging lines being considered as comment lines.
After all COPY statements have been processed, a debugging line will be treated as
program text if it is preceded by a WITH DEBUGGING MODE clause. Otherwise, it is
treated as a comment line. Successive debugging lines are allowed.
U41112-J-Z125-1-76 747
Debugging COBOL source program
748 U41112-J-Z125-1-76
12 Segmentation
Note
Segmentation is superfluous when generating shareable code. Shareable code can be
generated simply by means of a control statement to the compiler (see "COBOL2000
User Guide" [1]).
12.1.1 Organization
Although it is not mandatory, the Procedure Division for a compilation unit is usually written
as several consecutive sections, each of which is composed of a series of statements
which, taken together, perform a particular function. When segmentation is used, the entire
Procedure Division must be in sections. In addition, each section must be classified as
belonging either to the fixed portion of the program or to one of the independent segments
of the program. On the other hand, segmentation in no way affects the need for qualification
of procedure-names to ensure uniqueness.
U41112-J-Z125-1-76 749
General description Segmentation
750 U41112-J-Z125-1-76
Segmentation General rules for segmentation
U41112-J-Z125-1-76 751
General rules for segmentation Segmentation
PERFORM statement:
a) A PERFORM statement that appears in a section whose segment-number is less
than the segment-number supplied in the SEGMENT-LIMIT clause can have within
its range only the following:
– Sections each having a segment-number less than 50.
– Sections wholly contained in a single segment whose segment number is
greater than 49.
However, the compiler permits the PERFORM statement to reference, within its
range, sections having any section number.
a) A PERFORM statement appearing in a section whose segment-number is equal to
or greater than the segment number specified in the SEGMENT-LIMIT clause can
have within its range only one of the following:
– Sections each having the same segment-number as that of the section
containing the PERFORM statement.
– Sections each having a segment-number less than that specified in the
SEGMENT-LIMIT clause.
However, the compiler permits the PERFORM statement to reference, within its range,
sections having any section number.
SORT/MERGE statement:
a) When using a SORT or MERGE statement within a section which is not an
independent segment, the input procedures or output procedures referenced by
that SORT or MERGE statement:
– must be contained wholly within independent segments,
– or must be contained wholly within a single independent segment.
b) When using a SORT or MERGE statement within an independent segment, the
input procedures or output procedures referenced by that SORT or MERGE
statement:
– must be wholly contained within independent segments, or
– must be wholly contained within the same independent segment as the SORT
or MERGE statement.
These restrictions do not apply to the compiler discussed in this manual.
Called programs
A program that was called by a CALL statement may have its entry points only in the
permanent segment.
752 U41112-J-Z125-1-76
Segmentation/Environment Division SEGMENT-LIMIT clause
SEGMENT-LIMIT clause
Function
The SEGMENT-LIMIT clause enables the user to vary the number of permanent and
overlayable fixed segments in his program, while still retaining the logical properties of fixed
portion segments (segment-number 0 through 49) and keeping constant the total number
of segments in the fixed portion.
Format
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
SEGMENT-LIMIT IS segment-number
LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2LR2
Syntax rules
U41112-J-Z125-1-76 753
SEGMENT-LIMIT clause Segmentation/Environment Division
General rule
Ideally, all program segments having segment-numbers ranging from 0 through 49 are
treated as permanent segments. However, when insufficient storage is available to
contain all permanent segments plus the largest overlayable segment, the number of
permanent segments must be reduced. This may be done by subsequently including a
SEGMENT-LIMIT clause with appropriate entries without otherwise changing the
program.
Example 12-1
SEGMENT-LIMIT IS 40
This clause indicates that all segments having segment-numbers from 0 through 39 are
considered to be permanent segments of the program. Segments having segment-
numbers from 40 through 49 are overlayable fixed segments.
754 U41112-J-Z125-1-76
Segmentation/Procedure Division Segment number
Segment number
Function
U41112-J-Z125-1-76 755
Segment number Segmentation/Procedure Division
756 U41112-J-Z125-1-76
Related publications
[1] COBOL2000 (BS2000/OSD)
COBOL Compiler
User’s Guide
Target group
COBOL users of BS2000 and POSIX
Contents
– Generation of the COBOL compiler and the software required for the linking, loading
and debugging of COBOL programs
– File processing with COBOL programs
– Inter-program communication
– COBOL2000 and POSIX
– Structure of the COBOL2000 system
– Compiler messages and runtime system messages
U41112-J-Z125-1-76 757
Related publications
758 U41112-J-Z125-1-76
Related publications
UTM (TRANSDATA)
Supplement for COBOL
User’s Guide
Target group
Programmers of UTM COBOL applications
Contents
– Translation of the KDCS program interface into the COBOL language
– All the information required by programmers of UTM COBOL applications
Applications
BS2000 transaction processing
U41112-J-Z125-1-76 759
Related publications
760 U41112-J-Z125-1-76
Related publications
Ordering manuals
Please apply to your local office for ordering the manuals.
U41112-J-Z125-1-76 761
Eine Dokuschablone von Frank Flachenecker
by f.f. 1992
Index
U41112-J-Z125-1-76 763
Index
764 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 765
Index
766 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 767
Index
768 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 769
Index
770 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 771
Index
772 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 773
Index
774 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 775
Index
776 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 777
Index
778 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 779
Index
780 U41112-J-Z125-1-76
Index
U41112-J-Z125-1-76 781
Index
W
WHEN 393, 485, 490
WHEN OTHER phrase 393
WITH DEBUGGING MODE clause 160
debugging lines 747
WITH DUPLICATES phrase 187
ALTERNATE RECORD KEY clause 187
WITH LOCK phrase 372
WITH NO ADVANCING phrase 382
WITH NO LOCK phrase 471, 475, 520
WITH NO REWIND phrase 372, 443
WITH POINTER phrase 524
STRING statement 524
UNSTRING statement 531
WITH TEST BEFORE/AFTER phrase 457, 461
word 42, 53
782 U41112-J-Z125-1-76
Contents
1 Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1 Brief product description . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Target group and summary of contents . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3 Acknowledgment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
Contents
12 Segmentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 749
12.1 General description . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 749
12.1.1 Organization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 749
12.1.2 Fixed portion of the program . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 750
12.1.3 Independent segments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 750
12.2 General rules for segmentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 751
12.3 Language elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 753
12.3.1 Language elements of the Environment Division . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 753
SEGMENT-LIMIT clause . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 753
12.3.2 Language elements of the Procedure Division . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 755
Segment number . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 755
Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 763
U41112-J-Z125-1-76
Contents
U41112-J-Z125-1-76
COBOL2000 V1.0 (BS2000/OSD)
COBOL Compiler
Reference Manual
Target group
COBOL users in BS2000/OSD
Contents
– COBOL glossary
– Introduction to Standard COBOL
– Description of the full language set of the COBOL2000 compiler:
formats, rules and examples illustrating the COBOL ANS85 language elements of the
"High" language subset, the Fujitsu Siemens-specific extensions and the extensions
defined by the forthcoming COBOL standard, specifically the object orientation.
Edition: February 2000
File: COB2_BS.PDF
U41112-J-Z125-1-76
Fujitsu Siemens computers GmbH
User Documentation
Comments
81730 Munich
Germany
Suggestions
Corrections
Fax: (++49) 700 / 372 00000
e-mail: [email protected]
http://manuals.mchp.siemens.de
Submitted by
U41112-J-Z125-1-76