COBOL
COBOL
COBOL
Introduction to COBOL
COBOL is a high-level language. One must understand the way COBOL works. Computers only understand
machine code, a binary stream of 0s and 1s. COBOL code must be converted into machine code using
a compiler. Run the program source through a compiler. The compiler first checks for any syntax errors and
then converts it into machine language. The compiler creates an output file which is known as load module.
This output file contains executable code in the form of 0s and 1s.
Evolution of COBOL
During 1950s, when the businesses were growing in the western part of the world, there was a need to
automate various processes for ease of operation and this gave birth to a high-level programming language
meant for business data processing.
Importance of COBOL
COBOL was the first widely used high-level programming language. It is an English-like language
which is user friendly. All the instructions can be coded in simple English words.
COBOL is also used as a self-documenting language.
COBOL can handle huge data processing.
COBOL is compatible with its previous versions.
COBOL has effective error messages and so, resolution of bugs is easier.
Features of COBOL
Standard Language
COBOL is a standard language that can be compiled and executed on machines such as IBM AS/400,
personal computers, etc.
Business Oriented
COBOL was designed for business-oriented applications related to financial domain, defense domain, etc. It
can handle huge volumes of data because of its advanced file handling capabilities.
Robust Language
COBOL is a robust language as its numerous debugging and testing tools are available for almost all
computer platforms.
Structured Language
Logical control structures are available in COBOL which makes it easier to read and modify. COBOL has
different divisions, so it is easy to debug.
COBOL – Environment Setup
We have set up the COBOL Programming environment online, so that you can compile and execute all the
available examples online. It gives you confidence in what you are reading and enables you to verify the
programs with different options. Feel free to modify any example and execute it online.
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
DISPLAY 'Hello World'.
STOP RUN.
For most of the examples given in this tutorial, you will find a Try it option in our website code sections at
the top right corner that will take you to the online compiler. So just make use of it and enjoy your learning.
One such emulator is Hercules, which can be easily installed on Windows by following a few simple steps
as given below −
Download and install the Hercules emulator, which is available from the Hercules’ home
site: www.hercules-390.eu
Once you have installed the package on Windows machine, it will create a folder
like C:/hercules/mvs/cobol.
Run the Command Prompt (CMD) and reach the directory C:/hercules/mvs/cobol on CMD.
The complete guide on various commands to write and execute a JCL and COBOL programs can be
found at:www.jaymoseley.com/hercules/installmvs/instmvs2.htm
A user can connect to a mainframe server in a number of ways such as thin client, dummy terminal, Virtual
Client System (VCS), or Virtual Desktop System (VDS). Every valid user is given a login id to enter into
the Z/OS interface (TSO/E or ISPF).
There are many mainframe compiler utilities available to compile a COBOL program. Some corporate
companies use Change Management tools like Endevor, which compiles and stores every version of the
program. This is useful in tracking the changes made to the program.
IGYCRCTL is an IBM COBOL compiler utility. The compiler options are passed using the PARM
parameter. In the above example, RMODE instructs the compiler to use relative addressing mode in the
program. The COBOL program is passed using the SYSIN parameter. Copybook is the library used by the
program in SYSLIB.
The load module of MYPROG is located in MYDATA.URMI.LOADLIB. This is important to note that the
above JCL can be used for a non-DB2 COBOL module only.
When a COBOL-DB2 program is compiled, a DBRM (Database Request Module) is created along
with the load module. The DBRM contains the SQL statements of the COBOL programs with its
syntax checked to be correct.
The DBRM is bound to the DB2 region (environment) in which the COBOL will run. This can be
done using the IKJEFT01 utility in a JCL.
After the bind step, the COBOL-DB2 program is run using IKJEFT01 (again) with the load library
and the DBRM library as the input to the JCL.
In the above example, MYCOBB is the COBOL-DB2 program run using IKJEFT01. Please note that the
program name, DB2 Sub-System Id (SSID), and DB2 Plan name are passed within the SYSTSIN DD
statement. The DBRM library is specified in the STEPLIB.
COBOL – Program Structure
You can co-relate the above-mentioned terms with the COBOL program in the following example −
PROCEDURE DIVISION.
A0000-FIRST-PARA SECTION.
FIRST-PARAGRAPH.
ACCEPT WS-ID - Statement-1 -----|
MOVE '10' TO WS-ID - Statement-2 |-- Sentence - 1
DISPLAY WS-ID - Statement-3 -----|
.
Divisions
A COBOL program consists of four divisions.
Identification Division
It is the first and only mandatory division of every COBOL program. The programmer and the compiler use
this division to identify the program. In this division, PROGRAM-ID is the only mandatory paragraph.
PROGRAM-ID specifies the program name that can consist 1 to 30 characters.
Environment Division
Environment division is used to specify input and output files to the program. It consists of two sections −
Configuration section provides information about the system on which the program is written and
executed. It consists of two paragraphs −
o Source computer − System used to compile the program.
o Object computer − System used to execute the program.
Input-Output section provides information about the files to be used in the program. It consists of
two paragraphs −
o File control − Provides information of external data sets used in the program.
o I-O control − Provides information of files used in the program.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SOURCE-COMPUTER. XXX-ZOS.
OBJECT-COMPUTER. XXX-ZOS.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT FILEN ASSIGN TO DDNAME
ORGANIZATION IS SEQUENTIAL.
Data Division
Data division is used to define the variables used in the program. It consists of four sections −
COBOL Program
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT FILEN ASSIGN TO INPUT.
ORGANIZATION IS SEQUENTIAL.
ACCESS IS SEQUENTIAL.
DATA DIVISION.
FILE SECTION.
FD FILEN
01 NAME PIC A(25).
WORKING-STORAGE SECTION.
01 WS-STUDENT PIC A(30).
01 WS-ID PIC 9(5).
LOCAL-STORAGE SECTION.
01 LS-CLASS PIC 9(3).
LINKAGE SECTION.
01 LS-ID PIC 9(5).
PROCEDURE DIVISION.
DISPLAY 'Executing COBOL program using JCL'.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Procedure Division
Procedure division is used to include the logic of the program. It consists of executable statements using
variables defined in the data division. In this division, paragraph and section names are user-defined.
There must be at least one statement in the procedure division. The last statement to end the execution in this
division is either STOP RUN which is used in the calling programs or EXIT PROGRAM which is used in
the called programs.
COBOL – Basic Syntax
Character Set
‘Characters’ are lowest in the hierarchy and they cannot be divided further. The COBOL Character Set
includes 78 characters which are shown below −
Coding Sheet
The source program of COBOL must be written in a format acceptable to the compilers. COBOL programs
are written on COBOL coding sheets. There are 80 character positions on each line of a coding sheet.
Example
When you compile and execute the above program, it produces the following result −
Coding Sheet
Character Strings
Character strings are formed by combining individual characters. A character string can be a
Comment,
Literal, or
COBOL word.
All character strings must be ended with separators. A separator is used to separate character strings.
Frequently used separators − Space, Comma, Period, Apostrophe, Left/Right Parenthesis, and Quotation
mark.
Comment
A comment is a character string that does not affect the execution of a program. It can be any combination
of characters.
There are two types of comments −
Comment Line
A comment line can be written in any column. The compiler does not check a comment line for syntax and
treats it for documentation.
Comment Entry
Comment entries are those that are included in the optional paragraphs of an Identification Division. They
are written in Area B and programmers use it for reference.
The text highlighted in Bold are the commented entries in the following example −
When you compile and execute the above program, it produces the following result −
Comment Line
Literal
Literal is a constant that is directly hard-coded in a program. In the following example, “Hello World” is a
literal.
PROCEDURE DIVISION.
DISPLAY 'Hello World'.
Alphanumeric Literal
Alphanumeric Literals are enclosed in quotes or apostrophe. Length can be up to 160 characters. An
apostrophe or a quote can be a part of a literal only if it is paired. Starting and ending of the literal should be
same, either apostrophe or quote.
Example
Valid:
‘This is valid’
"This is valid"
‘This isn’’t invalid’
Invalid:
‘This is invalid”
‘This isn’t valid’
Numeric Literal
Example
Valid:
100
+10.9
-1.9
Invalid:
1,00
10.
10.9-
COBOL Word
COBOL Word is a character string that can be a reserved word or a user-defined word. Length can be up to
30 characters.
User-Defined
User-defined words are used for naming files, data, records, paragraph names, and sections. Alphabets,
digits, and hyphens are allowed while forming userdefined words. You cannot use COBOL reserved words.
Reserved Words
Reserved words are predefined words in COBOL. Different types of reserved words that we use frequently
are as follows −
Figurative Constants
Data Division is used to define the variables used in a program. To describe data in COBOL, one must
understand the following terms −
Data Name
Level Number
Picture Clause
Value Clause
Data Name
Data names must be defined in the Data Division before using them in the Procedure Division. They must
have a user-defined name; reserved words cannot be used. Data names give reference to the memory
locations where actual data is stored. They can be elementary or group type.
Example
Valid:
WS-NAME
TOTAL-STUDENTS
A100
100B
Invalid:
MOVE (Reserved Words)
COMPUTE (Reserved Words)
100 (No Alphabet)
100+B (+ is not allowed)
Level Number
Level number is used to specify the level of data in a record. They are used to differentiate between
elementary items and group items. Elementary items can be grouped together to create group items.
Elementary items cannot be divided further. Level number, Data name, Picture clause, and Value
clause (optional) are used to describe an elementary item.
Group items consist of one or more elementary items. Level number, Data name, and Value clause
(optional) are used to describe a group item. Group level number is always 01.
Example
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NAME PIC X(25). ---> ELEMENTARY ITEM
01 WS-CLASS PIC 9(2) VALUE '10'. ---> ELEMENTARY ITEM
Picture Clause
Picture clause is used to define the following items −
Data type can be numeric, alphabetic, or alphanumeric. Numeric type consists of only digits 0 to 9.
Alphabetic type consists of letters A to Z and spaces. Alphanumeric type consists of digits, letters,
and special characters.
Sign can be used with numeric data. It can be either + or –.
Decimal point position can be used with numeric data. Assumed position is the position of decimal
point and not included in the data.
Length defines the number of bytes used by the data item.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC S9(3)V9(2).
01 WS-NUM2 PIC PPP999.
01 WS-NUM3 PIC S9(3)V9(2) VALUE -123.45.
01 WS-NAME PIC A(6) VALUE 'ABCDEF'.
01 WS-ID PIC X(5) VALUE 'A121$'.
PROCEDURE DIVISION.
DISPLAY "WS-NUM1 : "WS-NUM1.
DISPLAY "WS-NUM2 : "WS-NUM2.
DISPLAY "WS-NUM3 : "WS-NUM3.
DISPLAY "WS-NAME : "WS-NAME.
DISPLAY "WS-ID : "WS-ID.
STOP RUN.
When you compile and execute the above program, it produces the following result −
WS-NUM1 : +000.00
WS-NUM2 : .000000
WS-NUM3 : -123.45
WS-NAME : ABCDEF
WS-ID : A121$
Value Clause
Value clause is an optional clause which is used to initialize the data items. The values can be numeric
literal, alphanumeric literal, or figurative constant. It can be used with both group and elementary items.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC 99V9 VALUE IS 3.5.
01 WS-NAME PIC A(6) VALUE 'ABCD'.
01 WS-ID PIC 99 VALUE ZERO.
PROCEDURE DIVISION.
DISPLAY "WS-NUM1 : "WS-NUM1.
DISPLAY "WS-NAME : "WS-NAME.
DISPLAY "WS-ID : "WS-ID.
STOP RUN.
When you compile and execute the above program, it produces the following result −
WS-NUM1 : 03.5
WS-NAME : ABCD
WS-ID : 00
COBOL – Data Layout
COBOL layout is the description of use of each field and the values present in it. Following are the data
description entries used in COBOL −
Redefines Clause
Renames Clause
Usage Clause
Copybooks
Redefines Clause
Redefines clause is used to define a storage with different data description. If one or more data items are not
used simultaneously, then the same storage can be utilized for another data item. So the same storage can be
referred with different data items.
Syntax
Level numbers of redefined item and redefining item must be the same and it cannot be 66 or 88 level
number. Do not use VALUE clause with a redefining item. In File Section, do not use a redefines clause
with 01 level number. Redefines definition must be the next data description you want to redefine. A
redefining item will always have the same value as a redefined item.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-DESCRIPTION.
05 WS-DATE1 VALUE '20140831'.
10 WS-YEAR PIC X(4).
10 WS-MONTH PIC X(2).
10 WS-DATE PIC X(2).
05 WS-DATE2 REDEFINES WS-DATE1 PIC 9(8).
PROCEDURE DIVISION.
DISPLAY "WS-DATE1 : "WS-DATE1.
DISPLAY "WS-DATE2 : "WS-DATE2.
STOP RUN.
WS-DATE1 : 20140831
WS-DATE2 : 20140831
Renames Clause
Renames clause is used to give different names to existing data items. It is used to re-group the data names
and give a new name to them. The new data names can rename across groups or elementary items. Level
number 66 is reserved for renames.
Syntax
01 WS-OLD.
10 WS-A PIC 9(12).
10 WS-B PIC X(20).
10 WS-C PIC A(25).
10 WS-D PIC X(12).
66 WS-NEW RENAMES WS-A THRU WS-C.
Renaming is possible at same level only. In the above example, WS-A, WS-B, and WS-C are at the same
level. Renames definition must be the next data description you want to rename. Do not use Renames with
the level numbers 01 or, 77. The data names used for renames must come in sequence. Data items with
occur clause cannot be renamed.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-DESCRIPTION.
05 WS-NUM.
10 WS-NUM1 PIC 9(2) VALUE 20.
10 WS-NUM2 PIC 9(2) VALUE 56.
05 WS-CHAR.
10 WS-CHAR1 PIC X(2) VALUE 'AA'.
10 WS-CHAR2 PIC X(2) VALUE 'BB'.
66 WS-RENAME RENAMES WS-NUM2 THRU WS-CHAR2.
PROCEDURE DIVISION.
DISPLAY "WS-RENAME : " WS-RENAME.
STOP RUN.
When you compile and execute the above program, it produces the following result −
WS-RENAME : 56AABB
Usage Clause
Usage clause specifies the operating system in which the format data is stored. It cannot be used with level
numbers 66 or 88. If usage clause is specified on a group, then all the elementary items will have the same
usage clause. The different options available with Usage clause are as follows −
Display
Data item is stored in ASCII format and each character will take 1 byte. It is default usage.
COMPUTATIONAL / COMP
Data item is stored in binary format. Here, data items must be integer.
COMP-1
Data item is similar to Real or Float and is represented as a single precision floating point number.
Internally, data is stored in hexadecimal format. COMP-1 does not accept PIC clause. Here 1 word is equal
to 4 bytes.
COMP-2
Data item is similar to Long or Double and is represented as double precision floating point number.
Internally, data is stored in hexadecimal format. COMP-2 does not specify PIC clause. Here 2 word is equal
to 8 bytes.
COMP-3
Data item is stored in packed decimal format. Each digit occupies half a byte (1 nibble) and the sign is
stored at the rightmost nibble.
DATA DIVISION.
WORKING-STORAGE SECTION.
COPY ABC.
Here ABC is the copybook name. The following data items in ABC copybook can be used inside a program.
01 WS-DESCRIPTION.
05 WS-NUM.
10 WS-NUM1 PIC 9(2) VALUE 20.
10 WS-NUM2 PIC 9(2) VALUE 56.
05 WS-CHAR.
10 WS-CHAR1 PIC X(2) VALUE 'AA'.
10 WS-CHAR2 PIC X(2) VALUE 'BB'.
COBOL – Conditional Statements
Conditional statements are used to change the execution flow depending on certain conditions specified by
the programmer. Conditional statements will always evaluate to true or false. Conditions are used in IF,
Evaluate, and Perform statements. The different types of conditions are as follows −
IF Condition Statement
Relation Condition
Sign Condition
Class Condition
Condition-Name Condition
Negated Condition
Combined Condition
IF Condition Statement
IF statement checks for conditions. If a condition is true, the IF block is executed; and if the condition is
false, the ELSE block is executed.
END-IF is used to end the IF block. To end the IF block, a period can be used instead of END-IF. But it is
always preferable to use END-IF for multiple IF blocks.
Nested-IF − IF blocks appearing inside another IF block. There is no limit to the depth of nested IF
statements.
Syntax
IF [condition] THEN
[COBOL statements]
ELSE
[COBOL statements]
END-IF.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC 9(9).
01 WS-NUM2 PIC 9(9).
01 WS-NUM3 PIC 9(5).
01 WS-NUM4 PIC 9(6).
PROCEDURE DIVISION.
A000-FIRST-PARA.
MOVE 25 TO WS-NUM1 WS-NUM3.
MOVE 15 TO WS-NUM2 WS-NUM4.
ELSE
DISPLAY 'IN LOOP 1 - ELSE BLOCK'
END-IF.
STOP RUN.
When you compile and execute the above program, it produces the following result −
IN LOOP 1 - IF BLOCK
IN LOOP 2 - ELSE BLOCK
Relation Condition
Relation condition compares two operands, either of which can be an identifier, literal, or arithmetic
expression. Algebraic comparison of numeric fields is done regardless of size and usage clause.
If two non-numeric operands of equal size are compared, then the characters are compared from left with the
corresponding positions till the end is reached. The operand containing greater number of characters is
declared greater.
If two non-numeric operands of unequal size are compared, then the shorter data item is appended with
spaces at the end till the size of the operands becomes equal and then compared according to the rules
mentioned in the previous point.
Syntax
[IS] [NOT]
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC 9(9).
01 WS-NUM2 PIC 9(9).
PROCEDURE DIVISION.
A000-FIRST-PARA.
MOVE 25 TO WS-NUM1.
MOVE 15 TO WS-NUM2.
STOP RUN.
When you compile and execute the above program it produces the following result −
Sign Condition
Sign condition is used to check the sign of a numeric operand. It determines whether a given numeric value
is greater than, less than, or equal to ZERO.
Syntax
[IS] [NOT]
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC S9(9) VALUE -1234.
01 WS-NUM2 PIC S9(9) VALUE 123456.
PROCEDURE DIVISION.
A000-FIRST-PARA.
IF WS-NUM1 IS POSITIVE THEN
DISPLAY 'WS-NUM1 IS POSITIVE'.
STOP RUN.
JCL to execute the above COBOL program −
When you compile and execute the above program it produces the following result −
WS-NUM1 IS NEGATIVE
WS-NUM2 IS POSITIVE
Class Condition
Class condition is used to check if an operand contains only alphabets or numeric data. Spaces are
considered in ALPHABETIC, ALPHABETIC-LOWER, and ALPHABETIC-UPPER.
Syntax
[IS] [NOT]
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC X(9) VALUE 'ABCD '.
01 WS-NUM2 PIC 9(9) VALUE 123456789.
PROCEDURE DIVISION.
A000-FIRST-PARA.
STOP RUN.
When you compile and execute the above program, it produces the following result −
WS-NUM1 IS ALPHABETIC
WS-NUM2 IS NUMERIC
Condition-name Condition
A condition-name is a user-defined name. It contains a set of values specified by the user. It behaves like
Boolean variables. They are defined with level number 88. It will not have a PIC clause.
Syntax
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM PIC 9(3).
88 PASS VALUES ARE 041 THRU 100.
88 FAIL VALUES ARE 000 THRU 40.
PROCEDURE DIVISION.
A000-FIRST-PARA.
MOVE 65 TO WS-NUM.
IF PASS
DISPLAY 'Passed with ' WS-NUM ' marks'.
IF FAIL
DISPLAY 'FAILED with ' WS-NUM 'marks'.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Negated Condition
Negated condition is given by using the NOT keyword. If a condition is true and we have given NOT in
front of it, then its final value will be false.
Syntax
IF NOT [CONDITION]
COBOL Statements
END-IF.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC 9(2) VALUE 20.
01 WS-NUM2 PIC 9(9) VALUE 25.
PROCEDURE DIVISION.
A000-FIRST-PARA.
STOP RUN.
When you compile and execute the above program, it produces the following result −
ELSE-BLOCK
Combined Condition
A combined condition contains two or more conditions connected using logical operators AND or OR.
Syntax
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUM1 PIC 9(2) VALUE 20.
01 WS-NUM2 PIC 9(2) VALUE 25.
01 WS-NUM3 PIC 9(2) VALUE 20.
PROCEDURE DIVISION.
A000-FIRST-PARA.
STOP RUN.
JCL to execute the above COBOL program −
When you compile and execute the above program, it produces the following result −
Both condition OK
Evaluate Verb
Evaluate verb is a replacement of series of IF-ELSE statement. It can be used to evaluate more than one
condition. It is similar to SWITCH statement in C programs.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-A PIC 9 VALUE 0.
PROCEDURE DIVISION.
MOVE 3 TO WS-A.
EVALUATE TRUE
WHEN WS-A > 2
DISPLAY 'WS-A GREATER THAN 2'
WHEN OTHER
DISPLAY 'INVALID VALUE OF WS-A'
END-EVALUATE.
STOP RUN.
When you compile and execute the above program, it produces the following result −
There are some tasks that need to be done over and over again like reading each record of a file till its end.
The loop statements used in COBOL are −
Perform Thru
Perform Until
Perform Times
Perform Varying
Perform Thru
Perform Thru is used to execute a series of paragraph by giving the first and last paragraph names in the
sequence. After executing the last paragraph, the control is returned back.
In-line Perform
Syntax
PERFORM
DISPLAY 'HELLO WORLD'
END-PERFORM.
Out-of-line Perform
Here, a statement is executed in one paragraph and then the control is transferred to other paragraph or
section.
Syntax
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
A-PARA.
PERFORM DISPLAY 'IN A-PARA'
END-PERFORM.
PERFORM C-PARA THRU E-PARA.
B-PARA.
DISPLAY 'IN B-PARA'.
STOP RUN.
C-PARA.
DISPLAY 'IN C-PARA'.
D-PARA.
DISPLAY 'IN D-PARA'.
E-PARA.
DISPLAY 'IN E-PARA'.
When you compile and execute the above program, it produces the following result −
IN A-PARA
IN C-PARA
IN D-PARA
IN E-PARA
IN B-PARA
Perform Until
In ‘perform until’, a paragraph is executed until the given condition becomes true. ‘With test before’ is the
default condition and it indicates that the condition is checked before the execution of statements in a
paragraph.
Syntax
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-CNT PIC 9(1) VALUE 0.
PROCEDURE DIVISION.
A-PARA.
PERFORM B-PARA WITH TEST AFTER UNTIL WS-CNT>3.
STOP RUN.
B-PARA.
DISPLAY 'WS-CNT : 'WS-CNT.
ADD 1 TO WS-CNT.
When you compile and execute the above program, it produces the following result −
WS-CNT : 0
WS-CNT : 1
WS-CNT : 2
WS-CNT : 3
Perform Times
In ‘perform times’, a paragraph will be executed the number of times specified.
Syntax
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
A-PARA.
PERFORM B-PARA 3 TIMES.
STOP RUN.
B-PARA.
DISPLAY 'IN B-PARA'.
When you compile and execute the above program, it produces the following result −
IN B-PARA
IN B-PARA
IN B-PARA
Perform Varying
In perform varying, a paragraph will be executed till the condition in Until phrase becomes true.
Syntax
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-A PIC 9 VALUE 0.
PROCEDURE DIVISION.
A-PARA.
PERFORM B-PARA VARYING WS-A FROM 1 BY 1 UNTIL WS-A=5
STOP RUN.
B-PARA.
DISPLAY 'IN B-PARA ' WS-A.
When you compile and execute the above program, it produces the following result −
IN B-PARA 1
IN B-PARA 2
IN B-PARA 3
IN B-PARA 4
GO TO Statement
GO TO statement is used to change the flow of execution in a program. In GO TO statements, transfer goes
only in the forward direction. It is used to exit a paragraph. The different types of GO TO statements used
are as follows −
Unconditional GO TO
GO TO para-name.
Conditional GO TO
GO TO para-1 para-2 para-3 DEPENDING ON x.
If ‘x’ is equal to 1, then the control will be transferred to the first paragraph; and if ‘x’ is equal to 2, then the
control will be transferred to the second paragraph, and so on.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-A PIC 9 VALUE 2.
PROCEDURE DIVISION.
A-PARA.
DISPLAY 'IN A-PARA'
GO TO B-PARA.
B-PARA.
DISPLAY 'IN B-PARA '.
GO TO C-PARA D-PARA DEPENDING ON WS-A.
C-PARA.
DISPLAY 'IN C-PARA '.
D-PARA.
DISPLAY 'IN D-PARA '.
STOP RUN.
JCL to execute the above COBOL program:
When you compile and execute the above program, it produces the following result:
IN A-PARA
IN B-PARA
IN D-PARA
COBOL – String Handling
String handling statements in COBOL are used to do multiple functional operations on strings. Following
are the string handling statements −
Inspect
String
Unstring
Inspect
Inspect verb is used to count or replace the characters in a string. String operations can be performed on
alphanumeric, numeric, or alphabetic values. Inspect operations are performed from left to right. The options
used for the string operations are as follows −
Tallying
Syntax
INSPECT input-string
TALLYING output-count FOR ALL CHARACTERS
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-CNT1 PIC 9(2) VALUE 0.
01 WS-CNT2 PIC 9(2) VALUE 0.
01 WS-STRING PIC X(15) VALUE 'ABCDACDADEAAAFF'.
PROCEDURE DIVISION.
INSPECT WS-STRING TALLYING WS-CNT1 FOR CHARACTER.
DISPLAY "WS-CNT1 : "WS-CNT1.
INSPECT WS-STRING TALLYING WS-CNT2 FOR ALL 'A'.
DISPLAY "WS-CNT2 : "WS-CNT2
STOP RUN.
When you compile and execute the above program, it produces the following result −
WS-CNT1 : 15
WS-CNT2 : 06
Replacing
Syntax
input-string − The string whose characters are to be replaced from char1 to char2.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-STRING PIC X(15) VALUE 'ABCDACDADEAAAFF'.
PROCEDURE DIVISION.
DISPLAY "OLD STRING : "WS-STRING.
INSPECT WS-STRING REPLACING ALL 'A' BY 'X'.
DISPLAY "NEW STRING : "WS-STRING.
STOP RUN.
When you compile and execute the above program, it produces the following result −
String
String verb is used to concatenate the strings. Using STRING statement, two or more strings of characters
can be combined to form a longer string. ‘Delimited By’ clause is compulsory.
Syntax
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-STRING PIC A(30).
01 WS-STR1 PIC A(15) VALUE 'Tutorialspoint'.
01 WS-STR2 PIC A(7) VALUE 'Welcome'.
01 WS-STR3 PIC A(7) VALUE 'To AND'.
01 WS-COUNT PIC 99 VALUE 1.
PROCEDURE DIVISION.
STRING WS-STR2 DELIMITED BY SIZE
WS-STR3 DELIMITED BY SPACE
WS-STR1 DELIMITED BY SIZE
INTO WS-STRING
WITH POINTER WS-COUNT
ON OVERFLOW DISPLAY 'OVERFLOW!'
END-STRING.
STOP RUN.
When you compile and execute the above program, it produces the following result −
WS-STRING : Welcome
WS-COUNT : 25
Unstring
Unstring verb is used to split one string into multiple sub-strings. Delimited By clause is compulsory.
Syntax
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-STRING PIC A(30) VALUE 'WELCOME '.
01 WS-STR1 PIC A(7).
01 WS-STR2 PIC A(2).
01 WS-STR3 PIC A(15).
01 WS-COUNT PIC 99 VALUE 1.
PROCEDURE DIVISION.
UNSTRING WS-STRING DELIMITED BY SPACE
INTO WS-STR1, WS-STR2, WS-STR3
END-UNSTRING.
STOP RUN.
Arrays in COBOL are known as tables. An array is a linear data structure and is a collection of individual
data items of same type. Data items of a table are internally sorted.
Table Declaration
Table is declared in Data Division. Occurs clause is used to define a table. Occurs clause indicates the
repetition of data name definition. It can be used only with level numbers starting from 02 to 49. Do not use
occurs clause with Redefines. Description of one-dimensional and two-dimensional table is as follows −
One-Dimensional Table
In a one-dimensional table, occurs clause is used only once in declaration. WSTABLE is the group item that
contains table. WS-B names the table elements that occur 10 times.
Syntax
01 WS-TABLE.
05 WS-A PIC A(10) OCCURS 10 TIMES.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-TABLE.
05 WS-A PIC A(10) VALUE 'TUTORIALS' OCCURS 5 TIMES.
PROCEDURE DIVISION.
DISPLAY "ONE-D TABLE : "WS-TABLE.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Two-Dimensional Table
A two-dimensional table is created with both data elements being variable length. For reference, go through
the syntax and then try to analyze the table. The first array (WS-A) can occur from 1 to 10 times and the
inner array (WS-C) can occur from 1 to 5 times. For each entry of WS-A, there will be corresponding 5
entries of WS-C.
Syntax
Example
Live Demo
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-TABLE.
05 WS-A OCCURS 2 TIMES.
10 WS-B PIC A(10) VALUE ' TUTORIALS'.
10 WS-C OCCURS 2 TIMES.
15 WS-D PIC X(6) VALUE ' POINT'.
PROCEDURE DIVISION.
DISPLAY "TWO-D TABLE : "WS-TABLE.
STOP RUN.
Subscript
Table individual elements can be accessed by using subscript. Subscript values can range from 1 to the
number of times the table occurs. A subscript can be any positive number. It does not require any declaration
in data division. It is automatically created with occurs clause.
Example
Live Demo
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-TABLE.
05 WS-A OCCURS 3 TIMES.
10 WS-B PIC A(2).
10 WS-C OCCURS 2 TIMES.
15 WS-D PIC X(3).
PROCEDURE DIVISION.
MOVE '12ABCDEF34GHIJKL56MNOPQR' TO WS-TABLE.
DISPLAY 'WS-TABLE : ' WS-TABLE.
DISPLAY 'WS-A(1) : ' WS-A(1).
DISPLAY 'WS-C(1,1) : ' WS-C(1,1).
DISPLAY 'WS-C(1,2) : ' WS-C(1,2).
DISPLAY 'WS-A(2) : ' WS-A(2).
DISPLAY 'WS-C(2,1) : ' WS-C(2,1).
DISPLAY 'WS-C(2,2) : ' WS-C(2,2).
DISPLAY 'WS-A(3) : ' WS-A(3).
DISPLAY 'WS-C(3,1) : ' WS-C(3,1).
DISPLAY 'WS-C(3,2) : ' WS-C(3,2).
STOP RUN.
When you compile and execute the above program, it produces the following result −
WS-TABLE : 12ABCDEF34GHIJKL56MNOPQR
WS-A(1) : 12ABCDEF
WS-C(1,1) : ABC
WS-C(1,2) : DEF
WS-A(2) : 34GHIJKL
WS-C(2,1) : GHI
WS-C(2,2) : JKL
WS-A(3) : 56MNOPQR
WS-C(3,1) : MNO
WS-C(3,2) : PQR
Index
Table elements can also be accessed using index. An index is a displacement of element from the start of the
table. An index is declared with Occurs clause using INDEXED BY clause. The value of index can be
changed using SET statement and PERFORM Varying option.
Syntax
01 WS-TABLE.
05 WS-A PIC A(10) OCCURS 10 TIMES INDEXED BY I.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-TABLE.
05 WS-A OCCURS 3 TIMES INDEXED BY I.
10 WS-B PIC A(2).
10 WS-C OCCURS 2 TIMES INDEXED BY J.
15 WS-D PIC X(3).
PROCEDURE DIVISION.
MOVE '12ABCDEF34GHIJKL56MNOPQR' TO WS-TABLE.
PERFORM A-PARA VARYING I FROM 1 BY 1 UNTIL I >3
STOP RUN.
A-PARA.
PERFORM C-PARA VARYING J FROM 1 BY 1 UNTIL J>2.
C-PARA.
DISPLAY WS-C(I,J).
When you compile and execute the above program, it produces the following result −
ABC
DEF
GHI
JKL
MNO
PQR
Set Statement
Set statement is used to change the index value. Set verb is used to initialize, increment, or decrement the
index value. It is used with Search and Search All to locate elements in table.
Syntax
SET I J TO positive-number
SET I TO J
SET I TO 5
SET I J UP BY 1
SET J DOWN BY 5
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-TABLE.
05 WS-A OCCURS 3 TIMES INDEXED BY I.
10 WS-B PIC A(2).
10 WS-C OCCURS 2 TIMES INDEXED BY J.
15 WS-D PIC X(3).
PROCEDURE DIVISION.
MOVE '12ABCDEF34GHIJKL56MNOPQR' TO WS-TABLE.
SET I J TO 1.
DISPLAY WS-C(I,J).
SET I J UP BY 1.
DISPLAY WS-C(I,J).
STOP RUN.
When you compile and execute the above program, it produces the following result −
ABC
JKL
Search
Search is a linear search method, which is used to find elements inside the table. It can be performed on
sorted as well as unsorted table. It is used only for tables declared by Index phrase. It starts with the initial
value of index. If the searched element is not found, then the index is automatically incremented by 1 and it
continues till the end of table.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-TABLE.
05 WS-A PIC X(1) OCCURS 18 TIMES INDEXED BY I.
01 WS-SRCH PIC A(1) VALUE 'M'.
PROCEDURE DIVISION.
MOVE 'ABCDEFGHIJKLMNOPQR' TO WS-TABLE.
SET I TO 1.
SEARCH WS-A
AT END DISPLAY 'M NOT FOUND IN TABLE'
WHEN WS-A(I) = WS-SRCH
DISPLAY 'LETTER M FOUND IN TABLE'
END-SEARCH.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Search All
Search All is a binary search method, which is used to find elements inside the table. Table must be in sorted
order for Search All option. The index does not require initialization. In binary search, the table is divided
into two halves and it determines in which half the searched element is present. This process repeats till the
element is found or the end is reached.
Example
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-TABLE.
05 WS-RECORD OCCURS 10 TIMES ASCENDING KEY IS WS-NUM INDEXED BY I.
10 WS-NUM PIC 9(2).
10 WS-NAME PIC A(3).
PROCEDURE DIVISION.
MOVE '12ABC56DEF34GHI78JKL93MNO11PQR' TO WS-TABLE.
SEARCH ALL WS-RECORD
AT END DISPLAY 'RECORD NOT FOUND'
WHEN WS-NUM(I) = 93
DISPLAY 'RECORD FOUND '
DISPLAY WS-NUM(I)
DISPLAY WS-NAME(I)
END-SEARCH.
When you compile and execute the above program, it produces the following result −
RECORD FOUND
93
MNO
COBOL – File Handling
The concept of files in COBOL is different from that in C/C++. While learning the basics of ‘File’ in
COBOL, the concepts of both languages should not be corelated. Simple text files cannot be used in
COBOL, instead PS (Physical Sequential) and VSAM files are used. PS files will be discussed in this
module.
To understand file handling in COBOL, one must know the basic terms. These terms only serve to
understand the fundamentals of file handling. Further in depth terminology would be discussed in the
chapter ‘File Handling Verbs’. Following are the basic terms −
Field
Record
Physical Record
Logical Record
File
Field
Field is used to indicate the data stored about an element. It represents a single element as shown in the
above example such as student id, name, marks, total marks, and percentage. The number of characters in
any field is known as field size, for example, student name can have 10 characters. Fields can have the
following attributes −
Primary keys are those fields that are unique to each record and are used to identify a particular
record. For example, in students marks file, each student will be having a unique student id which
forms the primary key.
Secondary keys are unique or non-unique fields that are used to search for related data. For
example, in students marks file, full name of student can be used as secondary key when student id is
not known.
Descriptors fields are used to describe an entity. For example, in students marks file, marks and
percentage fields that add meaning to the record are known descriptors.
Record
Record is a collection of fields that is used to describe an entity. One or more fields together form a record.
For example, in students marks file, student id, name, marks, total marks, and percentage form one record.
The cumulative size of all the fields in a record is known as the record size. The records present in a file may
be of fixed length or variable length.
Physical Record
Physical record is the information that exists on the external device. It is also known as a block.
Logical Record
Logical record is the information used by the program. In COBOL programs, only one record can be
handled at any point of time and it is called as logical record.
File
File is a collection of related records. For example, the students marks file consists of records of all the
students.
COBOL – File Organization
File organization indicates how the records are organized in a file. There are different types of organizations
for files so as to increase their efficiency of accessing the records. Following are the types of file
organization schemes −
The syntaxes in this module, mentioned along with their respective terms, only refer to their usage in the
program. The complete programs using these syntaxes would be discussed in the chapter ‘File handling
Verbs’.
Records can be read in sequential order. For reading the 10th record, all the previous 9 records should
be read.
Records are written in sequential order. A new record cannot be inserted in between. A new record is
always inserted at the end of the file.
After placing a record into a sequential file, it is not possible to delete, shorten, or lengthen a record.
Order of the records, once inserted, can never be changed.
Updation of record is possible. A record can be overwritten, if the new record length is same as the
old record length.
Sequential output files are good option for printing.
Syntax
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name-jcl
ORGANIZATION IS SEQUENTIAL
Records can be read in sequential order just like in sequential file organization.
Records can be accessed randomly if the primary key is known. Index file is used to get the address
of a record and then the record is fetched from the data file.
Sorted index is maintained in this file system which relates the key value to the position of the record
in the file.
Alternate index can also be created to fetch the records.
Syntax
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name-jcl
ORGANIZATION IS INDEXED
RECORD KEY IS primary-key
ALTERNATE RECORD KEY IS rec-key
Records can be read in sequential order just like in sequential and indexed file organization.
Records can be accessed using relative key. Relative key represents the record’s location relative to
the address of the start of the file.
Records can be inserted using relative key. Relative address is calculated using relative key.
Relative file provides the fastest access to the records.
The main disadvantage of this file system is that if some intermediate records are missing, they will
also occupy space.
Syntax
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name-jcl
ORGANIZATION IS RELATIVE
RELATIVE KEY IS rec-key
COBOL – File Access Mode
Till now, file organization schemes have been discussed. For each file organization scheme, different access
modes can be used. Following are the types of file access modes −
Sequential Access
Random Access
Dynamic Access
The syntaxes in this module, mentioned along with their respective terms, only refer to their usage in the
program. The complete programs using these syntaxes would be discussed in the next chapter.
Sequential Access
When the access mode is sequential, the method of record retrieval changes as per the selected file
organization.
For sequential files, records are accessed in the same order in which they were inserted.
For indexed files, the parameter used to fetch the records are the record key values.
For relative files, relative record keys are used to retrieve the records.
Syntax
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name
ORGANIZATION IS SEQUENTIAL
ACCESS MODE IS SEQUENTIAL
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name
ORGANIZATION IS INDEXED
ACCESS MODE IS SEQUENTIAL
RECORD KEY IS rec-key1
ALTERNATE RECORD KEY IS rec-key2
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name
ORGANIZATION IS RELATIVE
ACCESS MODE IS SEQUENTIAL
RELATIVE KEY IS rec-key1
Random Access
When the access mode is RANDOM, the method of record retrieval changes as per the selected file
organization.
For indexed files, records are accessed according to the value placed in a key field which can be
primary or alternate key. There can be one or more alternate indexes.
For relative files , records are retrieved through relative record keys.
Syntax
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name
ORGANIZATION IS INDEXED
ACCESS MODE IS RANDOM
RECORD KEY IS rec-key1
ALTERNATE RECORD KEY IS rec-key2
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name
ORGANIZATION IS RELATIVE
ACCESS MODE IS RANDOM
RELATIVE KEY IS rec-key1
Dynamic Access
Dynamic access supports both sequential and random access in the same program. With dynamic access,
one file definition is used to perform both sequential and random processing like accessing some records in
sequential order and other records by their keys.
With relative and indexed files, the dynamic access mode allows you to switch back and forth between
sequential access mode and random access mode while reading a file by using the NEXT phrase on the
READ statement. NEXT and READ functionalities will be discussed in the next chapter.
Syntax
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name
ORGANIZATION IS SEQUENTIAL
ACCESS MODE IS DYNAMIC
RECORD KEY IS rec-key1
ALTERNATE RECORD KEY IS rec-key2
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT file-name ASSIGN TO dd-name
ORGANIZATION IS RELATIVE
ACCESS MODE IS DYNAMIC
RELATIVE KEY IS rec-key1
COBOL – File Handling Verbs
File handling verbs are used to perform various operations on files. Following are the file handling verbs −
Open
Read
Write
Rewrite
Delete
Start
Close
Open Verb
Open is the first file operation that must be performed. If Open is successful, then only further operations are
possible on a file. Only after opening a file, the variables in the file structure are available for
processing. FILE STATUS variable is updated after each file operation.
Syntax
OPEN "mode" file-name.
Here, file-name is string literal, which you will use to name your file. A file can be opened in the following
modes −
2 Output mode is used to insert records in files. If a sequential file is used and the file is holding some
records, then the existing records will be deleted first and then new records will be inserted in the file.
It will not happen so in case of an indexed file or a relative file.
Extend
3
Extend mode is used to append records in a sequential file. In this mode, records are inserted at the
end. If file access mode is Random or Dynamic, then extend mode cannot be used.
I-O
4
Input-Output mode is used to read and rewrite the records of a file.
Read Verb
Read verb is used to read the file records. The function of read is to fetch records from a file. At each read
verb, only one record can be read into the file structure. To perform a read operation, open the file in INPUT
or I-O mode. At each read statement, the file pointer is incremented and hence the successive records are
read.
Syntax
Following is the syntax to read the records when the file access mode is sequential −
NEXT RECORD is optional and is specified when an indexed sequential file is being read
sequentially.
INTO clause is optional. ws-file-structure is defined in the WorkingStorage Section to get the values
from the READ statement.
AT END condition becomes True when the end of file is reached.
Example − The following example reads an existing file using line sequential organization. This program
can be compiled and executed using Live Demo option where it will display all the records present in the
file.
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT STUDENT ASSIGN TO 'input.txt'
ORGANIZATION IS LINE SEQUENTIAL.
DATA DIVISION.
FILE SECTION.
FD STUDENT.
01 STUDENT-FILE.
05 STUDENT-ID PIC 9(5).
05 NAME PIC A(25).
WORKING-STORAGE SECTION.
01 WS-STUDENT.
05 WS-STUDENT-ID PIC 9(5).
05 WS-NAME PIC A(25).
01 WS-EOF PIC A(1).
PROCEDURE DIVISION.
OPEN INPUT STUDENT.
PERFORM UNTIL WS-EOF='Y'
READ STUDENT INTO WS-STUDENT
AT END MOVE 'Y' TO WS-EOF
NOT AT END DISPLAY WS-STUDENT
END-READ
END-PERFORM.
CLOSE STUDENT.
STOP RUN.
Suppose the input file data available in the input.txt file contains the following −
20003 Mohtashim M.
20004 Nishant Malik
20005 Amitabh Bachhan
When you compile and execute the above program, it produces the following result −
20003 Mohtashim M.
20004 Nishant Malik
20005 Amitabh Bachhan
Syntax
Following is the syntax to write a record when the file access mode is random −
Example − The following example reads an existing file using indexed organization. This program can be
compiled and executed using JCL on Mainframes where it will display all the records present in the file. On
Mainframes server, we do not use text files; instead we use PS files.
Let’s assume that the file present on Mainframes have same content as input.txt file in the above example.
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT STUDENT ASSIGN TO IN1
ORGANIZATION IS INDEXED
ACCESS IS RANDOM
RECORD KEY IS STUDENT-ID
FILE STATUS IS FS.
DATA DIVISION.
FILE SECTION.
FD STUDENT.
01 STUDENT-FILE.
05 STUDENT-ID PIC 9(5).
05 NAME PIC A(25).
WORKING-STORAGE SECTION.
01 WS-STUDENT.
05 WS-STUDENT-ID PIC 9(5).
05 WS-NAME PIC A(25).
PROCEDURE DIVISION.
OPEN INPUT STUDENT.
MOVE 20005 TO STUDENT-ID.
CLOSE STUDENT.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Write statement can be used with FROM option to directly write records from the working storage
variables. From is an optional clause. If the access mode is sequential, then to write a record, the file must
open in Output mode or Extend mode. If the access mode is random or dynamic, then to write a record, the
file must open in Output mode or I-O mode.
Syntax
Following is the syntax to read a record when the file organization is sequential −
Following is the syntax to read a record when the file organization is indexed or relative −
Example − The following example shows how to insert a new record in a new file when the organization is
sequential.
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT STUDENT ASSIGN TO OUT1
ORGANIZATION IS SEQUENTIAL
ACCESS IS SEQUENTIAL
FILE STATUS IS FS.
DATA DIVISION.
FILE SECTION.
FD STUDENT
01 STUDENT-FILE.
05 STUDENT-ID PIC 9(5).
05 NAME PIC A(25).
05 CLASS PIC X(3).
WORKING-STORAGE SECTION.
01 WS-STUDENT.
05 WS-STUDENT-ID PIC 9(5).
05 WS-NAME PIC A(25).
05 WS-CLASS PIC X(3).
PROCEDURE DIVISION.
OPEN EXTEND STUDENT.
MOVE 1000 TO STUDENT-ID.
MOVE 'Tim' TO NAME.
MOVE '10' TO CLASS.
WRITE STUDENT-FILE
END-WRITE.
CLOSE STUDENT.
STOP RUN.
JCL to execute the above COBOL program −
When you compile and execute the above program, it will add a new record to the output file.
1000 Tim 10
Rewrite Verb
Rewrite verb is used to update the records. File should be opened in I-O mode for rewrite operations. It can
be used only after a successful Read operation. Rewrite verb overwrites the last record read.
Syntax
Following is the syntax to read a record when the file organization is sequential −
Following is the syntax to read a record when the file organization is indexed or relative −
Example − The following example shows how to update an existing record which we have inserted in the
previous Write step −
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT STUDENT ASSIGN TO IN1
ORGANIZATION IS INDEXED
ACCESS IS RANDOM
RECORD KEY IS STUDENT-ID
FILE STATUS IS FS.
DATA DIVISION.
FILE SECTION.
FD STUDENT
01 STUDENT-FILE.
05 STUDENT-ID PIC 9(4).
05 NAME PIC A(12).
05 CLASS PIC X(3).
WORKING-STORAGE SECTION.
01 WS-STUDENT.
05 WS-STUDENT-ID PIC 9(5).
05 WS-NAME PIC A(25).
05 WS-CLASS PIC X(3).
PROCEDURE DIVISION.
OPEN I-O STUDENT.
MOVE '1000' TO STUDENT-ID.
READ STUDENT
KEY IS STUDENT-ID
INVALID KEY DISPLAY ‘KEY IS NOT EXISTING’
END-READ.
When you compile and execute the above program, it will update the record −
Delete Verb
Delete verb can be performed only on indexed and relative files. The file must be opened in I-O mode. In
sequential file organization, records cannot be deleted. The record last read by the Read statement is deleted
in case of sequential access mode. In random access mode, specify the record key and then perform the
Delete operation.
Syntax
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT STUDENT ASSIGN TO OUT1
ORGANIZATION IS INDEXED
ACCESS IS RANDOM
RECORD KEY IS STUDENT-ID
FILE STATUS IS FS.
DATA DIVISION.
FILE SECTION.
FD STUDENT
01 STUDENT-FILE.
05 STUDENT-ID PIC 9(4).
05 NAME PIC A(12).
05 CLASS PIC X(3).
WORKING-STORAGE SECTION.
01 WS-STUDENT.
05 WS-STUDENT-ID PIC 9(5).
05 WS-NAME PIC A(25).
05 WS-CLASS PIC X(3).
PROCEDURE DIVISION.
OPEN I-O STUDENT.
MOVE '1000' TO STUDENT-ID.
CLOSE STUDENT.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Record Deleted
Start Verb
Start verb can be performed only on indexed and relative files. It is used to place the file pointer at a specific
record. The access mode must be sequential or dynamic. File must be opened in I-O or Input mode.
Syntax
START file-name KEY IS [=, >, <, NOT, <= or >=] rec-key
INVALID KEY DISPLAY 'Invalid Key'
NOT INVALID KEY DISPLAY 'File Pointer Updated'
END-START.
Close Verb
Close verb is used to close a file. After performing Close operation, the variables in the file structure will not
be available for processing. The link between program and file is lost.
Syntax
CLOSE file-name.
COBOL – Subroutines
Cobol subroutine is a program that can be compiled independently but cannot be executed independently.
There are two types of subroutines: internal subroutines like Perform statements and external subroutines
like CALL verb.
Call Verb
Call verb is used to transfer the control from one program to another program. The program that contains the
CALL verb is the Calling Program and the program being called is known as the Called Program. Calling
program execution will halt until the called program finishes the execution. Exit Program statement is used
in the Called program to transfer the control back.
Linkage section must be defined in the called program. It consists of data elements passed in the
program. The data items should not have Value clause. PIC clause must be compatible with the
variables passed through the calling program.
Procedure division using has a list of variables passed from the calling program and the order must
be same as mentioned in the Call verb.
Exit program statement is used in the called program to transfer the control back. It must be the last
statement in the called program.
By Reference
By Content
Call By Reference
If the values of variables in the called program are modified, then their new values will reflect in the calling
program. If BY clause is not specified, then variables are always passed by reference.
Syntax
Example
Following example is the MAIN calling program and UTIL is the called program −
IDENTIFICATION DIVISION.
PROGRAM-ID. MAIN.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-STUDENT-ID PIC 9(4) VALUE 1000.
01 WS-STUDENT-NAME PIC A(15) VALUE 'Tim'.
PROCEDURE DIVISION.
CALL 'UTIL' USING WS-STUDENT-ID, WS-STUDENT-NAME.
DISPLAY 'Student Id : ' WS-STUDENT-ID
DISPLAY 'Student Name : ' WS-STUDENT-NAME
STOP RUN.
Called Program
IDENTIFICATION DIVISION.
PROGRAM-ID. UTIL.
DATA DIVISION.
LINKAGE SECTION.
01 LS-STUDENT-ID PIC 9(4).
01 LS-STUDENT-NAME PIC A(15).
When you compile and execute the above program, it produces the following result −
In Called Program
Student Id : 1111
Student Name : Tim
Call By Content
If the values of variables in the called program are modified, then their new values will not reflect in the
calling program.
Syntax
Example
Following example is the MAIN calling program and UTIL is the called program −
IDENTIFICATION DIVISION.
PROGRAM-ID. MAIN.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-STUDENT-ID PIC 9(4) VALUE 1000.
01 WS-STUDENT-NAME PIC A(15) VALUE 'Tim'.
PROCEDURE DIVISION.
CALL 'UTIL' USING BY CONTENT WS-STUDENT-ID, BY CONTENT WS-STUDENT-NAME.
DISPLAY 'Student Id : ' WS-STUDENT-ID
DISPLAY 'Student Name : ' WS-STUDENT-NAME
STOP RUN.
Called Program
IDENTIFICATION DIVISION.
PROGRAM-ID. UTIL.
DATA DIVISION.
LINKAGE SECTION.
01 LS-STUDENT-ID PIC 9(4).
01 LS-STUDENT-NAME PIC A(15).
When you compile and execute the above program, it produces the following result −
In Called Program
Student Id : 1000
Student Name : Tim
Types of Call
There are two types of calls −
Static Call occurs when a program is compiled with the NODYNAM compiler option. A static
called program is loaded into storage at compile time.
Dynamic Call occurs when a program is compiled with the DYNAM and NODLL compiler option.
A dynamic called program is loaded into storage at runtime.
COBOL – Internal Sort
Sorting of data in a file or merging of two or more files is a common necessity in almost all business-
oriented applications. Sorting is used for arranging records either in ascending or descending order, so that
sequential processing can be performed. There are two techniques which are used for sorting files in
COBOL −
External sort is used to sort files by using the SORT utility in JCL. We have discussed this in the
JCL chapter. As of now, we will focus on internal sort.
Internal sort is used to sort files within a COBOL program. SORT verb is used to sort a file.
Sort Verb
Three files are used in the sort process in COBOL −
Input file is the file which we have to sort either in ascending or descending order.
Work file is used to hold records while the sort process is in progress. Input file records are
transferred to the work file for the sorting process. This file should be defined in the File-Section
under SD entry.
Output file is the file which we get after the sorting process. It is the final output of the Sort verb.
Syntax
o Opens work-file in I-O mode, input-file in the INPUT mode and output-file in the OUTPUT
mode.
o Transfers the records present in the input-file to the work-file.
o Sorts the SORT-FILE in ascending/descending sequence by rec-key.
o Transfers the sorted records from the work-file to the output-file.
o Closes the input-file and the output-file and deletes the work-file.
Example
In the following example, INPUT is the input file which needs to be sorted in ascending order −
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT INPUT ASSIGN TO IN.
SELECT OUTPUT ASSIGN TO OUT.
SELECT WORK ASSIGN TO WRK.
DATA DIVISION.
FILE SECTION.
FD INPUT.
01 INPUT-STUDENT.
05 STUDENT-ID-I PIC 9(5).
05 STUDENT-NAME-I PIC A(25).
FD OUTPUT.
01 OUTPUT-STUDENT.
05 STUDENT-ID-O PIC 9(5).
05 STUDENT-NAME-O PIC A(25).
SD WORK.
01 WORK-STUDENT.
05 STUDENT-ID-W PIC 9(5).
05 STUDENT-NAME-W PIC A(25).
PROCEDURE DIVISION.
SORT WORK ON ASCENDING KEY STUDENT-ID-O
USING INPUT GIVING OUTPUT.
DISPLAY 'Sort Successful'.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Sort Successful
Merge Verb
Two or more identically sequenced files are combined using Merge statement. Files used in the merge
process −
Syntax
o Opens the work-file in I-O mode, input-files in the INPUT mode and output-file in the
OUTPUT mode.
o Transfers the records present in the input-files to the work-file.
o Sorts the SORT-FILE in ascending/descending sequence by rec-key.
o Transfers the sorted records from the work-file to the output-file.
o Closes the input-file and the output-file and deletes the work-file.
Example
In the following example, INPUT1 and INPUT2 are the input files which are to be merged in ascending
order −
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT INPUT1 ASSIGN TO IN1.
SELECT INPUT2 ASSIGN TO IN2.
SELECT OUTPUT ASSIGN TO OUT.
SELECT WORK ASSIGN TO WRK.
DATA DIVISION.
FILE SECTION.
FD INPUT1.
01 INPUT1-STUDENT.
05 STUDENT-ID-I1 PIC 9(5).
05 STUDENT-NAME-I1 PIC A(25).
FD INPUT2.
01 INPUT2-STUDENT.
05 STUDENT-ID-I2 PIC 9(5).
05 STUDENT-NAME-I2 PIC A(25).
FD OUTPUT.
01 OUTPUT-STUDENT.
05 STUDENT-ID-O PIC 9(5).
05 STUDENT-NAME-O PIC A(25).
SD WORK.
01 WORK-STUDENT.
05 STUDENT-ID-W PIC 9(5).
05 STUDENT-NAME-W PIC A(25).
PROCEDURE DIVISION.
MERGE WORK ON ASCENDING KEY STUDENT-ID-O
USING INPUT1, INPUT2 GIVING OUTPUT.
DISPLAY 'Merge Successful'.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Merge Successful
COBOL – Database Interface
As of now, we have learnt the use of files in COBOL. Now, we will discuss how a COBOL program
interacts with DB2. It involves the following terms −
Embedded SQL
DB2 Application Programming
Host Variables
SQLCA
SQL Queries
Cursors
Embedded SQL
Embedded SQL statements are used in COBOL programs to perform standard SQL operations. Embedded
SQL statements are preprocessed by the SQL processor before the application program is compiled.
COBOL is known as the Host Language. COBOL-DB2 applications are those applications that include
both COBOL and DB2.
Embedded SQL statements work like normal SQL statements with some minor changes. For example, the
output of a query is directed to a predefined set of variables which are referred as Host Variables. An
additional INTO clause is placed in the SELECT statement.
Host Variables
Host variables are used for receiving data from a table or inserting data in a table. Host variables must be
declared for all values that are to be passed between the program and the DB2. They are declared in the
Working-Storage Section.
Host variables cannot be group items, but they may be grouped together in host structure. They cannot
be Renamed or Redefined. Using host variables with SQL statements, prefix them with a colon (:)..
Syntax
Following is the syntax to declare host variables and include tables in the Working-Storage section −
DATA DIVISION.
WORKING-STORAGE SECTION.
EXEC SQL
INCLUDE table-name
END-EXEC.
EXEC SQL BEGIN DECLARE SECTION
END-EXEC.
01 STUDENT-REC.
05 STUDENT-ID PIC 9(4).
05 STUDENT-NAME PIC X(25).
05 STUDENT-ADDRESS X(50).
EXEC SQL END DECLARE SECTION
END-EXEC.
SQLCA
SQLCA is a SQL communication area through which DB2 passes the feedback of SQL execution to the
program. It tells the program whether an execution was successful or not. There are a number of predefined
variables under SQLCA like SQLCODE which contains the error code. The value ‘000’ in SQLCODE
states a successful execution.
Syntax
DATA DIVISION.
WORKING-STORAGE SECTION.
EXEC SQL
INCLUDE SQLCA
END-EXEC.
SQL Queries
Let’s assume we have one table named as ‘Student’ that contains Student-Id, Student-Name, and Student-
Address.
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
EXEC SQL
INCLUDE SQLCA
END-EXEC.
EXEC SQL
INCLUDE STUDENT
END-EXEC.
PROCEDURE DIVISION.
EXEC SQL
SELECT STUDENT-ID, STUDENT-NAME, STUDENT-ADDRESS
INTO :WS-STUDENT-ID, :WS-STUDENT-NAME, WS-STUDENT-ADDRESS FROM STUDENT
WHERE STUDENT-ID=1004
END-EXEC.
IF SQLCODE = 0
DISPLAY WS-STUDENT-RECORD
ELSE DISPLAY 'Error'
END-IF.
STOP RUN.
When you compile and execute the above program, it produces the following result −
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
EXEC SQL
INCLUDE SQLCA
END-EXEC.
EXEC SQL
INCLUDE STUDENT
END-EXEC.
PROCEDURE DIVISION.
MOVE 1005 TO WS-STUDENT-ID.
MOVE 'TutorialsPoint' TO WS-STUDENT-NAME.
MOVE 'Hyderabad' TO WS-STUDENT-ADDRESS.
EXEC SQL
INSERT INTO STUDENT(STUDENT-ID, STUDENT-NAME, STUDENT-ADDRESS)
VALUES (:WS-STUDENT-ID, :WS-STUDENT-NAME, WS-STUDENT-ADDRESS)
END-EXEC.
IF SQLCODE = 0
DISPLAY 'Record Inserted Successfully'
DISPLAY WS-STUDENT-REC
ELSE DISPLAY 'Error'
END-IF.
STOP RUN.
When you compile and execute the above program, it produces the following result −
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
EXEC SQL
INCLUDE SQLCA
END-EXEC.
EXEC SQL
INCLUDE STUDENT
END-EXEC.
PROCEDURE DIVISION.
MOVE 'Bangalore' TO WS-STUDENT-ADDRESS.
EXEC SQL
UPDATE STUDENT SET STUDENT-ADDRESS=:WS-STUDENT-ADDRESS
WHERE STUDENT-ID = 1003
END-EXEC.
IF SQLCODE = 0
DISPLAY 'Record Updated Successfully'
ELSE DISPLAY 'Error'
END-IF.
STOP RUN.
When you compile and execute the above program, it produces the following result −
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
EXEC SQL
INCLUDE SQLCA
END-EXEC.
EXEC SQL
INCLUDE STUDENT
END-EXEC.
PROCEDURE DIVISION.
MOVE 1005 TO WS-STUDENT-ID.
EXEC SQL
DELETE FROM STUDENT
WHERE STUDENT-ID=:WS-STUDENT-ID
END-EXEC.
IF SQLCODE = 0
DISPLAY 'Record Deleted Successfully'
ELSE DISPLAY 'Error'
END-IF.
STOP RUN.
When you compile and execute the above program, it produces the following result −
Cursors
Cursors are used to handle multiple row selections at a time. They are data structures that hold all the results
of a query. They can be defined in the Working-Storage Section or the Procedure Division. Following are
the operations associated with Cursor −
Declare
Open
Close
Fetch
Declare Cursor
Cursor declaration can be done in the Working-Storage Section or the Procedure Division. The first
statement is the DECLARE statement which is a nonexecutable statement.
EXEC SQL
DECLARE STUDCUR CURSOR FOR
SELECT STUDENT-ID, STUDENT-NAME, STUDENT-ADDRESS FROM STUDENT
WHERE STUDENT-ID >:WS-STUDENT-ID
END-EXEC.
Open
Before using a cursor, Open statement must be performed. The Open statement prepares the SELECT for
execution.
EXEC SQL
OPEN STUDCUR
END-EXEC.
Close
Close statement releases all the memory occupied by the cursor. It is mandatory to close a cursor before
ending a program.
EXEC SQL
CLOSE STUDCUR
END-EXEC.
Fetch
Fetch statement identifies the cursor and puts the value in the INTO clause. A Fetch statement is coded in
loop as we get one row at a time.
EXEC SQL
FETCH STUDCUR
INTO :WS-STUDENT-ID, :WS-STUDENT-NAME, WS-STUDENT-ADDRESS
END-EXEC.
The following example shows the usage of cursor to fetch all the records from the STUDENT table −
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
DATA DIVISION.
WORKING-STORAGE SECTION.
EXEC SQL
INCLUDE SQLCA
END-EXEC.
EXEC SQL
INCLUDE STUDENT
END-EXEC.
EXEC SQL
DECLARE STUDCUR CURSOR FOR
SELECT STUDENT-ID, STUDENT-NAME, STUDENT-ADDRESS FROM STUDENT
WHERE STUDENT-ID >:WS-STUDENT-ID
END-EXEC.
PROCEDURE DIVISION.
MOVE 1001 TO WS-STUDENT-ID.
PERFORM UNTIL SQLCODE = 100
EXEC SQL
FETCH STUDCUR
INTO :WS-STUDENT-ID, :WS-STUDENT-NAME, WS-STUDENT-ADDRESS
END-EXEC
DISPLAY WS-STUDENT-REC
END-PERFORM
STOP RUN.
When you compile and execute the above program, it produces the following result −
Completion of Course
Dear Students,
The textbook courses by Academy Europe are targeted at providing the students with the most important
aspects of the theoretical and methodical materials. In addition, the textbook courses will also focus on the
philosophical background for the development and use of the theoretical background and are thus to be
understood as partly complementary to the material of the course notes. It is assumed and strongly suggested
that the students study and become familiar with the course notes.
Certification
Certification is a formal proof and recognition of accredited online courses by Academy Europe. It shows all
student’s abilities to learn and achieve high results and is very useful to promote personal career including
with CVs, job applications and self improvements.
Click on “Course Complete”, then click on “Certificate”, so download and share it on social media, use it for
personal career promotion.
– Join Academy Europe social media channels on Youtube, Facebook, Linkedin, Twitter and more. Share
and like them by using your social media accounts.
Facebook: https://www.facebook.com/academyeurope
Twitter: https://twitter.com/academyeurope
Youtube: https://www.youtube.com/c/academyeurope
Linkedin: https://www.linkedin.com/company/academy-europe/