Enterprise Cobol Programming Guide
Enterprise Cobol Programming Guide
Programming Guide
Version 3 Release 3
SC27-1412-02
Enterprise COBOL for z/OS
Programming Guide
Version 3 Release 3
SC27-1412-02
Note!
Before using this information and the product it supports, be sure to read the general information under “Notices” on page
725.
iv Programming Guide
Using striped extended-format QSAM data sets 139 Describing the input to sorting or merging . . . 183
Accessing HFS files using QSAM . . . . . . . 140 Example: describing sort and input files for
Labels for QSAM files . . . . . . . . . . 141 SORT . . . . . . . . . . . . . . . 183
Using trailer and header labels . . . . . . 141 Coding the input procedure . . . . . . . . 184
Format of standard labels . . . . . . . . 143 Describing the output from sorting or merging . . 185
Processing QSAM ASCII files on tape . . . . . 144 Coding the output procedure . . . . . . . . 185
Requesting the ASCII alphabet . . . . . . 144 Coding considerations when using DFSORT . . 186
Defining the record formats . . . . . . . 144 Example: coding the output procedure when
Defining the ddname . . . . . . . . . . 144 using DFSORT . . . . . . . . . . . . 186
Processing ASCII file labels . . . . . . . . . 145 Restrictions on input and output procedures . . . 187
Defining sort and merge data sets . . . . . . 187
Chapter 10. Processing VSAM files 147 Sorting variable-length records . . . . . . . 188
VSAM files . . . . . . . . . . . . . . 148 Requesting the sort or merge . . . . . . . . 188
Defining VSAM file organization and records . . 149 Setting sort or merge criteria . . . . . . . 189
Specifying sequential organization for VSAM Example: sorting with input and output
files . . . . . . . . . . . . . . . 150 procedures . . . . . . . . . . . . . 190
Specifying indexed organization for VSAM files 150 Choosing alternate collating sequences . . . . 190
Specifying relative organization for VSAM files 151 Sorting on windowed date fields . . . . . . 191
Specifying access modes for VSAM files . . . 153 Preserving the original sequence of records with
Defining record lengths for VSAM files . . . . 154 equal keys . . . . . . . . . . . . . 191
Coding input and output statements for VSAM Determining whether the sort or merge was
files . . . . . . . . . . . . . . . . 155 successful . . . . . . . . . . . . . . 192
File position indicator . . . . . . . . . 157 Stopping a sort or merge operation prematurely 192
Opening a file (ESDS, KSDS, or RRDS) . . . . 158 Improving sort performance with FASTSRT . . . 193
Reading records from a VSAM file . . . . . 160 FASTSRT requirements for JCL . . . . . . 193
Updating records in a VSAM file . . . . . . 161 FASTSRT requirements for sort input and
Adding records to a VSAM file . . . . . . 162 output files . . . . . . . . . . . . . 193
Replacing records in a VSAM file. . . . . . 162 Checking for sort errors with NOFASTSRT . . . 195
Deleting records from a VSAM file . . . . . 163 Controlling sort behavior . . . . . . . . . 195
Closing VSAM files . . . . . . . . . . 163 Sort special registers . . . . . . . . . . 196
Handling errors in VSAM files . . . . . . . 164 Changing DFSORT defaults with control
Protecting VSAM files with a password . . . . 164 statements . . . . . . . . . . . . . 197
Example: password protection for a VSAM Allocating storage for sort or merge operations 197
indexed file . . . . . . . . . . . . . 165 Allocating space for sort files . . . . . . . 198
Working with VSAM data sets under z/OS and Using checkpoint/restart with DFSORT . . . . 198
UNIX . . . . . . . . . . . . . . . . 165 Sorting under CICS . . . . . . . . . . . 199
Defining VSAM files . . . . . . . . . . 166 CICS SORT application restrictions . . . . . 199
Creating alternate indexes . . . . . . . . 167
Allocating VSAM files . . . . . . . . . 169 Chapter 13. Handling errors . . . . . 201
Sharing VSAM files through RLS . . . . . . 170 Requesting dumps . . . . . . . . . . . 201
Improving VSAM performance . . . . . . . 171 Creating a formatted dump. . . . . . . . 201
Creating a system dump . . . . . . . . 202
Chapter 11. Processing line-sequential Handling errors in joining and splitting strings . . 202
files . . . . . . . . . . . . . . . 175 Handling errors in arithmetic operations . . . . 203
Example: checking for division by zero . . . . 203
Defining line-sequential files and records in
Handling errors in input and output operations 203
COBOL . . . . . . . . . . . . . . . 175
Using the end-of-file condition (AT END) . . . 206
Allowable control characters . . . . . . . 176
Coding ERROR declaratives . . . . . . . 207
Describing the structure of a line-sequential file 176
Using file status keys . . . . . . . . . . 208
Defining and allocating line-sequential files . . . 177
Example: file status key . . . . . . . . . 209
Coding input-output statements for line-sequential
Using VSAM return codes (VSAM files only) 209
files . . . . . . . . . . . . . . . . 177
Example: checking VSAM status codes . . . . 210
Opening line-sequential files . . . . . . . 178
Coding INVALID KEY phrases . . . . . . 212
Reading records from line-sequential files . . . 178
Example: FILE STATUS and INVALID KEY . . 212
Adding records to line-sequential files . . . . 179
Handling errors when calling programs . . . . 213
Closing line-sequential files. . . . . . . . 179
Writing routines for handling errors . . . . . . 213
Handling errors in line-sequential files . . . . . 180
Chapter 12. Sorting and merging files 181 Part 2. Compiling and debugging
Sort and merge process . . . . . . . . . . 182 your program . . . . . . . . . . 215
Describing the sort or merge file . . . . . . . 182
Contents v
Chapter 14. Compiling under z/OS 217 Example: compiling and linking a COBOL class
Compiling with JCL . . . . . . . . . . . 217 definition under UNIX . . . . . . . . . 259
Using a cataloged procedure . . . . . . . 218 Running OO applications under UNIX . . . . 259
Writing JCL to compile programs . . . . . . 228 Compiling, linking, and running OO applications
Compiling under TSO . . . . . . . . . . 229 using JCL or TSO/E . . . . . . . . . . . 261
Example: ALLOCATE and CALL for compiling Compiling OO applications using JCL or TSO/E 261
under TSO . . . . . . . . . . . . . 230 Preparing and running OO applications using
Example: CLIST for compiling under TSO . . . 230 JCL or TSO/E . . . . . . . . . . . . 262
Starting the compiler from an assembler program 231 Example: compiling, linking, and running an
Defining compiler input and output . . . . . . 232 OO application using JCL . . . . . . . . 263
Data sets used by the compiler under z/OS . . 233
Defining the source code data set (SYSIN) . . . 235 Chapter 17. Compiler options . . . . 267
Specifying source libraries (SYSLIB) . . . . . 235 Option settings for COBOL 85 Standard
Defining the output data set (SYSPRINT) . . . 236 conformance. . . . . . . . . . . . . . 269
Directing compiler messages to your terminal Conflicting compiler options . . . . . . . . 269
(SYSTERM) . . . . . . . . . . . . . 236 ADATA . . . . . . . . . . . . . . . 270
Creating object code (SYSLIN or SYSPUNCH) 236 ADV . . . . . . . . . . . . . . . . 271
Creating an associated data file (SYSADATA) 237 ARITH . . . . . . . . . . . . . . . 271
Defining the output Java data set (SYSJAVA) 237 AWO . . . . . . . . . . . . . . . . 272
Defining the debug data set (SYSDEBUG) . . . 237 BUFSIZE . . . . . . . . . . . . . . . 273
Specifying compiler options under z/OS . . . . 238 CICS . . . . . . . . . . . . . . . . 273
Specifying compiler options with the PROCESS CODEPAGE . . . . . . . . . . . . . . 274
(CBL) statement . . . . . . . . . . . 238 COMPILE . . . . . . . . . . . . . . 275
Example: specifying compiler options using JCL 239 CURRENCY . . . . . . . . . . . . . . 276
Example: specifying compiler options under DATA . . . . . . . . . . . . . . . . 277
TSO . . . . . . . . . . . . . . . 239 DATEPROC . . . . . . . . . . . . . . 278
Compiler options and compiler output under DBCS . . . . . . . . . . . . . . . . 279
z/OS . . . . . . . . . . . . . . . 239 DECK . . . . . . . . . . . . . . . . 279
Compiling multiple programs (batch compilation) 241 DIAGTRUNC . . . . . . . . . . . . . 280
Example: batch compilation . . . . . . . 242 DLL . . . . . . . . . . . . . . . . 281
Specifying compiler options in a batch DUMP . . . . . . . . . . . . . . . 281
compilation . . . . . . . . . . . . . 242 DYNAM . . . . . . . . . . . . . . . 282
Example: precedence of options in a batch EXIT . . . . . . . . . . . . . . . . 283
compilation . . . . . . . . . . . . . 243 EXPORTALL . . . . . . . . . . . . . 283
Example: LANGUAGE option in a batch FASTSRT . . . . . . . . . . . . . . . 284
compilation . . . . . . . . . . . . . 244 FLAG . . . . . . . . . . . . . . . . 284
Correcting errors in your source program . . . . 245 FLAGSTD . . . . . . . . . . . . . . 285
Generating a list of compiler error messages . . 246 INTDATE . . . . . . . . . . . . . . 287
Messages and listings for compiler-detected LANGUAGE . . . . . . . . . . . . . 287
errors . . . . . . . . . . . . . . . 246 LIB . . . . . . . . . . . . . . . . . 288
Format of compiler error messages . . . . . 246 LINECOUNT . . . . . . . . . . . . . 289
Severity codes for compiler error messages . . 247 LIST . . . . . . . . . . . . . . . . 289
MAP . . . . . . . . . . . . . . . . 290
Chapter 15. Compiling under UNIX 249 NAME . . . . . . . . . . . . . . . 291
Setting environment variables under UNIX . . . 249 NSYMBOL . . . . . . . . . . . . . . 291
Specifying compiler options under UNIX . . . . 250 NUMBER . . . . . . . . . . . . . . 292
Compiling and linking with the cob2 command 251 NUMPROC . . . . . . . . . . . . . . 293
Defining input and output . . . . . . . . 251 OBJECT . . . . . . . . . . . . . . . 294
Creating a DLL . . . . . . . . . . . . 252 OFFSET . . . . . . . . . . . . . . . 294
Example: using cob2 to compile under UNIX 252 OPTIMIZE . . . . . . . . . . . . . . 295
cob2 . . . . . . . . . . . . . . . 253 OUTDD . . . . . . . . . . . . . . . 296
cob2 input and output files . . . . . . . . 254 PGMNAME . . . . . . . . . . . . . . 297
Compiling using scripts . . . . . . . . . . 255 PGMNAME(COMPAT) . . . . . . . . . 297
PGMNAME(LONGUPPER). . . . . . . . 298
Chapter 16. Compiling, linking, and PGMNAME(LONGMIXED) . . . . . . . 298
QUOTE/APOST . . . . . . . . . . . . 299
running OO applications . . . . . . 257 RENT . . . . . . . . . . . . . . . . 299
Compiling, linking, and running OO applications RMODE . . . . . . . . . . . . . . . 300
under UNIX . . . . . . . . . . . . . . 257 SEQUENCE . . . . . . . . . . . . . . 301
Compiling OO applications under UNIX . . . 257 SIZE . . . . . . . . . . . . . . . . 302
Preparing OO applications under UNIX . . . 258 SOURCE . . . . . . . . . . . . . . . 302
vi Programming Guide
SPACE . . . . . . . . . . . . . . . 303 Calling to or from COBOL programs . . . . 361
SQL . . . . . . . . . . . . . . . . 303 Coding nested programs . . . . . . . . 361
SSRANGE . . . . . . . . . . . . . . 304 Coding a COBOL program to run above the
TERMINAL . . . . . . . . . . . . . . 305 16-MB line . . . . . . . . . . . . . 362
TEST . . . . . . . . . . . . . . . . 306 Determining the success of ECI calls. . . . . 362
THREAD . . . . . . . . . . . . . . . 309 Compiling with the CICS option . . . . . . . 362
TRUNC . . . . . . . . . . . . . . . 310 Compiling a sequence of programs . . . . . 363
TRUNC example 1 . . . . . . . . . . 312 Separating CICS suboptions . . . . . . . 364
TRUNC example 2 . . . . . . . . . . 312 Integrated CICS translator . . . . . . . . 364
VBREF . . . . . . . . . . . . . . . 313 Using the separate CICS translator . . . . . . 365
WORD . . . . . . . . . . . . . . . 313 CICS reserved-word table . . . . . . . . . 366
XREF . . . . . . . . . . . . . . . . 314 Handling errors by using CICS HANDLE . . . . 367
YEARWINDOW . . . . . . . . . . . . 315 Example: handling errors by using CICS
ZWB . . . . . . . . . . . . . . . . 316 HANDLE . . . . . . . . . . . . . 368
Contents vii
Ending and reentering main programs or Choosing THREAD to support multithreading . . 439
subprograms . . . . . . . . . . . . . 394 Transferring control with multithreading . . . . 439
Transferring control to another program . . . . 396 Using cancel with threaded programs . . . . 439
Making static calls . . . . . . . . . . . 397 Ending a program . . . . . . . . . . . 439
Making dynamic calls . . . . . . . . . 397 Preinitializing the COBOL environment . . . 440
AMODE switching . . . . . . . . . . 399 Processing files with multithreading . . . . . . 440
Performance considerations of static and File definition storage . . . . . . . . . 440
dynamic calls . . . . . . . . . . . . 401 Recommended usage for file access . . . . . 441
Making both static and dynamic calls . . . . 401 Example: usage patterns of file input and
Examples: static and dynamic CALL statements 402 output with multithreading. . . . . . . . 441
Calling nested COBOL programs . . . . . . 403 Handling COBOL limitations with multithreading 442
Making recursive calls . . . . . . . . . . 407
Calling to and from object-oriented programs . . 407
Part 5. Using XML and COBOL
Using procedure and function pointers . . . . . 407
Deciding which type of pointer to use . . . . 408 together . . . . . . . . . . . . . 445
Calling a C function pointer . . . . . . . 408
Calling to alternate entry points . . . . . . 409 Chapter 28. Processing XML input 447
Making programs reentrant . . . . . . . . 409 XML parser in COBOL . . . . . . . . . . 447
Accessing XML documents . . . . . . . . . 449
Chapter 25. Sharing data . . . . . . 411 Parsing XML documents . . . . . . . . . 449
Passing data . . . . . . . . . . . . . . 411 Processing XML events . . . . . . . . . 450
Describing arguments in the calling program 413 Writing procedures to process XML . . . . . 456
Describing parameters in the called program 413 Understanding the encoding of XML documents 462
Testing for OMITTED arguments . . . . . . 414 Coded character sets for XML documents . . . 463
Coding the LINKAGE SECTION . . . . . . . 414 Code-page-sensitive characters in XML markup 464
Coding the PROCEDURE DIVISION for passing Specifying the code page . . . . . . . . 464
arguments . . . . . . . . . . . . . . 415 Handling errors in parsing XML documents . . . 465
Grouping data to be passed . . . . . . . 415 Unhandled exceptions . . . . . . . . . 467
Handling null-terminated strings . . . . . . 415 Handling exceptions . . . . . . . . . . 468
Using pointers to process a chained list . . . 416 Terminating XML parsing . . . . . . . . 468
Passing return code information . . . . . . . 419 Code-page conflict exception . . . . . . . 469
Understanding the RETURN-CODE special
register . . . . . . . . . . . . . . 419 Chapter 29. Producing XML output 471
Using PROCEDURE DIVISION RETURNING . . Generating XML output . . . . . . . . . . 471
.. . . . . . . . . . . . . . . . . 420 Example: generating XML . . . . . . . . 473
Specifying CALL . . . RETURNING . . . . . 420 Enhancing XML output . . . . . . . . . . 476
Sharing data by using the EXTERNAL clause. . . 420 Example: enhancing XML output . . . . . . 477
Sharing files between programs (external files) . . 421 Controlling the encoding of generated XML output 480
Example: using external files . . . . . . . 421 Handling errors in generating XML output . . . 480
Contents ix
Arithmetic expressions . . . . . . . . . 582 Preventing overlay when adding elements to a
Exponentiations . . . . . . . . . . . 582 variable table . . . . . . . . . . . . 615
Handling tables efficiently . . . . . . . . . 583
Optimization of table references . . . . . . 584 Appendix C. Converting double-byte
Optimizing your code . . . . . . . . . . 586 character set (DBCS) data . . . . . . 619
Optimization . . . . . . . . . . . . 586
DBCS notation . . . . . . . . . . . . . 619
Example: PERFORM procedure integration . . 588
Alphanumeric to DBCS data conversion
Choosing compiler features to enhance
(IGZCA2D) . . . . . . . . . . . . . . 619
performance . . . . . . . . . . . . . . 588
IGZCA2D syntax . . . . . . . . . . . 619
Performance-related compiler options . . . . 589
IGZCA2D return codes . . . . . . . . . 620
Evaluating performance . . . . . . . . . 592
Example: IGZCA2D . . . . . . . . . . 621
Running efficiently with CICS, IMS, or VSAM . . 592
DBCS to alphanumeric data conversion (IGZCD2A) 622
CICS . . . . . . . . . . . . . . . 592
IGZCD2A syntax . . . . . . . . . . . 622
IMS . . . . . . . . . . . . . . . 593
IGZCD2A return codes . . . . . . . . . 623
VSAM . . . . . . . . . . . . . . . 593
Example: IGZCD2A . . . . . . . . . . 623
Chapter 35. Simplifying coding . . . . 595 Appendix D. XML reference material 625
Eliminating repetitive coding . . . . . . . . 595
XML PARSE exceptions that allow continuation 625
Example: using the COPY statement . . . . . 596
XML PARSE exceptions that do not allow
Using Language Environment callable services . . 597
continuation . . . . . . . . . . . . . . 628
Sample list of Language Environment callable
XML conformance . . . . . . . . . . . . 631
services . . . . . . . . . . . . . . 598
XML GENERATE exceptions . . . . . . . . 633
Calling Language Environment services . . . 599
Example: Language Environment callable
services . . . . . . . . . . . . . . 600 Appendix E. EXIT compiler option . . 635
Using the user-exit work area . . . . . . . . 636
Calling from exit modules . . . . . . . . . 637
Part 9. Appendixes . . . . . . . . 601 Processing of INEXIT . . . . . . . . . . . 637
Parameter list for INEXIT . . . . . . . . 637
Appendix A. Intermediate results and Processing of LIBEXIT . . . . . . . . . . 638
arithmetic precision . . . . . . . . 603 Processing of LIBEXIT with nested COPY
Terminology used for intermediate results . . . . 604 statements . . . . . . . . . . . . . 639
Example: calculation of intermediate results . . . 605 Parameter list for LIBEXIT . . . . . . . . 640
Fixed-point data and intermediate results . . . . 605 Processing of PRTEXIT . . . . . . . . . . 641
Addition, subtraction, multiplication, and Parameter list for PRTEXIT . . . . . . . . 641
division . . . . . . . . . . . . . . 605 Processing of ADEXIT . . . . . . . . . . 642
Exponentiation . . . . . . . . . . . . 606 Parameter list for ADEXIT . . . . . . . . 643
Example: exponentiation in fixed-point Error handling for exit modules . . . . . . . 644
arithmetic . . . . . . . . . . . . . 607 Using the EXIT compiler option with CICS and
Truncated intermediate results . . . . . . . 608 SQL statements . . . . . . . . . . . . . 644
Binary data and intermediate results . . . . 608 INEXIT . . . . . . . . . . . . . . 644
Intrinsic functions evaluated in fixed-point LIBEXIT . . . . . . . . . . . . . . 644
arithmetic . . . . . . . . . . . . . . 608 PRTEXIT . . . . . . . . . . . . . . 645
Integer functions . . . . . . . . . . . 608 ADEXIT . . . . . . . . . . . . . . 645
Mixed functions . . . . . . . . . . . 609 Example: INEXIT user exit . . . . . . . . . 645
Floating-point data and intermediate results . . . 610
Exponentiations evaluated in floating-point Appendix F. JNI.cpy . . . . . . . . 649
arithmetic . . . . . . . . . . . . . 611
Intrinsic functions evaluated in floating-point Appendix G. COBOL SYSADATA file
arithmetic . . . . . . . . . . . . . 611 contents . . . . . . . . . . . . . 655
Arithmetic expressions in nonarithmetic statements 611
Existing compiler options affecting the SYSADATA
file . . . . . . . . . . . . . . . . . 655
Appendix B. Complex OCCURS SYSADATA record types . . . . . . . . . 656
DEPENDING ON . . . . . . . . . . 613 Example: SYSADATA . . . . . . . . . . 657
Example: complex ODO . . . . . . . . . . 613 SYSADATA record descriptions . . . . . . . 658
How length is calculated . . . . . . . . 614 Common header section . . . . . . . . . . 659
Setting values of ODO objects . . . . . . . 614 Job identification record - X’0000’ . . . . . . . 660
Effects of change in ODO object value . . . . . 614 ADATA identification record - X’0001’ . . . . . 661
Preventing index errors when changing ODO Compilation unit start/end record - X’0002’ . . . 662
object value . . . . . . . . . . . . . 615 Options record - X’0010’ . . . . . . . . . . 662
x Programming Guide
External symbol record - X’0020’ . . . . . . . 672 Preparing to run IGYTCARB . . . . . . . 709
Parse tree record - X’0024’ . . . . . . . . . 673 IGYTSALE: nested program application . . . . 711
Token record - X’0030’ . . . . . . . . . . 687 Input data for IGYTSALE . . . . . . . . 713
Source error record - X’0032’ . . . . . . . . 687 Reports produced by IGYTSALE . . . . . . 715
Source record - X’0038’ . . . . . . . . . . 688 Preparing to run IGYTSALE . . . . . . . 719
COPY REPLACING record - X’0039’ . . . . . . 688 Language elements and concepts that are
Symbol record - X’0042’ . . . . . . . . . . 689 illustrated . . . . . . . . . . . . . . 720
Symbol cross-reference record - X’0044’ . . . . . 700
Nested program record - X’0046’ . . . . . . . 701 Notices . . . . . . . . . . . . . . 725
Library record - X’0060’ . . . . . . . . . . 702 Trademarks . . . . . . . . . . . . . . 726
Statistics record - X’0090’ . . . . . . . . . 703
EVENTS record - X’0120’ . . . . . . . . . 703
Glossary . . . . . . . . . . . . . 727
Appendix H. Sample programs . . . . 705
List of resources . . . . . . . . . . 751
IGYTCARA: batch application . . . . . . . . 705
Enterprise COBOL for z/OS . . . . . . . . 751
Input data for IGYTCARA . . . . . . . . 706
Related publications . . . . . . . . . . . 751
Report produced by IGYTCARA . . . . . . 707
Preparing to run IGYTCARA . . . . . . . 708
IGYTCARB: interactive program . . . . . . . 709 Index . . . . . . . . . . . . . . . 753
Contents xi
xii Programming Guide
Tables
1. FILE-CONTROL entries . . . . . . . . 8 44. Compiler options . . . . . . . . . . 267
2. FILE SECTION entries . . . . . . . . 14 45. Mutually exclusive compiler options 270
3. Assignment to data items in a program 25 46. Values of the LANGUAGE compiler option 288
4. Effect of RMODE and RENT compiler 47. Severity levels of compiler messages 328
options on the RMODE attribute . . . . . 35 48. Using compiler options to get listings 331
5. Ranges in value of COMP-5 data items 41 49. Terms used in MAP output . . . . . . 338
6. Internal representation of numeric items 42 50. Symbols used in LIST and MAP output 338
7. NUMCLS(PRIM) and valid signs . . . . . 46 51. Signature information bytes for compiler
8. NUMCLS(ALT) and valid signs . . . . . 47 options . . . . . . . . . . . . . 344
9. Order of evaluation of arithmetic operators 48 52. Signature information bytes for the DATA
10. Numeric intrinsic functions . . . . . . . 49 DIVISION . . . . . . . . . . . . 345
11. Compatibility of math intrinsic functions and 53. Signature information bytes for the
callable services . . . . . . . . . . . 50 ENVIRONMENT DIVISION . . . . . . 346
12. INTDATE(ANSI) and compatibility of date 54. Signature information bytes for
intrinsic functions and callable services . . . 51 PROCEDURE DIVISION verbs . . . . . 346
13. INTDATE(LILIAN) and compatibility of date 55. Signature information bytes for more
intrinsic functions and callable services . . . 51 PROCEDURE DIVISION items . . . . . 348
14. Hexadecimal values of the euro sign . . . . 56 56. Calls between COBOL and assembler under
15. COBOL statements and national data 103 CICS . . . . . . . . . . . . . . 361
16. Intrinsic functions and national data 104 57. Compiler options required for the integrated
17. Encoding and size of alphanumeric and CICS translator . . . . . . . . . . . 363
national data . . . . . . . . . . . 107 58. Compiler options required for the separate
18. File organization, access mode, and record CICS translator . . . . . . . . . . . 366
format . . . . . . . . . . . . . . 115 59. TRUNC compiler options recommended for
19. QSAM file allocation . . . . . . . . . 134 the separate CICS translator . . . . . . 366
20. Maximum record length of QSAM files 137 60. Compiler options required with the DB2
21. Handling of QSAM user labels . . . . . 142 coprocessor . . . . . . . . . . . . 374
22. Identifiers for standard tape labels . . . . 143 61. Samples with POSIX function calls . . . . 387
23. Comparison of VSAM data set types 149 62. Effects of termination statements. . . . . 394
24. VSAM file organization, access mode, and 63. Methods for passing data in the CALL
record format . . . . . . . . . . . 150 statement . . . . . . . . . . . . . 412
25. Steps for using variable-length RRDS 152 64. Compiler options for DLL applications 426
26. Definition of VSAM fixed-length records 154 65. Binder options for DLL applications 427
27. Definition of VSAM variable-length records 155 66. Special registers used by the XML parser 456
28. I/O statements for VSAM sequential files 156 67. Supported EBCDIC code pages . . . . . 463
29. I/O statements for VSAM relative and 68. Hexadecimal values of special characters for
indexed files . . . . . . . . . . . 156 code page CCSIDs . . . . . . . . . 464
30. Statements to load records into a VSAM file 159 69. Aliases for XML encoding declarations 465
31. Statements to update records in a VSAM 70. Encoding of generated XML output . . . . 480
file . . . . . . . . . . . . . . . 161 71. Structure of class definitions . . . . . . 488
32. Methods for improving VSAM performance 172 72. Structure of instance method definitions 493
33. Methods for checking for sort errors with 73. Structure of COBOL clients . . . . . . 502
NOFASTSRT . . . . . . . . . . . 195 74. Structure of factory definitions . . . . . 515
34. Methods for controlling sort behavior 196 75. Structure of factory method definitions 516
35. Compiler data sets . . . . . . . . . 233 76. JNI services for local and global references 531
36. Block size of fixed-length compiler data sets 235 77. Interoperable data types in COBOL and Java 532
37. Block size of variable-length compiler data 78. Interoperable arrays and strings in COBOL
sets . . . . . . . . . . . . . . . 235 and Java . . . . . . . . . . . . . 532
38. Types of compiler output under z/OS 239 79. Noninteroperable array types in COBOL
39. Severity codes for compiler error messages 247 and Java . . . . . . . . . . . . . 533
40. Input files to the cob2 command . . . . . 254 80. JNI array services . . . . . . . . . . 534
41. Output files from the cob2 command 255 81. Services that convert between jstring
42. Commands for compiling and linking a references and national data . . . . . . 536
class definition . . . . . . . . . . . 258 82. Services that convert between jstring
43. java command options for customizing the references and alphanumeric data . . . . 537
JVM . . . . . . . . . . . . . . 260
This version of IBM COBOL adds new COBOL function to help integrate COBOL
business processes and Web-oriented business processes by:
v Simplifying the componentization of COBOL programs and enabling
interoperability with Java components
v Promoting the exchange and use of data in standardized formats, including
XML and Unicode
Accessibility
| Accessibility features help a user who has a physical disability, such as restricted
| mobility or limited vision, to use software products successfully. The accessibility
| features in z/OS provide accessibility for Enterprise COBOL.
| These guides describe how to use TSO/E and ISPF, including the use of keyboard
| shortcuts or function keys (PF keys). Each guide includes the default settings for
| the PF keys and explains how to modify their functions.
| To enable your screen reader to accurately read syntax diagrams, source code
| examples, and text that contains the period and comma PICTURE symbols, you
| must set the screen reader to speak all punctuation.
For a comparison of commonly used Enterprise COBOL and IBM z/OS Language
Environment terms, see “Comparison of commonly used terms” on page xvii.
Abbreviated terms
Certain terms are used in a shortened form in this document. Abbreviations for the
product names used most frequently are listed alphabetically in the following
table:
OS/390 Version 2 Release 10 and z/OS Version 1 Release 1 and later are referred to
collectively as “z/OS” throughout this document. The e-server zSeries and the
S/390 hardware are referred to collectively as “zSeries.”
Other terms, if not commonly understood, are shown in italics the first time that
they appear, and are listed in the glossary at the back of this document.
required_item
required_item
optional_item
required_item required_choice1
required_choice2
If choosing one of the items is optional, the entire stack appears below the main
path:
required_item
optional_choice1
optional_choice2
If one of the items is the default, it appears above the main path and the
remaining choices are shown below:
default_choice
required_item
optional_choice
optional_choice
v An arrow returning to the left, above the main line, indicates an item that can be
repeated:
required_item repeatable_item
If the repeat arrow contains a comma, you must separate repeated items with a
comma:
required_item repeatable_item
v Keywords appear in uppercase (for example, FROM). They must be spelled exactly
as shown. Variables appear in lowercase italics (for example, column-name). They
represent user-supplied names or values.
v If punctuation marks, parentheses, arithmetic operators, or other such symbols
are shown, you must enter them as part of the syntax.
To more clearly separate some examples from the explanatory text, they are
presented in a monospace font.
COBOL keywords and compiler options that appear in text are generally shown in
SMALL UPPERCASE. Other terms such as program variable names are sometimes
shown in an italic font for clarity.
You can check that Web site for the latest editions of the documents. In the
BookManager version of a document, the content of some tables and syntax
diagrams might be aligned improperly due to variations in the display technology.
Summary of changes
This section lists the key changes that have been made to Enterprise COBOL. The
changes that are discussed in this document have an associated cross-reference for
your convenience. The latest technical changes are marked by a revision bar in the
left margin.
xx Programming Guide
documents encoded in Unicode UTF-16 or several single-byte EBCDIC or ASCII
code pages (Chapter 28, “Processing XML input,” on page 447)
v Support for compilation of programs that contain CICS statements, without the
need for a separate translation step (“Integrated CICS translator” on page 364)
– Compiler option CICS, enabling integrated CICS translation and specification
of CICS options (“CICS” on page 273)
v Support for Unicode provided by NATIONAL data type and national (N, NX) literals,
intrinsic functions DISPLAY-OF and NATIONAL-OF for character conversions, and
compiler options NSYMBOL and CODEPAGE (Chapter 7, “Processing character data in
an international environment,” on page 103)
– Compiler option CODEPAGE to specify the code page used for encoding national
literals, and alphanumeric and DBCS data items and literals (“CODEPAGE”
on page 274)
– Compiler option NSYMBOL to control whether national or DBCS processing
should be in effect for literals and data items that use the N symbol
(“NSYMBOL” on page 291)
v Multithreading support: support of POSIX threads and asynchronous signals,
permitting applications with COBOL programs to run on multiple threads
within a process (Chapter 27, “Preparing COBOL programs for multithreading,”
on page 437)
– Compiler option THREAD, enabling programs to run in Language Environment
enclaves with multiple POSIX threads or PL/I subtasks (“THREAD” on page
309)
v VALUE clauses for BINARY data items that permit numeric literals to have a value
of magnitude up to the capacity of the native binary representation, rather than
being limited to the value implied by the number of 9s in the PICTURE clause
(“Formats for numeric data” on page 40)
v A 4-byte FUNCTION-POINTER data item that can contain the address of a COBOL
or non-COBOL entry point, providing easier interoperability with C function
pointers (“Using procedure and function pointers” on page 407)
v The following support is no longer provided (as documented in Enterprise
COBOL Compiler and Run-Time Migration Guide):
– SOM-based object-oriented syntax and services
– Compiler options CMPR2, ANALYZE, FLAGMIG, TYPECHK, and IDLGEN
v Changed default values for the following compiler options: DBCS (“DBCS” on
page 279), FLAG(I,I) (“FLAG” on page 284), RENT (“RENT” on page 299), and
XREF(FULL) (“XREF” on page 314)
Be sure to include the name of the document, the publication number of the
document, the version of Enterprise COBOL, and, if applicable, the specific
location (for example, page number) of the text that you are commenting on.
When you send information to IBM, you grant IBM a nonexclusive right to use or
distribute the information in any way it believes appropriate without incurring any
obligation to you.
2 Programming Guide
Establishing record formats . . . . . . . . 120 Specifying relative organization for VSAM files 151
Logical records . . . . . . . . . . . 120 Fixed-length and variable-length RRDS . . . 152
Requesting fixed-length format . . . . . 121 Simulating variable-length RRDS . . . . . 152
Requesting variable-length format . . . . 122 Specifying access modes for VSAM files . . . 153
Requesting spanned format. . . . . . . 124 Example: using dynamic access with VSAM
Requesting undefined format . . . . . . 126 files . . . . . . . . . . . . . . 154
Setting block sizes . . . . . . . . . . . 127 Defining record lengths for VSAM files . . . . 154
Letting z/OS determine block size . . . . 127 Defining fixed-length records . . . . . . 154
Setting block size explicitly . . . . . . . 127 Defining variable-length records . . . . . 155
Taking advantage of LBI. . . . . . . . 128 Coding input and output statements for VSAM
Block size and the DCB RECFM files . . . . . . . . . . . . . . . . 155
subparameter . . . . . . . . . . . 129 File position indicator . . . . . . . . . 157
Coding input and output statements for QSAM Opening a file (ESDS, KSDS, or RRDS) . . . . 158
files . . . . . . . . . . . . . . . . 129 Opening an empty file . . . . . . . . 158
Opening QSAM files . . . . . . . . . . 130 Statements to load records into a VSAM file 159
Dynamically creating QSAM files with Opening a loaded file (a file with records) 160
CBLQDA . . . . . . . . . . . . . . 130 Reading records from a VSAM file . . . . . 160
Adding records to QSAM files. . . . . . . 131 Updating records in a VSAM file . . . . . . 161
Updating QSAM files . . . . . . . . . 131 Adding records to a VSAM file . . . . . . 162
Writing QSAM files to a printer or spooled data Adding records sequentially . . . . . . 162
set . . . . . . . . . . . . . . . . 131 Adding records randomly or dynamically 162
Controlling the page size . . . . . . . 132 Replacing records in a VSAM file. . . . . . 162
Controlling the vertical positioning of records 132 Deleting records from a VSAM file . . . . . 163
Closing QSAM files . . . . . . . . . . 132 Closing VSAM files . . . . . . . . . . 163
Handling errors in QSAM files . . . . . . . 133 Handling errors in VSAM files . . . . . . . 164
Working with QSAM files . . . . . . . . . 133 Protecting VSAM files with a password . . . . 164
Defining and allocating QSAM files . . . . . 134 Example: password protection for a VSAM
Parameters for creating QSAM files . . . . 135 indexed file . . . . . . . . . . . . . 165
Retrieving QSAM files . . . . . . . . . 136 Working with VSAM data sets under z/OS and
Parameters for retrieving QSAM files . . . 136 UNIX . . . . . . . . . . . . . . . . 165
Ensuring file attributes match your program 137 Defining VSAM files . . . . . . . . . . 166
Processing existing files . . . . . . . . 137 Creating alternate indexes . . . . . . . . 167
Defining variable-length (format-V) records 138 Example: entries for alternate indexes . . . 168
Defining format-U records . . . . . . . 138 Allocating VSAM files . . . . . . . . . 169
Defining fixed-length records . . . . . . 138 Sharing VSAM files through RLS . . . . . . 170
Processing new files . . . . . . . . . 138 Preventing update problems with VSAM files
Processing files dynamically created by in RLS mode . . . . . . . . . . . 170
COBOL . . . . . . . . . . . . . 139 Restrictions when using RLS . . . . . . 171
Using striped extended-format QSAM data sets 139 Handling errors in VSAM files in RLS mode 171
Allocation of buffers for QSAM files . . . . 140 Improving VSAM performance . . . . . . . 171
Accessing HFS files using QSAM . . . . . . . 140
Labels for QSAM files . . . . . . . . . . 141 Chapter 11. Processing line-sequential files . . 175
Using trailer and header labels . . . . . . 141 Defining line-sequential files and records in
Getting a user-label track . . . . . . . 142 COBOL . . . . . . . . . . . . . . . 175
Handling user labels . . . . . . . . . 142 Allowable control characters . . . . . . . 176
Format of standard labels . . . . . . . . 143 Describing the structure of a line-sequential file 176
Standard user labels . . . . . . . . . 143 Defining and allocating line-sequential files . . . 177
Processing QSAM ASCII files on tape . . . . . 144 Coding input-output statements for line-sequential
Requesting the ASCII alphabet . . . . . . 144 files . . . . . . . . . . . . . . . . 177
Defining the record formats . . . . . . . 144 Opening line-sequential files . . . . . . . 178
Defining the ddname . . . . . . . . . . 144 Reading records from line-sequential files . . . 178
Processing ASCII file labels . . . . . . . . . 145 Adding records to line-sequential files . . . . 179
Closing line-sequential files. . . . . . . . 179
Chapter 10. Processing VSAM files . . . . . 147 Handling errors in line-sequential files . . . . . 180
VSAM files . . . . . . . . . . . . . . 148
Defining VSAM file organization and records . . 149 Chapter 12. Sorting and merging files . . . . 181
Specifying sequential organization for VSAM Sort and merge process . . . . . . . . . . 182
files . . . . . . . . . . . . . . . 150 Describing the sort or merge file . . . . . . . 182
Specifying indexed organization for VSAM files 150 Describing the input to sorting or merging . . . 183
Alternate keys . . . . . . . . . . . 151 Example: describing sort and input files for
Alternate index . . . . . . . . . . . 151 SORT . . . . . . . . . . . . . . . 183
4 Programming Guide
Chapter 1. Structuring your program
A COBOL program consists of four divisions, each with a specific logical function:
v IDENTIFICATION DIVISION
v ENVIRONMENT DIVISION
v DATA DIVISION
v PROCEDURE DIVISION
To define a COBOL class or method, you need to define some divisions differently
than you do for a program.
RELATED TASKS
“Identifying a program”
“Describing the computing environment” on page 7
“Describing the data” on page 12
“Processing the data” on page 18
“Defining a class” on page 488
“Defining a class instance method” on page 493
“Structuring OO applications” on page 524
Identifying a program
Use the IDENTIFICATION DIVISION to name your program and, if you want, give
other identifying information.
You can use the optional AUTHOR, INSTALLATION, DATE-WRITTEN, and DATE-COMPILED
paragraphs for descriptive information about your program. The data you enter on
the DATE-COMPILED paragraph is replaced with the latest compilation date.
IDENTIFICATION DIVISION.
Program-ID. Helloprog.
Author. A. Programmer.
Installation. Computing Laboratories.
Date-Written. 08/21/2003.
Date-Compiled. 02/27/2004.
Use the PROGRAM-ID paragraph to name your program. The program name that you
assign is used in these ways:
v Other programs use the name to call your program.
v The name appears in the header on each page, except the first page, of the
program listing generated when the program is compiled.
v If you use the NAME compiler option, the name is placed on the NAME
linkage-editor or binder control statement to identify the object module created
by the compilation.
Tip: Do not use program names that start with prefixes used by IBM products. If
you try to use programs whose names start with any of the following, your CALL
statements might resolve to IBM library or compiler routines rather than to your
intended program:
Tip: When the program name is case sensitive, avoid mismatches with the name
the compiler is looking for. Verify that the appropriate setting of the PGMNAME
compiler option is used.
RELATED TASKS
“Changing the header of a source listing” on page 7
“Identifying a program as recursive”
“Marking a program as callable by containing programs”
“Setting a program to an initial state”
RELATED REFERENCES
Compiler limits (Enterprise COBOL Language Reference)
Conventions for program names (Enterprise COBOL Language Reference)
You can code RECURSIVE only on the outermost program of a compilation unit.
Neither nested subprograms nor programs that contain nested subprograms can be
recursive. You must code RECURSIVE for programs that you compile with the THREAD
option.
RELATED TASKS
“Sharing data in recursive or multithreaded programs” on page 17
“Making recursive calls” on page 407
RELATED CONCEPTS
“Nested programs” on page 404
6 Programming Guide
Changing the header of a source listing
The header on the first page of your source statement listing contains the
identification of the compiler and the current release level, plus the date and time
of compilation and the page number. For example:
PP 5655-G53 IBM Enterprise COBOL for z/OS 3.3.0 Date 02/27/2004 Time 15:05:19 Page 1
You can customize the header on succeeding pages of the listing with the
compiler-directing TITLE statement.
RELATED REFERENCES
TITLE statement (Enterprise COBOL Language Reference)
RELATED TASKS
“Specifying the collating sequence” on page 8
“Defining symbolic characters” on page 10
“Defining a user-defined class” on page 10
“Defining files to the operating system” on page 10
RELATED REFERENCES
Sections and paragraphs (Enterprise COBOL Language Reference)
1. The SELECT clause chooses a file in the COBOL program to be associated with an external data set.
2. The ASSIGN clause associates the program’s name for the file with the external name for the actual data file. You
can define the external name with a DD statement or an environment variable.
3. The ORGANIZATION clause describes the file’s organization. For QSAM files, the ORGANIZATION clause is optional.
4. The ACCESS MODE clause defines the manner in which the records are made available for processing: sequential,
random, or dynamic. For QSAM and line-sequential files, the ACCESS MODE clause is optional. These files always
have sequential organization.
5. For VSAM files, you might have additional statements in the FILE-CONTROL paragraph depending on the type of
VSAM file you use.
RELATED TASKS
Chapter 9, “Processing QSAM files,” on page 119
Chapter 10, “Processing VSAM files,” on page 147
Chapter 11, “Processing line-sequential files,” on page 175
“Describing the computing environment” on page 7
The sequence that you use can be based on one of these alphabets:
v EBCDIC: references the collating sequence associated with the EBCDIC character
set
v NATIVE: references the same collating sequence as EBCDIC
v STANDARD-1: references the collating sequence associated with the ASCII
character set defined by ANSI INCITS X3.4, Coded Character Sets - 7-bit American
National Standard Code for Information Interchange (7-bit ASCII)
8 Programming Guide
v STANDARD-2: references the collating sequence associated with the character set
defined by ISO/IEC 646 — Information technology — ISO 7-bit coded character set
for information interchange, International Reference Version
v An alteration of the EBCDIC sequence that you define in the SPECIAL-NAMES
paragraph
The PROGRAM COLLATING SEQUENCE clause does not affect comparisons that involve
national operands.
RELATED TASKS
“Choosing alternate collating sequences” on page 190
“Comparing national data items” on page 111
Source-Computer. IBM-390.
Object-Computer. IBM-390.
RELATED TASKS
“Specifying the collating sequence” on page 8
For example, to give a name to the backspace character (X’16’ in the EBCDIC
alphabet), code:
SYMBOLIC CHARACTERS BACKSPACE IS 23
The class-name can be referenced only in a class condition. This user-defined class
is not the same as an object-oriented class.
The following shows the relationship of a FILE-CONTROL entry to the system data
definition and to the FD entry in the FILE SECTION.
v JCL DD statement:
(1)
//OUTFILE DD DSNAME=MY.OUT171,UNIT=SYSDA,SPACE=(TRK,(50,5)),
// DCB=(BLKSIZE=400)
/*
. . .
v Environment variable (export command):
(1)
export OUTFILE=DSNAME(MY.OUT171),UNIT(SYSDA),SPACE(TRK,(50,5))
. . .
v COBOL code:
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT CARPOOL
ASSIGN TO OUTFILE (1)
ORGANIZATION IS SEQUENTIAL.
. . .
DATA DIVISION.
FILE SECTION.
FD CARPOOL (2)
LABEL RECORD STANDARD
BLOCK CONTAINS 0 CHARACTERS
RECORD CONTAINS 80 CHARACTERS
(1) The ddname in the DD statement or the environment variable name in the
export command, corresponds to the assignment-name in the ASSIGN clause:
v //OUTFILE DD DSNAME=OUT171 . . ., or
10 Programming Guide
v export OUTFILE= . . .
RELATED TASKS
“Optimizing buffer and device space” on page 12
Rules for using different files: The name you use in the assignment-name of the
ASSIGN clause must be the same as the ddname in the DD statement or the
environment variable in the export command. You can change the actual file by
using the DSNAME in the DD statement or the DSNAME or path name in the
environment variable.
The file-name that you use with the SELECT clause (such as SELECT MASTER) must be
the same as in the FD file-name entry.
Two files should not use the same ddname or environment variable name in their
SELECT clauses; otherwise, results could be unpredictable. For example, if DISPLAY
is directed to SYSOUT, do not use SYSOUT as the ddname or environment variable
name on the SELECT clause for a file.
Example: using different input files: Consider a COBOL program that is used in
exactly the same way for several different master files. It contains this SELECT
clause:
SELECT MASTER
ASSIGN TO DA-3330-S-MASTERA
Assume the three possible input files are MASTER1, MASTER2, and MASTER3. You must
code one of the following DD statements in the job step that calls for program
execution, or issue one of the following export commands from the same shell
from which you run the program, prior to running the program:
//MASTERA DD DSNAME=MY.MASTER1,. . .
export MASTERA=DSN(MY.MASTER1),. . .
//MASTERA DD DSNAME=MY.MASTER2,. . .
//MASTERA DD DSNAME=MY.MASTER3,. . .
export MASTERA=DSN(MY.MASTER3),. . .
Any reference in the program to MASTERA will therefore be a reference to the file
currently assigned to ddname or environment variable name MASTERA.
Notice that in this example, you cannot use the PATH(path) form of the export
command to reference a line-sequential file in the HFS, because you cannot specify
an organization field (S- or AS-) with a line-sequential file.
The APPLY WRITE-ONLY clause has meaning only for sequential files that have
variable-length records and are blocked.
The AWO compiler option applies an implicit APPLY WRITE-ONLY clause to all eligible
files. The NOAWO compiler option has no effect on files that have the APPLY
WRITE-ONLY clause specified. The APPLY WRITE-ONLY clause takes precedence over
the NOAWO compiler option.
The APPLY-WRITE ONLY clause can cause input files to use a record area rather than
process the data in the buffer. This use might affect the processing of both input
files and output files.
RELATED REFERENCES
“AWO” on page 272
The Enterprise COBOL compiler limits the maximum size of DATA DIVISION
elements.
RELATED CONCEPTS
“Comparison of WORKING-STORAGE and LOCAL-STORAGE” on page 15
RELATED TASKS
“Using data in input and output operations” on page 13
“Using data from another program” on page 17
12 Programming Guide
RELATED REFERENCES
Compiler limits (Enterprise COBOL Language Reference)
Programs in the same run unit can share, or have access to, common files. The
method for doing this depends on whether the programs are part of a nested
(contained) structure or are separately compiled (including programs compiled as
part of a batch sequence).
You can use the EXTERNAL clause for separately compiled programs. A file that is
defined as EXTERNAL can be referenced by any program in the run unit that
describes the file.
You can use the GLOBAL clause for programs in a nested, or contained, structure. If
a program contains another program (directly or indirectly), both programs can
access a common file by referencing a GLOBAL file name.
RELATED CONCEPTS
“Nested programs” on page 404
RELATED TASKS
“Sharing files between programs (external files)” on page 421
14 Programming Guide
RELATED CONCEPTS
“Labels for QSAM files” on page 141
See the related tasks for information about WORKING-STORAGE in COBOL class
definitions.
RELATED TASKS
“WORKING-STORAGE SECTION for defining class instance data” on page 492
Chapter 27, “Preparing COBOL programs for multithreading,” on page 437
“Ending and reentering main programs or subprograms” on page 394
RELATED REFERENCES
Working-storage section (Enterprise COBOL Language Reference)
Local-storage section (Enterprise COBOL Language Reference)
if numb = 0
move 1 to fact
else
subtract 1 from numb
call ’factorial’
multiply num by fact
end-if.
The following tables show the changing values of the data items in LOCAL-STORAGE
and WORKING-STORAGE in the successive recursive calls of the program, and in the
ensuing gobacks. During the gobacks, fact progressively accumulates the value of
5! (five factorial).
RELATED CONCEPTS
“Comparison of WORKING-STORAGE and LOCAL-STORAGE” on page 15
16 Programming Guide
Using data from another program
How you share data depends on the type of program. You share data differently in
programs that are separately compiled than you do for programs that are nested or
for programs that are recursive or multithreaded.
RELATED TASKS
“Sharing data in separately compiled programs”
“Sharing data in nested programs”
“Sharing data in recursive or multithreaded programs”
RELATED TASKS
“Passing data” on page 411
A nested program can also access data items in a sibling program (one at the same
nesting level in the same containing program) that is declared with the COMMON
attribute.
RELATED CONCEPTS
“Nested programs” on page 404
If your program has the RECURSIVE attribute or is compiled with the THREAD
compiler option, the address of the record is valid for a particular instance of the
program invocation. The address of the record in another execution instance of the
same program must be reestablished for that execution instance. Unpredictable
results will occur if you refer to a data item for which the address has not been
established.
RELATED CONCEPTS
“Multithreading” on page 437
RELATED TASKS
“Making recursive calls” on page 407
“Processing files with multithreading” on page 440
The PROCEDURE DIVISION begins with the division header and a procedure-name
header. The division header for a program can simply be:
PROCEDURE DIVISION.
You can code your division header to receive parameters with the USING phrase or
to return a value with the RETURNING phrase.
To receive a parameter that was passed by value, code the division header for a
program as follows:
PROCEDURE DIVISION USING BY VALUE dataname
You can also combine USING and RETURNING in a PROCEDURE DIVISION header:
PROCEDURE DIVISION USING dataname RETURNING dataname2
Be sure to define dataname and dataname2 in the LINKAGE SECTION of the DATA
DIVISION.
RELATED CONCEPTS
“How logic is divided in the PROCEDURE DIVISION”
RELATED TASKS
“Eliminating repetitive coding” on page 595
18 Programming Guide
Paragraph
Subdivision of a section, procedure, or program.
A paragraph has a name followed by a period and zero or more sentences.
A paragraph can be the subject of a statement.
Sentence
Series of one or more COBOL statements ending with a period.
Statement
Performs a defined step of COBOL processing, such as adding two
numbers.
A statement is a valid combination of words, beginning with a COBOL
verb. Statements are imperative (indicating unconditional action),
conditional, or compiler-directing. Using explicit scope terminators instead
of periods to show the logical end of a statement is preferred.
Phrase
A subdivision of a statement.
RELATED CONCEPTS
“Compiler-directing statements” on page 20
“Scope terminators” on page 21
“Imperative statements”
“Conditional statements”
“Declaratives” on page 22
RELATED REFERENCES
PROCEDURE DIVISION structure (Enterprise COBOL Language Reference)
Imperative statements
An imperative statement indicates an unconditional action to be taken (such as
ADD, MOVE, INVOKE, or CLOSE).
RELATED CONCEPTS
“Conditional statements”
“Scope terminators” on page 21
Conditional statements
A conditional statement is either a simple conditional statement (IF, EVALUATE,
SEARCH) or a conditional statement made up of an imperative statement that
includes a conditional phrase or option.
You can end a conditional statement with an implicit or explicit scope terminator.
If you end a conditional statement explicitly, it becomes a delimited scope
statement (which is an imperative statement).
For additional program control, you can use the NOT phrase with conditional
statements. For example, you can provide instructions to be performed when a
particular exception does not occur, such as NOT ON SIZE ERROR. The NOT phrase
cannot be used with the ON OVERFLOW phrase of the CALL statement, but it can be
used with the ON EXCEPTION phrase.
The following statements are examples of conditional statements if they are coded
without scope terminators:
v Arithmetic statement with ON SIZE ERROR
v Data-manipulation statements with ON OVERFLOW
v CALL statements with ON OVERFLOW
v I/O statements with INVALID KEY, AT END, or AT END-OF-PAGE
v RETURN with AT END
RELATED CONCEPTS
“Imperative statements” on page 19
“Scope terminators” on page 21
RELATED TASKS
“Selecting program actions” on page 75
RELATED REFERENCES
Conditional statements (Enterprise COBOL Language Reference)
Compiler-directing statements
A compiler-directing statement is not part of the program logic. A
compiler-directing statement causes the compiler to take specific action about the
program structure, COPY processing, listing control, or control flow.
RELATED REFERENCES
Chapter 18, “Compiler-directing statements,” on page 317
Compiler-directing statements (Enterprise COBOL Language Reference)
20 Programming Guide
Scope terminators
Scope terminators can be explicit or implicit. Explicit scope terminators end a verb
without ending a sentence. They consist of END followed by a hyphen and the
name of the verb being terminated, such as END-IF. An implicit scope terminator is
a period (.) that ends the scope of all previous statements not yet ended.
Each of the two periods in the following program fragment ends an IF statement,
making the code equivalent to the code after it that instead uses explicit scope
terminators:
IF ITEM = “A”
DISPLAY “THE VALUE OF ITEM IS ” ITEM
ADD 1 TO TOTAL
MOVE “C” TO ITEM
DISPLAY “THE VALUE OF ITEM IS NOW ” ITEM.
IF ITEM = “B”
ADD 2 TO TOTAL.
IF ITEM = “A”
DISPLAY “THE VALUE OF ITEM IS ” ITEM
ADD 1 TO TOTAL
MOVE “C” TO ITEM
DISPLAY “THE VALUE OF ITEM IS NOW ” ITEM
END-IF
IF ITEM = “B”
ADD 2 TO TOTAL
END-IF
If you use implicit terminators, the end of statements can be unclear. As a result,
you might end statements unintentionally, changing your program’s logic. Explicit
scope terminators make a program easier to understand and prevent unintentional
ending of statements. For example, in the program fragment below, changing the
location of the first period in the first implicit scope example changes the meaning
of the code:
IF ITEM = “A”
DISPLAY “VALUE OF ITEM IS ” ITEM
ADD 1 TO TOTAL.
MOVE “C” TO ITEM
DISPLAY “ VALUE OF ITEM IS NOW ” ITEM
IF ITEM = “B”
ADD 2 TO TOTAL.
The MOVE statement and the DISPLAY statement after it are performed regardless of
the value of ITEM, despite what the indentation indicates, because the first period
terminates the IF statement.
For improved program clarity and to avoid unintentional ending of statements, use
explicit scope terminators, especially within paragraphs. Use implicit scope
terminators only at the end of a paragraph or the end of a program.
RELATED CONCEPTS
“Conditional statements” on page 19
“Imperative statements” on page 19
Declaratives
Declaratives provide one or more special-purpose sections that are executed when
an exception condition occurs.
Start each declarative section with a USE statement that identifies the function of
the section; in the procedures, specify the actions to be taken when the condition
occurs.
RELATED TASKS
“Finding and handling input-output errors” on page 323
RELATED REFERENCES
Declaratives (Enterprise COBOL Language Reference)
22 Programming Guide
Chapter 2. Using data
This information is intended to help non-COBOL programmers relate terms used
in other programming languages to COBOL terms for data. It introduces COBOL
fundamentals for:
v Variables, structures, literals, and constants
v Assigning and displaying values
v Intrinsic (built-in) functions
v Tables (arrays) and pointers
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
“Using variables, structures, literals, and constants”
“Assigning values to data items” on page 25
“Displaying values on a screen or in a file (DISPLAY)” on page 30
“Using intrinsic functions (built-in functions)” on page 32
“Using tables (arrays) and pointers” on page 33
Chapter 7, “Processing character data in an international environment,” on page
103
Variables
A variable is a data item; its value can change during a program. The values are
restricted, however, to the data type that you define when you give the data item a
name and a length. For example, if a customer name is a data item in your
program, you could code:
Data Division.
. . .
01 Customer-Name Pic X(20).
01 Original-Customer-Name Pic X(20).
. . .
Procedure Division.
. . .
Move Customer-Name to Original-Customer-Name
. . .
Literals
A literal is a character string whose value is given by the characters themselves.
When you know the value you want to use for a data item, use a literal
representation of the data value in the PROCEDURE DIVISION. You do not need to
define it or refer to a data-name. For example, you can prepare an error message
for an output file this way:
Move “Name is not valid” To Customer-Name
Constants
A constant is a data item that has only one value. COBOL does not define a
construct specifically for constants. However, most COBOL programmers define a
data item with an initial VALUE (as opposed to initializing a data item by using the
INITIALIZE statement). For example:
Data Division.
. . .
01 Report-Header pic x(50) value “Company Sales Report”.
. . .
01 Interest pic 9v9999 value 1.0265.
24 Programming Guide
Figurative constants
Certain commonly used constants and literals are provided as reserved words
called figurative constants: ZERO, SPACE, HIGH-VALUE, LOW-VALUE, QUOTE, NULL, and ALL.
Because they represent fixed values, figurative constants do not require a data
definition. For example:
Move Spaces To Report-Header
RELATED REFERENCES
Classes and categories of data (Enterprise COBOL Language Reference)
PICTURE clause (Enterprise COBOL Language Reference)
Literals (Enterprise COBOL Language Reference)
Figurative constants (Enterprise COBOL Language Reference)
RELATED TASKS
“Initializing a structure (INITIALIZE)” on page 27
“Assigning values to elementary or group data items (MOVE)” on page 27
“Joining data items (STRING)” on page 87
“Splitting data items (UNSTRING)” on page 89
Chapter 2. Using data 25
“Assigning arithmetic results (MOVE or COMPUTE)” on page 28
“Tallying and replacing data items (INSPECT)” on page 95
“Assigning input from a screen or file (ACCEPT)” on page 29
Chapter 7, “Processing character data in an international environment,” on page
103
RELATED REFERENCES
Enterprise COBOL Language Reference
26 Programming Guide
NUM-INT-CMPT-3 NUMERIC-1 before NUMERIC-1 after
1234567 98765432 01234567
RELATED TASKS
“Initializing a structure (INITIALIZE)”
The following example shows how you can reset fields in a transaction record
produced by a program to spaces and zeros. The fields are not identical in each
record produced.
01 TRANSACTION-OUT.
05 TRANSACTION-CODE PIC X.
05 PART-NUMBER PIC 9(6).
05 TRANSACTION-QUANTITY PIC 9(5).
05 PRICE-FIELDS.
10 UNIT-PRICE PIC 9(5)V9(2).
10 DISCOUNT PIC V9(2).
10 SALES-PRICE PIC 9(5)V9(2).
. . .
INITIALIZE TRANSACTION-OUT
For example, the following statement assigns the contents of the data item
Customer-Name to the data item Orig-Customer-Name:
Move Customer-Name to Orig-Customer-Name
When you move a group item to another group item, be sure that the subordinate
data descriptions are compatible. The compiler performs all MOVE statements
regardless of whether the items fit, even if a destructive overlap could occur at run
time.
For data items that contain numbers, moves can be more complicated because
there are several ways numbers are represented. In general, the algebraic values of
numbers are moved if possible (as opposed to the digit-by-digit move performed
with character data):
01 Item-x Pic 999v9.
. . .
Move 3.06 to Item-x
This move would result in Item-x containing the value 3.0, represented by 0030.
You can move an alphanumeric item or an integer item to a national data item; the
item is converted. You can move a national data item only to another national data
item. In either case padding or truncation might occur, and you must ensure that
truncation does not occur within a character.
The following example shows a data item in the Greek language that moves into a
national data item:
CBL CODEPAGE(00875)
. . .
01 Data-in-Unicode Pic N(100) usage national.
01 Data-in-Greek Pic X(100).
. . .
Read Greek-file into Data-in-Greek
Move Data-in-Greek to Data-in-Unicode
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED REFERENCES
MOVE statement (Enterprise COBOL Language Reference)
“CODEPAGE” on page 274
“Converting national data” on page 107
The MOVE statement carries out the assignment with truncation. You can, however,
specify the DIAGTRUNC compiler option to request that the compiler issue a warning
diagnostic for MOVE statements that might truncate numeric receivers.
When significant left-order digits would be lost in execution, the COMPUTE statement
can detect the condition and allow you to handle it.
28 Programming Guide
When you use the ON SIZE ERROR phrase of the COMPUTE statement, the compiler
generates code to detect a size-overflow condition. If the condition occurs, the code
in the ON SIZE ERROR phrase is performed, and the content of z remains
unchanged. If the ON SIZE ERROR phrase is not specified, the assignment is carried
out with truncation. There is no ON SIZE ERROR support for the MOVE statement.
You can also use the COMPUTE statement to assign the result of an arithmetic
expression (or intrinsic function) to a data item. For example:
Compute z = y + (x ** 3)
Compute x = Function Max(x y z)
As a result of this call, the data item Result is assigned to be the absolute value of
the value that is in the data item Arg; the data item Feedback-code contains the
return code indicating whether the service completed successfully. You have to
define all the data items in the DATA DIVISION using the correct descriptions
according to the requirements of the particular callable service you are using. For
the example above, the data items could be defined like this:
77 Arg Pic s9(9) Binary.
77 Feedback-code Pic x(12) Display.
77 Result Pic s9(9) Binary.
RELATED REFERENCES
“DIAGTRUNC” on page 280
Intrinsic functions (Enterprise COBOL Language Reference)
Callable services (Language Environment Programming Reference)
For example:
Environment Division.
Configuration Section.
Special-Names.
Console is Names-Input.
. . .
Accept Customer-Name From Names-Input
To read from a file instead of the screen, make the following change:
v Change Console to device, where device is any valid system device (for example,
SYSIN). For example:
SYSIN is Names-Input
Note that device can be a ddname that references a hierarchical file system (HFS)
path. If this DD is not defined and your program is running in a UNIX
When you assign a value to a national data item, input data from the console is
converted from EBCDIC to Unicode representation (UTF-16), based on the value of
the CODEPAGE option. This is the only situation where conversion of national data is
done when you use the ACCEPT statement, because the input is known to be
coming from a screen.
If you want conversion done when the input data is from any other device, use the
NATIONAL-OF intrinsic function.
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED TASKS
RELATED REFERENCES
“CODEPAGE” on page 274
SPECIAL-NAMES paragraph (Enterprise COBOL Language Reference)
If the content of the data item Customer-Name is JOHNSON, then the statement
above displays the following message on the system logical output device:
No entry for surname ’JOHNSON’ found in the file.
To write data to a destination other than the system logical output device, use the
UPON clause with a destination other than SYSOUT. For example, the following
statement writes to the file specified in the SYSPUNCH DD statement:
Display “Hello” upon syspunch.
You can specify a file in the hierarchical file system (HFS) with this ddname. For
example, with the following definition, your DISPLAY output is written to the HFS
file /u/userid/cobol/demo.lst:
//SYSPUNCH DD PATH=’/u/userid/cobol/demo.lst’,
// PATHOPTS=(OWRONLY,OCREAT,OTRUNC),PATHMODE=SIRWXU,
// FILEDATA=TEXT
The following statement writes to the job log or console and to the TSO screen if
you are running under TSO:
Display “Hello” upon console.
When you display the value of a national data item to the console, it is converted
from Unicode representation (UTF-16) to EBCDIC, based on the value of the
CODEPAGE option. This is the only situation where conversion of national data is
done when you use the DISPLAY statement, because the output is known to be
directed to a screen.
If you want a national data item to be converted when you direct output to a
different device, use the DISPLAY-OF intrinsic function, such as in this example:
30 Programming Guide
01 Data-in-Unicode pic N(10) usage national.
. . .
Display function Display-of(Data-in-Unicode, 00037)
The output is directed to the ddname that you specify in the OUTDD compiler
option. You can specify a file in the hierarchical file system (HFS) with this
ddname.
If the OUTDD ddname is not allocated and you are not running in a UNIX
environment, a default DD of SYSOUT=* is allocated.
If the OUTDD ddname is not allocated and you are running in a UNIX environment,
the _IGZ_SYSOUT environment variable is used as follows:
Undefined or set to stdout
Output is routed to stdout (file descriptor 1).
Set to stderr
Output is routed to stderr (file descriptor 2).
Otherwise (set to something other than stdout or stderr)
The DISPLAY statement fails; a severity-3 Language Environment condition
is raised.
When DISPLAY output is routed to stdout or stderr, the output is not subdivided
into records; rather the output is written as a single stream of characters without
line breaks.
If OUTDD and the Language Environment run-time option MSGFILE both specify the
same ddname, DISPLAY output and Language Environment run-time diagnostics
are both routed to the Language Environment message file.
If you specify the WITH NO ADVANCING phrase and the output is going to stdout or
stderr, a new-line character is not appended to the end of the stream. A subsequent
DISPLAY statement might add additional characters to the end of the stream.
If you do not specify WITH NO ADVANCING and the output is going to a ddname, the
printer control character ’ ’ (space) is placed into the first output position from the
next DISPLAY statement, indicating single-spaced output.
For example:
DISPLAY “ABC”
DISPLAY “CDEF” WITH NO ADVANCING
DISPLAY “GHIJK” WITH NO ADVANCING
DISPLAY “LMNOPQ”
DISPLAY “RSTUVWX”
The output printed depends on how the output device interprets printer control
characters.
If you do not specify the WITH NO ADVANCING phrase and the output is going to
stdout or stderr, a new-line character is appended to the end of the stream.
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED TASKS
“Setting and accessing environment variables” on page 384
“Coding COBOL programs to run under CICS” on page 359
“Converting national data” on page 107
RELATED REFERENCES
DISPLAY statement (Enterprise COBOL Language Reference)
“OUTDD” on page 296
“CODEPAGE” on page 274
A function-identifier represents both the invocation of the function and the data
value returned by the function. Because it actually represents a data item, you can
use a function-identifier in most places in the PROCEDURE DIVISION where a data
item having the attributes of the returned value can be used.
The COBOL word function is a reserved word, but the function-names are not
reserved. You can use them in other contexts, such as for the name of a data item.
For example, you could use Sqrt to invoke an intrinsic function and to name a
data item in your program:
32 Programming Guide
Working-Storage Section.
01 x Pic 99 value 2.
01 y Pic 99 value 4.
01 z Pic 99 value 0.
01 Sqrt Pic 99 value 0.
. . .
Compute Sqrt = 16 ** .5
Compute z = x + Function Sqrt(y)
. . .
The functions MAX, MIN, DATEVAL, and UNDATE can return either type of value
depending on the type of arguments you supply.
The functions DATEVAL, UNDATE, and YEARWINDOW are provided with the millennium
language extensions to assist with manipulating and converting windowed date
fields.
Nesting functions
Functions can reference other functions as arguments as long as the results of the
nested functions meet the requirements for the arguments of the outer function.
For example:
Compute x = Function Max((Function Sqrt(5)) 2.5 3.5)
In this case, Function Sqrt(5) returns a numeric value. Thus, the three arguments
to the MAX function are all numeric, which is an allowable argument type for this
function.
RELATED TASKS
“Processing table items using intrinsic functions” on page 73
“Converting data items (intrinsic functions)” on page 97
“Evaluating data items (intrinsic functions)” on page 99
Pointers are data items that contain virtual storage addresses. You define them
explicitly with the USAGE IS POINTER clause in the DATA DIVISION or implicitly as
ADDRESS OF special registers.
RELATED TASKS
“Defining a table (OCCURS)” on page 59
“Using procedure and function pointers” on page 407
You can address storage below (but not above) the 16-MB line with 24-bit
addressing. You can address storage either above or below the 16-MB line with
31-bit addressing. Unrestricted storage is addressable by 31-bit addressing and
therefore encompasses all the storage available to your program, both above and
below the 16-MB line.
Enterprise COBOL does not directly exploit the 64-bit virtual addressing capability
of z/OS, however COBOL applications running in 31-bit or 24-bit addressing mode
are fully supported on 64-bit z/OS systems.
Addressing mode (AMODE) is the attribute that tells which hardware addressing mode
is supported by your program: 24-bit addressing, 31-bit addressing, or either 24-bit
or 31-bit addressing. This attribute is AMODE 24, AMODE 31, or AMODE ANY,
respectively. The object program, the load module, and the executing program each
has an AMODE attribute. All Enterprise COBOL object programs are AMODE ANY.
Residency mode (RMODE) is the attribute of a program load module that identifies
where in virtual storage the program will reside: below the 16-MB line, or either
below or above. This attribute is RMODE 24 or RMODE ANY.
Enterprise COBOL uses Language Environment services to control the storage used
at run time. Thus COBOL compiler options and Language Environment run-time
options influence the AMODE and RMODE attributes of your program and data, alone
and in combination:
DATA Compiler option that influences the location of storage for WORKING-STORAGE
| data, I-O buffers, and parameter lists for programs compiled with RENT.
| RMODE Compiler option that influences the residency mode and also influences the
| location of storage for WORKING-STORAGE data, I-O buffers, and parameter
| lists for programs compiled with NORENT.
RENT Compiler option to generate a reentrant program.
HEAP Run-time option that controls storage for the run-time heap. For example,
COBOL WORKING-STORAGE is allocated from heap storage.
STACK Run-time option that controls storage for the run-time stack. For example,
COBOL LOCAL-STORAGE is allocated from stack storage.
ALL31 Run-time option that specifies whether an application can run entirely in
AMODE 31.
34 Programming Guide
Settings for RMODE
The RMODE and RENT options determine the RMODE attribute of your program:
Table 4. Effect of RMODE and RENT compiler options on the RMODE attribute
RMODE compiler option RENT compiler option RMODE attribute
RMODE(AUTO) NORENT RMODE 24
RMODE(AUTO) RENT RMODE ANY
RMODE(24) RENT or NORENT RMODE 24
RMODE(ANY) RENT or NORENT RMODE ANY
When you specify the run-time option HEAP(,,BELOW), the DATA compiler option has
| no effect; the storage for WORKING-STORAGE SECTION data areas is allocated from
below the 16-MB line. However, with HEAP(,,ANYWHERE) as the run-time option,
storage for data areas is allocated from below the 16-MB line if you compiled the
program with the DATA(24) compiler option, or from unrestricted storage if you
compiled with the DATA(31) compiler option.
In all other cases, the storage for EXTERNAL data is obtained from below the 16-MB
line. When you specify the ALL31(ON) run-time option, all the programs in the run
unit must be capable of running in 31-bit addressing mode.
RELATED CONCEPTS
AMODE considerations for heap storage (Language Environment Programming Guide)
“AMODE switching” on page 399
RELATED TASKS
Chapter 24, “Using subprograms,” on page 393
Chapter 25, “Sharing data,” on page 411
RELATED REFERENCES
“Allocation of buffers for QSAM files” on page 140
“DATA” on page 277
“RENT” on page 299
“RMODE” on page 300
“Performance-related compiler options” on page 589
HEAP (Language Environment Programming Reference)
STACK (Language Environment Programming Reference)
ALL31 (Language Environment Programming Reference)
z/OS DFSMS: Program Management
36 Programming Guide
Chapter 3. Working with numbers and arithmetic
In general, you can view COBOL numeric data as a series of decimal digit
positions. However, numeric items can also have special properties such as an
arithmetic sign or a currency sign.
This section describes how to define, display, and store numeric data so that you
can perform arithmetic operations efficiently:
v Use the PICTURE clause and the characters 9, +, -, P, S, and V to define numeric
data.
v Use the PICTURE clause and editing characters (such as Z, comma, and period)
along with MOVE and DISPLAY statements to display numeric data.
v Use the USAGE clause with various formats to control how numeric data is stored.
v Use the numeric class test to validate that data values are appropriate.
v Use ADD, SUBTRACT, MULTIPLY, DIVIDE, and COMPUTE statements to perform
arithmetic.
v Use the CURRENCY SIGN clause and appropriate PICTURE characters to designate
the currency you want.
RELATED TASKS
“Defining numeric data”
“Displaying numeric data” on page 38
“Controlling how numeric data is stored” on page 39
“Checking for incompatible data (numeric class test)” on page 46
“Performing arithmetic” on page 47
“Using currency signs” on page 55
You can code up to 18 digits in the PICTURE clause when you compile using the
default compiler option ARITH(COMPAT) (referred to as compatibility mode). When
you compile using ARITH(EXTEND) (referred to as extended mode), you can code up
to 31 digits in the PICTURE clause.
The field can therefore hold a positive or a negative value. The v indicates the
position of an implied decimal point, but does not contribute to the size of the
© Copyright IBM Corp. 1991, 2004 37
item because it does not require a storage position. An s usually does not
contribute to the size of a numeric item, because by default it does not require a
storage position.
However, if you plan to port your program or data to a different machine, you
might want to code the sign as a separate position in storage. In this case, the sign
takes 1 byte:
05 Price Pic s99V99 Sign Is Leading, Separate.
This coding ensures that the convention your machine uses for storing a
nonseparate sign will not cause unexpected results on a machine that uses a
different convention.
Separate signs are also preferable for data items that will be printed or displayed.
You cannot use the PICTURE clause with internal floating-point data (COMP-1 or
COMP-2). However, you can use the VALUE clause to provide an initial value for a
floating-point literal:
05 Compute-result Usage Comp-2 Value 06.23E-24.
RELATED CONCEPTS
Appendix A, “Intermediate results and arithmetic precision,” on page 603
RELATED TASKS
“Displaying numeric data”
“Controlling how numeric data is stored” on page 39
“Performing arithmetic” on page 47
RELATED REFERENCES
“Sign representation and processing” on page 45
“ARITH” on page 271
“NUMPROC” on page 293
If the contents of Price are 0150099 (representing the value 1,500.99), then
$ 1,500.99 is displayed when you run the code. The z in the PICTURE clause of
Edited-price indicates the suppression of leading zeros.
38 Programming Guide
You can move numeric-edited items to numeric or numeric-edited items. In the
following example, the value of the numeric-edited item is moved to the numeric
item:
Move Edited-price to Price
Display Price
RELATED TASKS
“Controlling how numeric data is stored”
“Defining numeric data” on page 37
“Performing arithmetic” on page 47
RELATED REFERENCES
MOVE statement (Enterprise COBOL Language Reference)
The numeric data you use in your program will have one of the following formats
available with COBOL:
v External decimal (USAGE DISPLAY)
v External floating point (USAGE DISPLAY)
v Internal decimal (USAGE PACKED-DECIMAL)
v Binary (USAGE BINARY)
v Native binary (USAGE COMP-5)
v Internal floating point (USAGE COMP-1, USAGE COMP-2)
COMP and COMP-4 are synonymous with BINARY, and COMP-3 is synonymous with
PACKED-DECIMAL.
Regardless of which USAGE clause you use to control the internal representation of a
value, you use the same PICTURE clause conventions and decimal value in the
VALUE clause (except for floating-point data, for which you cannot use a PICTURE
clause).
RELATED CONCEPTS
“Formats for numeric data”
“Data format conversions” on page 43
Appendix A, “Intermediate results and arithmetic precision,” on page 603
RELATED TASKS
“Defining numeric data” on page 37
“Displaying numeric data” on page 38
“Performing arithmetic” on page 47
RELATED REFERENCES
“Conversions and precision” on page 44
“Sign representation and processing” on page 45
External decimal (also known as zoned decimal) items are primarily intended for
receiving and sending numbers between your program and files, terminals, or
printers. You can also use external decimal items as operands and receivers in
arithmetic processing. However, if your program performs a lot of intensive
arithmetic and efficiency is a high priority, COBOL’s computational numeric types
might be a better choice for the data items used in the arithmetic.
The minus signs (-) do not mean that the mantissa and exponent must necessarily
be negative numbers. Instead, they mean that when the number is displayed, the
sign appears as a blank for positive numbers or a minus sign for negative
numbers. If you instead code a plus sign (+), the sign appears as a plus sign for
positive numbers or a minus sign for negative numbers.
40 Programming Guide
As with external decimal numbers, external floating-point numbers have to be
converted (by the compiler) to an internal representation of their numeric value
before they can be used in arithmetic operations. If you compile with the default
option ARITH (COMPAT), external floating-point numbers are converted to long
(64-bit) floating-point format. If you compile with ARITH (EXTEND), they are instead
converted to extended-precision (128-bit) floating-point format.
You can use binary items, for example, for indexes, subscripts, switches, and
arithmetic operands or results.
Use the TRUNC(STD|OPT|BIN) compiler option to indicate how binary data (BINARY,
COMP, or COMP-4) is to be truncated.
When you move or store numeric data into a COMP-5 item, truncation occurs at the
binary field size rather than at the COBOL PICTURE size limit. When you reference
a COMP-5 item, the full binary field size is used in the operation.
COMP-5 is thus particularly useful for binary data items originating in non-COBOL
programs where the data might not conform to a COBOL PICTURE clause.
The table below shows the ranges of values possible for COMP-5 data items.
Table 5. Ranges in value of COMP-5 data items
PICTURE Storage representation Numeric values
S9(1) through S9(4) Binary halfword (2 bytes) -32768 through +32767
S9(5) through S9(9) Binary fullword (4 bytes) -2,147,483,648 through +2,147,483,647
S9(10) through Binary doubleword (8 -9,223,372,036,854,775,808 through
S9(18) bytes) +9,223,372,036,854,775,807
9(1) through 9(4) Binary halfword (2 bytes) 0 through 65535
9(5) through 9(9) Binary fullword (4 bytes) 0 through 4,294,967,295
9(10) through 9(18) Binary doubleword (8 0 through 18,446,744,073,709,551,615
bytes)
You can specify scaling (that is, decimal positions or implied integer positions) in
the PICTURE clause of COMP-5 items. If you do so, you must appropriately scale the
Large literals in VALUE clauses: Literals specified in VALUE clauses for COMP-5 items
can, with a few exceptions, contain values of magnitude up to the capacity of the
native binary representation. See Enterprise COBOL Language Reference for the
exceptions.
Regardless of the setting of the TRUNC compiler option, COMP-5 data items behave
like binary data does in programs compiled with TRUNC(BIN).
COMP-1 and COMP-2 data items are stored in zSeries hexadecimal format.
RELATED CONCEPTS
Appendix A, “Intermediate results and arithmetic precision,” on page 603
RELATED REFERENCES
VALUE clause (Enterprise COBOL Language Reference)
“TRUNC” on page 310
42 Programming Guide
Table 6. Internal representation of numeric items (continued)
PICTURE and USAGE and
Numeric type optional SIGN clause Value Internal representation
Binary PIC S9999 BINARY + 1234 04 D2
COMP - 1234 FB 2E
COMP-4
COMP-5 + 123451 30 39
- 123451 CF C7
PIC 9999 BINARY 1234 04 D2
COMP
COMP-4
COMP-5 600001 EA 60
Internal PIC S9999 PACKED-DECIMAL + 1234 01 23 4C
decimal COMP-3 - 1234 01 23 4D
PIC 9999 PACKED-DECIMAL + 1234 01 23 4F
COMP-3 - 1234 01 23 4F
Internal COMP-1 + 1234 43 4D 20 00
floating
point
Internal COMP-2 + 1234 43 4D 20 00 00 00 00 00
floating - 1234 C3 4D 20 00 00 00 00 00
point
External PIC +9(2).9(2)E+99 DISPLAY + 1234 4E F1 F2 4B F3
floating F4 C5 4E F0 F2
point
- 1234 60 F1 F2 4B F3
F4 C5 4E F0 F2
1. The example demonstrates that COMP-5 data items can contain values of magnitude up to the capacity of the
native binary representation (2, 4, or 8 bytes), rather than being limited to the value implied by the number of 9s
in the PICTURE clause.
A conversion is actually a move of a value from one data item to another. The
compiler performs any conversions that are required during the execution of
arithmetic or comparisons with the same rules that are used for MOVE and COMPUTE
statements.
Conversion generally requires additional storage and processing time because data
is moved to an internal work area and converted before the operation is
performed. The results might also have to be moved back into a work area and
converted again.
RELATED REFERENCES
“Conversions and precision”
“Sign representation and processing” on page 45
When the compiler converts short form to long form for comparisons, zeros are
used for padding the shorter number.
When a USAGE COMP-1 data item is moved to a fixed-point data item with more
than nine digits, the fixed-point data item will receive only nine significant digits,
and the remaining digits will be zero.
When a USAGE COMP-2 data item is moved to a fixed-point data item with more
than 18 digits, the fixed-point data item will receive only 18 significant digits, and
the remaining digits will be zero.
If a USAGE COMP-1 data item is moved to a fixed-point data item of nine or more
digits and then returned to the USAGE COMP-1 data item, the original value is
recovered.
If a fixed-point data item with 15 or fewer digits is moved to a USAGE COMP-2 data
item and then returned to the fixed-point data item, the original value is recovered.
If a USAGE COMP-2 data item is moved to a USAGE COMP-1 data item, rounding occurs
in the low-order position of the target data item.
44 Programming Guide
If a fixed-point data item is moved to an external floating-point data item and the
PICTURE of the fixed-point data item contains more digit positions than the PICTURE
of the external floating-point data item, rounding occurs in the low-order position
of the target data item.
RELATED CONCEPTS
Appendix A, “Intermediate results and arithmetic precision,” on page 603
Given X’sd’, where s is the sign representation and d represents the digit, the valid
sign representations for external decimal (USAGE DISPLAY without the SIGN IS
SEPARATE clause) are:
Positive:
C, A, E, and F
Negative:
D and B
The COBOL NUMPROC compiler option affects sign processing for external decimal
and internal decimal data. NUMPROC has no effect on binary data or floating-point
data.
NUMPROC(PFD)
Given X’sd’, where s is the sign representation and d represents the digit, when you
use NUMPROC(PFD), the compiler assumes that the sign in your data is one of three
preferred signs:
Signed positive or 0:
X’C’
Signed negative:
X’D’
Unsigned or alphanumeric:
X’F’
Based on this assumption, the compiler uses whatever sign it is given to process
data. The preferred sign is generated only where necessary (for example, when
unsigned data is moved to signed data). Using the NUMPROC(PFD) option can save
processing time, but you must use preferred signs with your data for correct
processing.
NUMPROC(NOPFD)
When the NUMPROC(NOPFD) compiler option is in effect, the compiler accepts any
valid sign configuration. The preferred sign is always generated in the receiver.
NUMPROC(NOPFD) is less efficient than NUMPROC(PFD), but you should use it whenever
data that does not use preferred signs might exist.
RELATED REFERENCES
“NUMPROC” on page 293
It can happen that values are passed into your program and assigned to items that
have incompatible data descriptions for those values. For example, nonnumeric
data might be moved or passed into a field that is defined as numeric. Or a signed
number might be passed into a field that is defined as unsigned. In both cases, the
receiving fields contain invalid data. Ensure that the contents of a data item
conform to its PICTURE and USAGE clauses before using the data item in any further
processing steps.
You can use the numeric class test to perform data validation. For example:
Linkage Section.
01 Count-x Pic 999.
. . .
Procedure Division Using Count-x.
If Count-x is numeric then display “Data is good”
The numeric class test checks the contents of a data item against a set of values
that are valid for the particular PICTURE and USAGE of the data item. For example, a
packed-decimal item is checked for hexadecimal values X’0’ through X’9’ in the
digit positions, and for a valid sign value in the sign position (whether separate or
nonseparate).
If NUMCLS(PRIM) is in effect at your installation, use the following table to find the
values that the compiler considers valid for the sign.
Table 7. NUMCLS(PRIM) and valid signs
NUMPROC(NOPFD) NUMPROC(PFD) NUMPROC(MIG)
Signed C, D, F C, D, +0 (positive C, D, F
zero)
Unsigned F F F
Separate sign +, - +, -, +0 (positive +, -
zero)
46 Programming Guide
If NUMCLS(ALT) is in effect at your installation, use the following table to find the
values that the compiler considers valid for the sign.
Table 8. NUMCLS(ALT) and valid signs
NUMPROC(NOPFD) NUMPROC(PFD) NUMPROC(MIG)
Signed A to F C, D, +0 (positive A to F
zero)
Unsigned F F F
Separate sign +, - +, -, +0 (positive +, -
zero)
RELATED REFERENCES
“NUMPROC” on page 293
Performing arithmetic
You can use any of several COBOL language features to perform arithmetic:
v “COMPUTE and other arithmetic statements”
v “Arithmetic expressions” on page 48
v “Numeric intrinsic functions” on page 48
v “Math and date Language Environment services” on page 49
Some arithmetic might be more intuitive using arithmetic statements other than
COMPUTE. For example:
You might also prefer to use the DIVIDE statement (with its REMAINDER phrase) for
division in which you want to process a remainder. The REM intrinsic function also
provides the ability to process a remainder.
Arithmetic expressions
You can use arithmetic expressions in many (but not all) places in statements
where numeric data items are allowed. For example, you can use arithmetic
expressions as comparands in relation conditions:
If (a + b) > (c - d + 5) Then. . .
Arithmetic expressions can consist of a single numeric literal, a single numeric data
item, or a single intrinsic function reference. They can also consist of several of
these items connected by arithmetic operators. Arithmetic operators are evaluated
in the following order of precedence:
Table 9. Order of evaluation of arithmetic operators
Operator Meaning Order of evaluation
Unary + or - Algebraic sign First
** Exponentiation Second
/ or * Division or multiplication Third
Binary + or - Addition or subtraction Last
Operators at the same level of precedence are evaluated from left to right;
however, you can use parentheses to change the order of evaluation. Expressions
in parentheses are evaluated before the individual operators are evaluated.
Parentheses, necessary or not, make your program easier to read.
RELATED CONCEPTS
“Fixed-point versus floating-point arithmetic” on page 53
Appendix A, “Intermediate results and arithmetic precision,” on page 603
Numeric intrinsic functions return a signed numeric value. They are treated as
temporary numeric data items.
48 Programming Guide
You can use intrinsic functions to perform several different arithmetic operations,
as outlined in the following table.
Table 10. Numeric intrinsic functions
Number handling Date and time Finance Mathematics Statistics
LENGTH CURRENT-DATE ANNUITY ACOS MEAN
MAX DATE-OF-INTEGER PRESENT-VALUE ASIN MEDIAN
MIN DATE-TO-YYYYMMDD ATAN MIDRANGE
NUMVAL DATEVAL COS RANDOM
NUMVAL-C DAY-OF-INTEGER FACTORIAL RANGE
ORD-MAX DAY-TO-YYYYDDD INTEGER STANDARD-DEVIATION
ORD-MIN INTEGER-OF-DATE INTEGER-PART VARIANCE
INTEGER-OF-DAY LOG
UNDATE LOG10
WHEN-COMPILED MOD
YEAR-TO-YYYY REM
YEARWINDOW SIN
SQRT
SUM
TAN
In this example, there are only three function arguments: a, b, and the arithmetic
expression (c / d).
You can use the integer special registers as arguments wherever integer arguments
are allowed.
RELATED CONCEPTS
“Fixed-point versus floating-point arithmetic” on page 53
Appendix A, “Intermediate results and arithmetic precision,” on page 603
RELATED REFERENCES
“ARITH” on page 271
So for example (considering the first row of the table), if you compile using
ARITH(COMPAT), CEESDACS returns the same result as ACOS. If you compile using
ARITH(EXTEND), CEESQACS returns the same result as ACOS.
Table 11. Compatibility of math intrinsic functions and callable services
Corresponding Corresponding Results same for intrinsic
COBOL intrinsic long-precision Language extended-precision Language function and callable
function Environment callable service Environment callable service service?
ACOS CEESDACS CEESQACS Yes
ASIN CEESDASN CEESQASN Yes
ATAN CEESDATN CEESQATN Yes
COS CEESDCOS CEESQCOS Yes
LOG CEESDLOG CEESQLOG Yes
LOG10 CEESDLG1 CEESQLG1 Yes
1
RANDOM CEERAN0 none No
REM CEESDMOD CEESQMOD Yes
SIN CEESDSIN CEESQSIN Yes
SQRT CEESDSQT CEESQSQT Yes
TAN CEESDTAN CEESQTAN Yes
1. RANDOM returns a long (64-bit) floating-point result even if you pass it a 31-digit argument and compile using
option ARITH(EXTEND).
Both the RANDOM intrinsic function and CEERAN0 service generate random
numbers between zero and one. However, because each uses its own algorithm,
RANDOM and CEERAN0 produce different random numbers from the same seed.
Even for functions that produce the same results, how you use intrinsic functions
and Language Environment callable services differs. The rules for the data types
required for intrinsic function arguments are less restrictive. For numeric intrinsic
functions, you can use arguments that are of any numeric data type. When you
invoke a Language Environment callable service with a CALL statement, however,
you must ensure that the parameters match the numeric data types required by
that service (generally COMP-1 or COMP-2).
50 Programming Guide
Date callable services
Both the COBOL date intrinsic functions and the Language Environment date
callable services are based on the Gregorian calendar. However, the starting dates
can differ depending on the setting of the INTDATE compiler option. When the
default setting of INTDATE(ANSI) is in effect, COBOL uses January 1, 1601 as day 1.
When INTDATE(LILIAN) is in effect, COBOL uses October 15, 1582 as day 1.
Language Environment always uses October 15, 1582 as day 1.
This means that if you use INTDATE(LILIAN), you get equivalent results from
COBOL intrinsic functions and Language Environment callable date services.
RELATED CONCEPTS
“Fixed-point versus floating-point arithmetic” on page 53
Appendix A, “Intermediate results and arithmetic precision,” on page 603
RELATED TASKS
“Using Language Environment callable services” on page 597
RELATED REFERENCES
“ARITH” on page 271
Finance
Business investment decisions frequently require computing the present value of
expected future cash inflows to evaluate the profitability of a planned investment.
The present value of an amount that you expect to receive at a given time in the
future is that amount, which, if invested today at a given interest rate, would
accumulate to that future amount.
You can use the ANNUITY function in business problems that require you to
determine the amount of an installment payment (annuity) necessary to repay the
principal and interest of a loan. The series of payments is characterized by an
equal amount each period, periods of equal length, and an equal interest rate each
52 Programming Guide
period. The following example shows how you can calculate the monthly payment
required to repay a $15,000 loan in three years at a 12% annual interest rate (36
monthly payments, interest per month = .12/12):
01 Loan Pic 9(9)V99.
01 Payment Pic 9(9)V99.
01 Interest Pic 9(9)V99.
01 Number-Periods Pic 99.
. . .
Compute Loan = 15000
Compute Interest = .12
Compute Number-Periods = 36
Compute Payment =
Loan * Function Annuity((Interest / 12) Number-Periods)
Mathematics
The following COBOL statement demonstrates that you can nest intrinsic
functions, use arithmetic expressions as arguments, and perform previously
complex calculations simply:
Compute Z = Function Log(Function Sqrt (2 * X + 1)) + Function Rem(X 2)
Here in the addend the intrinsic function REM (instead of a DIVIDE statement with a
REMAINDER clause) returns the remainder of dividing X by 2.
Statistics
Intrinsic functions make calculating statistical information easier. Assume you are
analyzing various city taxes and want to calculate the mean, median, and range
(the difference between the maximum and minimum taxes):
01 Tax-S Pic 99v999 value .045.
01 Tax-T Pic 99v999 value .02.
01 Tax-W Pic 99v999 value .035.
01 Tax-B Pic 99v999 value .03.
01 Ave-Tax Pic 99v999.
01 Median-Tax Pic 99v999.
01 Tax-Range Pic 99v999.
. . .
Compute Ave-Tax = Function Mean (Tax-S Tax-T Tax-W Tax-B)
Compute Median-Tax = Function Median (Tax-S Tax-T Tax-W Tax-B)
Compute Tax-Range = Function Range (Tax-S Tax-T Tax-W Tax-B)
Fixed-point evaluations
In general, if an arithmetic operation contains neither of the characteristics listed
above for floating point, the compiler causes it to be evaluated in fixed-point
arithmetic. In other words, arithmetic evaluations are handled as fixed point only if
all the operands are fixed point, the result field is defined to be fixed point, and
none of the exponents represent values with decimal places. Nested arithmetic
expressions and function references must also represent fixed-point values.
54 Programming Guide
Implicit comparisons (no relational operator used) are not handled as a unit,
however; the two comparands are treated separately as to their evaluation in
floating-point or fixed-point arithmetic. In the following example, five arithmetic
expressions are evaluated independently of one another’s attributes, and then are
compared to each other.
evaluate (a + d)
when (b + e) thru c
when (f / g) thru (h * i)
. . .
end-evaluate
RELATED REFERENCES
“Arithmetic expressions in nonarithmetic statements” on page 611
To specify the symbols for displaying financial information, use the CURRENCY SIGN
clause (in the SPECIAL-NAMES paragraph in the CONFIGURATION SECTION) with the
PICTURE characters that relate to the symbols. In the following example, the
PICTURE character $ indicates that the currency sign $US is to be used:
In this example, if Invoice-Amount contained 1500.00, the display output would be:
Invoice amount is $US1,500.00
By using more than one CURRENCY SIGN clause in your program, you can allow for
multiple currency signs to be displayed.
You can use a hexadecimal literal to indicate the currency sign value. This could be
useful if the data-entry method for the source program does not allow the entry of
the intended characters easily. The following example shows the hexadecimal value
X’9F’ used as the currency sign:
Currency Sign X’9F’ with Picture Symbol ’U’.
. . .
01 Deposit-Amount Pic UUUUU9.99.
If there is no corresponding character for the euro sign on your keyboard, you
need to specify it as a hexadecimal value in the CURRENCY SIGN clause. The
hexadecimal value for the euro sign is either X’9F’ or X’5A’ depending on the code
page in use, as shown in the following table.
Table 14. Hexadecimal values of the euro sign
Code page Modified
| CCSID Applicable countries from Euro sign
1140 USA, Canada, Netherlands, Portugal, Australia, 037 X’9F’
New Zealand
1141 Austria, Germany 273 X’9F’
1142 Denmark, Norway 277 X’5A’
1143 Finland, Sweden 278 X’5A’
1144 Italy 280 X’9F’
1145 Spain, Latin America - Spanish 284 X’9F’
1146 UK 285 X’9F’
1147 France 297 X’9F’
1148 Belgium, Canada, Switzerland 500 X’9F’
1149 Iceland 871 X’9F’
56 Programming Guide
Working-Storage Section.
01 Deposit-in-Euro Pic S9999V99 Value 8000.00.
01 Deposit-in-CHF Pic S99999V99.
01 Deposit-Report.
02 Report-in-Franc Pic -FFFFF9.99.
02 Report-in-Euro Pic -UUUUU9.99.
. . .
01 EUR-to-CHF-Conv-Rate Pic 9V99999 Value 1.53893.
. . .
PROCEDURE DIVISION.
Report-Deposit-in-CHF-and-EUR.
Move Deposit-in-Euro to Report-in-Euro
. . .
Compute Deposit-in-CHF Rounded
= Deposit-in-Euro * EUR-to-CHF-Conv-Rate
On Size Error
Perform Conversion-Error
Not On Size Error
Move Deposit-in-CHF to Report-in-Franc
Display “Deposit in Euro = ” Report-in-Euro
Display “Deposit in Franc = ” Report-in-Franc
End-Compute
. . .
Goback.
Conversion-Error.
Display “Conversion error from EUR to CHF”
Display “Euro value: ” Report-in-Euro.
The exchange rate used in this example is for illustrative purposes only.
In the example above, SAMPLE-TABLE-ONE is the group item that contains the table.
TABLE-COLUMN names the table element of a one-dimensional table that occurs three
times.
Rather than define repetitious items as separate, consecutive entries in the DATA
DIVISION, you can use the OCCURS clause in the DATA DIVISION entry to define a
table. This practice has these advantages:
v The code clearly shows the unity of the items (the table elements).
v You can use subscripts and indexes to refer to the table elements.
v You can easily repeat data items.
Tables are important for increasing the speed of a program, especially one that
looks up records.
RELATED TASKS
“Defining a table (OCCURS)”
“Referring to an item in a table” on page 61
“Putting values into a table” on page 64
“Nesting tables” on page 60
“Creating variable-length tables (DEPENDING ON)” on page 68
“Searching a table” on page 71
“Processing table items using intrinsic functions” on page 73
“Handling tables efficiently” on page 583
The table element definition (which includes the OCCURS clause) is subordinate to
the group item that contains the table. The OCCURS clause cannot appear in a
level-01 description.
RELATED TASKS
“Creating variable-length tables (DEPENDING ON)” on page 68
“Nesting tables”
“Putting values into a table” on page 64
“Referring to an item in a table” on page 61
“Searching a table” on page 71
RELATED REFERENCES
OCCURS clause (Enterprise COBOL Language Reference)
Nesting tables
To create a two-dimensional table, define a one-dimensional table in each
occurrence of another one-dimensional table. For example:
Subscripting
In a two-dimensional table, the two subscripts correspond to the row and column
numbers. In a three-dimensional table, the three subscripts correspond to the
depth, row, and column numbers.
60 Programming Guide
The following valid references to SAMPLE-TABLE-THREE use literal subscripts. The
spaces are required in the second example.
TABLE-COLUMN (2, 2, 1)
TABLE-COLUMN (2 2 1)
In either table reference, the first value (2) refers to the second occurrence within
TABLE-DEPTH, the second value (2) refers to the second occurrence within TABLE-ROW,
and the third value (1) refers to the first occurrence within TABLE-COLUMN.
Indexing
Consider the following three-dimensional table, SAMPLE-TABLE-FOUR:
01 SAMPLE-TABLE-FOUR
05 TABLE-DEPTH OCCURS 3 TIMES INDEXED BY INX-A.
10 TABLE-ROW OCCURS 4 TIMES INDEXED BY INX-B.
15 TABLE-COLUMN OCCURS 8 TIMES INDEXED BY INX-C PIC X(8).
RELATED TASKS
“Defining a table (OCCURS)” on page 59
“Referring to an item in a table”
“Putting values into a table” on page 64
“Creating variable-length tables (DEPENDING ON)” on page 68
“Searching a table” on page 71
“Processing table items using intrinsic functions” on page 73
“Handling tables efficiently” on page 583
RELATED REFERENCES
OCCURS clause (Enterprise COBOL Language Reference)
RELATED TASKS
“Indexing” on page 63
“Subscripting”
Subscripting
The lowest possible subscript value is 1, which points to the first occurrence of the
table element. In a one-dimensional table, the subscript corresponds to the row
number.
If a data item with a literal subscript is of fixed length, the compiler resolves the
location of the data item.
When you use a data-name as a variable subscript, you must describe the data
name as an elementary numeric integer. The most efficient format is COMPUTATIONAL
(COMP) with a PICTURE size smaller than five digits. You cannot use a subscript with
a data-name that is used as a subscript.
The code generated for the application resolves the location of a variable subscript
at run time.
You can change part of a table element rather than the whole element. Simply refer
to the character position and length of the substring to be changed within the
subscripted element. For example:
01 ANY-TABLE.
05 TABLE-ELEMENT PIC X(10)
OCCURS 3 TIMES
VALUE “ABCDEFGHIJ”.
. . .
MOVE “??” TO TABLE-ELEMENT (1) (3 : 2).
The MOVE statement moves the value ?? into table element number 1, beginning at
character position 3, for a length of 2:
RELATED TASKS
“Indexing” on page 63
62 Programming Guide
“Putting values into a table” on page 64
“Searching a table” on page 71
“Handling tables efficiently” on page 583
Indexing
You create an index using OCCURS INDEXED BY.
For example:
05 TABLE-ITEM PIC X(8)
OCCURS 10 INDEXED BY INX-A.
The compiler calculates the value contained in the index as the occurrence number
(subscript) minus 1, multiplied by the length of the table element. Therefore, for
the fifth occurrence of TABLE-ITEM, the binary value contained in INX-A is (5 - 1) * 8,
or 32.
You can use this index to index another table only if both table descriptions have
the same number of table elements, and the table elements are the same length.
If you use USAGE IS INDEX to create an index, you can use the index data item with
any table. For example:
77 INX-B USAGE IS INDEX.
. . .
| SET INX-A TO 10
| SET INX-B TO INX-A.
| PERFORM VARYING INX-A FROM 1 BY 1 UNTIL INX-A > INX-B
| DISPLAY TABLE-ITEM (INX-A)
. . .
END-PERFORM.
| INX-A is used to traverse table TABLE-ITEM above, but could be used to traverse
| other tables also. INX-B is used to hold the index of the last element of the table.
| The advantage of this type of coding is that calculation of offsets of table elements
| is minimized, and no conversion is necessary for the UNTIL condition.
Initialize the index-name with a SET, PERFORM VARYING, or SEARCH ALL statement.
You can then also use it in SEARCH or relational condition statements. To change the
value, use a PERFORM, SEARCH, or SET statement.
Use the SET statement to assign to an index the value that you stored in the index
data item defined by USAGE IS INDEX. For example, when you load records into a
variable-length table, you can store the index value of the last record read in a data
item defined as USAGE IS INDEX. Then you can test for the end of the table by
comparing the current index value with the index value of the last record. This
technique is useful when you look through or process the table.
Because you are comparing a physical displacement, you can use index data items
only in SEARCH and SET statements or for comparisons with indexes or other index
data items. You cannot use index data items as subscripts or indexes.
RELATED TASKS
“Subscripting” on page 62
RELATED REFERENCES
INDEXED BY phrase (Enterprise COBOL Language Reference)
INDEX phrase (Enterprise COBOL Language Reference)
RELATED TASKS
“Loading a table dynamically”
“Loading a variable-length table” on page 69
“Initializing a table (INITIALIZE)”
“Assigning values when you define a table (VALUE)” on page 65
“Assigning values to a variable-length table” on page 70
To load a table, use the PERFORM statement and either subscripting or indexing.
When reading data to load your table, test to make sure that the data does not
exceed the space allocated for the table. Use a named value (rather than a literal)
for the item count. Then, if you make the table bigger, you need to change only
one value, instead of all references to a literal.
RELATED REFERENCES
PERFORM with VARYING phrase (Enterprise COBOL Language Reference)
The INITIALIZE statement cannot load a variable-length table (one that was defined
using OCCURS DEPENDING ON).
RELATED REFERENCES
INITIALIZE statement (Enterprise COBOL Language Reference)
64 Programming Guide
Assigning values when you define a table (VALUE)
If your table contains stable values (such as days and months), set the specific
values the table holds when you define it.
For example:
***********************************************************
*** E R R O R F L A G T A B L E ***
***********************************************************
01 Error-Flag-Table Value Spaces.
88 No-Errors Value Spaces.
05 Type-Error Pic X.
05 Shift-Error Pic X.
05 Home-Code-Error Pic X.
05 Work-Code-Error Pic X.
05 Name-Error Pic X.
05 Initials-Error Pic X.
05 Duplicate-Error Pic X.
05 Not-Found-Error Pic X.
01 Filler Redefines Error-Flag-Table.
05 Error-Flag Occurs 8 Times
Indexed By Flag-Index Pic X.
(In this example, the items could all be initialized with one VALUE clause at the 01
level, because each item is being initialized to the same value.)
For example:
01 TABLE-ONE VALUE “1234”.
05 TABLE-TWO OCCURS 4 TIMES PIC X.
RELATED REFERENCES
REDEFINES clause (Enterprise COBOL Language Reference)
PERFORM statement (Enterprise COBOL Language Reference)
INITIALIZE statement (Enterprise COBOL Language Reference)
OCCURS clause (Enterprise COBOL Language Reference)
66 Programming Guide
Move Error-Message (Sub) To Print-Message
Perform 260-Print-Report
End-If
End-Perform
. . .
In this example, X is called the ODO subject, and Y is the ODO object.
The following example shows a group item (REC-1) that contains both the subject
and object of the OCCURS DEPENDING ON clause. The way the length of the group
item is determined depends on whether it is sending or receiving data.
WORKING-STORAGE SECTION.
01 MAIN-AREA.
03 REC-1.
05 FIELD-1 PIC 9.
05 FIELD-2 OCCURS 1 TO 5 TIMES
DEPENDING ON FIELD-1 PIC X(05).
01 REC-2.
03 REC-2-DATA PIC X(50).
If you want to move REC-1 (the sending item in this case) to REC-2, the length of
REC-1 is determined immediately before the move, using the current value in
FIELD-1. If the content of FIELD-1 conforms to its PICTURE (that is, if FIELD-1
contains an external decimal item), the move can proceed based on the actual
length of REC-1. Otherwise, the result is unpredictable. You must ensure that the
ODO object has the correct value before you initiate the move.
When you do a move to REC-1 (the receiving item in this case), the length of REC-1
is determined using the maximum number of occurrences. In this example, that
would be five occurrences of FIELD-2, plus FIELD-1, for a length of 26 bytes.
In this case, you need not set the ODO object (FIELD-1) before referencing REC-1 as
a receiving item. However, the sending field’s ODO object (not shown) must be set
to a valid numeric value between 1 and 5 for the ODO object of the receiving field
to be validly set by the move.
However, if you do a move to REC-1 (again the receiving item) where REC-1 is
followed by a variably located group (a type of complex ODO), the actual length of
REC-1 is calculated immediately before the move. In the following example, REC-1
and REC-2 are in the same record, but REC-2 is not subordinate to REC-1 and is
therefore variably located:
01 MAIN-AREA
03 REC-1.
05 FIELD-1 PIC 9.
05 FIELD-3 PIC 9.
68 Programming Guide
05 FIELD-2 OCCURS 1 TO 5 TIMES
DEPENDING ON FIELD-1 PIC X(05).
03 REC-2.
05 FIELD-4 OCCURS 1 TO 5 TIMES
DEPENDING ON FIELD-3 PIC X(05).
When you do a MOVE to REC-1 in this case, the actual length of REC-1 is calculated
immediately before the move using the current value of the ODO object (FIELD-1).
The compiler issues a message letting you know that the actual length was used.
This case requires that you set the value of the ODO object before using the group
item as a receiving field.
The following example shows how to define a variable-length table when the ODO
object (here LOCATION-TABLE-LENGTH) is outside the group.
DATA DIVISION.
FILE SECTION.
FD LOCATION-FILE
RECORDING MODE F
BLOCK 0 RECORDS
RECORD 80 CHARACTERS
LABEL RECORD STANDARD.
01 LOCATION-RECORD.
05 LOC-CODE PIC XX.
05 LOC-DESCRIPTION PIC X(20).
05 FILLER PIC X(58).
. . .
WORKING-STORAGE SECTION.
01 FLAGS.
05 LOCATION-EOF-FLAG PIC X(5) VALUE SPACE.
88 LOCATION-EOF VALUE “FALSE”.
01 MISC-VALUES.
05 LOCATION-TABLE-LENGTH PIC 9(3) VALUE ZERO.
05 LOCATION-TABLE-MAX PIC 9(3) VALUE 100.
*****************************************************************
*** L O C A T I O N T A B L E ***
*** FILE CONTAINS LOCATION CODES. ***
*****************************************************************
01 LOCATION-TABLE.
05 LOCATION-CODE OCCURS 1 TO 100 TIMES
DEPENDING ON LOCATION-TABLE-LENGTH PIC X(80).
RELATED CONCEPTS
Appendix B, “Complex OCCURS DEPENDING ON,” on page 613
RELATED TASKS
“Assigning values to a variable-length table” on page 70
“Loading a variable-length table”
Enterprise COBOL Compiler and Run-Time Migration Guide
RELATED REFERENCES
OCCURS DEPENDING ON clause (Enterprise COBOL Language Reference)
If the ODO object has a VALUE clause, it is logically initialized after the ODO subject
has been initialized. For example, in the following code:
01 TABLE-THREE VALUE “3ABCDE”.
05 X PIC 9.
05 Y OCCURS 5 TIMES
DEPENDING ON X PIC X.
the ODO subject Y(1) is initialized to ’A’, Y(2) to ’B’, . . ., Y(5) to ’E’, and finally
the ODO object X is initialized to 3. Any subsequent reference to TABLE-THREE (such
as in a DISPLAY statement) refers to the first three elements, Y(1) through Y(3).
RELATED TASKS
Enterprise COBOL Compiler and Run-Time Migration Guide
RELATED REFERENCES
OCCURS DEPENDING ON clause (Enterprise COBOL Language Reference)
70 Programming Guide
Searching a table
COBOL provides two search techniques for tables: serial and binary.
To do serial searches, use SEARCH and indexing. For variable-length tables, you can
use PERFORM with subscripting or indexing.
A binary search can be considerably more efficient than a serial search. For a serial
search, the number of comparisons is of the order of n, the number of entries in
the table. For a binary search, the number of comparisons is only of the order of
the logarithm (base 2) of n. A binary search, however, requires that the table items
already be sorted.
RELATED TASKS
“Doing a serial search (SEARCH)”
“Doing a binary search (SEARCH ALL)” on page 72
The conditions in the WHEN option are evaluated in the order in which they appear:
v If none of the conditions is satisfied, the index is increased to correspond to the
next table element, and the WHEN conditions are evaluated again.
v If one of the WHEN conditions is satisfied, the search ends. The index remains
pointing to the table element that satisfied the condition.
v If the entire table has been searched and no conditions were met, the AT END
imperative statement is executed if there is one. If you do not use AT END,
control passes to the next statement in your program.
You can reference only one level of a table (a table element) with each SEARCH
statement. To search multiple levels of a table, use nested SEARCH statements.
Delimit each nested SEARCH statement with END-SEARCH.
If the found condition comes after some intermediate point in the table, you can
speed up the search. Use the SET statement to set the index to begin the search
after that point.
Arranging the table so that the data used most often is at the beginning also
enables more efficient serial searching. If the table is large and is presorted, a
binary search is more efficient.
RELATED REFERENCES
SEARCH statement (Enterprise COBOL Language Reference)
To use the SEARCH ALL statement, your table must already be ordered on the key or
keys coded in the OCCURS clause. You can use any key in the WHEN condition, but
you must test all preceding data-names in the KEY option, if any. The test must be
an equal-to condition, and the KEY data-name must be either the subject of the
condition or the name of a conditional variable with which the tested
condition-name is associated. The WHEN condition can also be a compound
condition, formed from simple conditions with AND as the only logical connective.
The key and its object of comparison must be compatible.
RELATED REFERENCES
SEARCH statement (Enterprise COBOL Language Reference)
72 Programming Guide
DESCENDING KEY-3
INDEXED BY INDX-1.
10 PART-1 PIC 99.
10 KEY-1 PIC 9(5).
10 PART-2 PIC 9(6).
10 KEY-2 PIC 9(4).
10 PART-3 PIC 9(18).
10 KEY-3 PIC 9(5).
If an entry is found in which the three keys are equal to the given values (VALUE-1,
VALUE-2, and VALUE-3), PART-1 of that entry will be moved to OUTPUT-AREA. If
matching keys are not found in any of the entries in TABLE-A, the NOENTRY routine
is performed.
You might often need to process the data in tables iteratively. For intrinsic
functions that accept multiple arguments, you can use the ALL subscript to
reference all the items in the table or a single dimension of the table. The iteration
is handled automatically, making your code shorter and simpler.
You can mix scalars and array arguments for functions that accept multiple
arguments:
Compute Table-Median = Function Median(Arg1 Table-One(ALL))
RELATED TASKS
“Using intrinsic functions (built-in functions)” on page 32
RELATED REFERENCES
Intrinsic functions (Enterprise COBOL Language Reference)
74 Programming Guide
Chapter 5. Selecting and repeating program actions
Use COBOL control language to choose program actions based on the outcome of
logical tests, to iterate over selected parts of your program and data, and to
identify statements to be performed as a group. These controls include:
v IF statement
v EVALUATE statement
v Switches and flags
v PERFORM statement
RELATED TASKS
“Selecting program actions”
“Repeating program actions” on page 83
The IF and EVALUATE statements in COBOL test one or more data items by means
of a conditional expression.
RELATED TASKS
“Coding a choice of actions”
“Coding conditional expressions” on page 79
RELATED REFERENCES
IF statement (Enterprise COBOL Language Reference)
EVALUATE statement (Enterprise COBOL Language Reference)
When one of the processing choices is no action, code the IF statement with or
without ELSE. Because the ELSE clause is optional, you can code the following:
IF condition-q
statement-1
END-IF
This coding is suitable for simple programming cases. For complex logic, you
probably need to use the ELSE clause. For example, suppose you have nested IF
statements with an action for only one of the processing choices; you could use the
ELSE clause and code the null branch of the IF statement with the CONTINUE
statement:
Use the EVALUATE statement to code a choice among three or more possible
conditions instead of just two. The EVALUATE statement is an expanded form of the
IF statement that allows you to avoid nesting IF statements for such coding, a
common source of logic errors and debugging problems.
With the EVALUATE statement, you can test any number of conditions in a single
statement and have separate actions for each. In structured programming terms,
this is a case structure. It can also be thought of as a decision table.
RELATED TASKS
“Coding conditional expressions” on page 79
“Using the EVALUATE statement” on page 77
“Using nested IF statements”
Use nested IF statements sparingly. The logic can be difficult to follow, although
explicit scope terminators and proper indentation help.
The following figure shows the logic structure for nested IF statements.
76 Programming Guide
RELATED TASKS
“Coding a choice of actions” on page 75
RELATED REFERENCES
Explicit scope terminators (Enterprise COBOL Language Reference)
You can code the EVALUATE statement to handle the case where multiple conditions
lead to the same processing by using the THRU phrase and by using multiple WHEN
statements.
When evaluated, each pair of selection subjects and selection objects must belong
to the same class (numeric, character, CONDITION TRUE or FALSE).
WHEN phrases are tested in the order they are coded. Therefore, you should order
these phrases for the best performance: code first the WHEN phrase containing
selection objects most likely to be satisfied, then the next most likely, and so on. An
exception is the WHEN OTHER phrase, which must come last.
RELATED TASKS
“Coding a choice of actions” on page 75
Example: EVALUATE using multiple WHEN statements: You can use multiple
WHEN statements when several conditions lead to the same processing action. This
gives you more flexibility than using the THRU phrase, because the conditions do
not have to evaluate to values that fall in a range or evaluate to alphanumeric
values.
EVALUATE MARITAL-CODE
WHEN “M”
ADD 2 TO PEOPLE-COUNT
WHEN “S”
WHEN “D”
WHEN “W”
ADD 1 TO PEOPLE-COUNT
END-EVALUATE
78 Programming Guide
Configuration Section.
Source-Computer. IBM-390.
Data Division.
Working-Storage Section.
01 Age Pic 999.
01 Sex Pic X.
01 Description Pic X(15).
01 A Pic 999.
01 B Pic 9999.
01 C Pic 9999.
01 D Pic 9999.
01 E Pic 99999.
01 F Pic 999999.
Procedure Division.
PN01.
Evaluate True Also True
When Age < 13 Also Sex = “M”
Move “Young Boy” To Description
When Age < 13 Also Sex = “F”
Move “Young Girl” To Description
When Age > 12 And Age < 20 Also Sex = “M”
Move “Teenage Boy” To Description
When Age > 12 And Age < 20 Also Sex = “F”
Move “Teenage Girl” To Description
When Age > 19 Also Sex = “M”
Move “Adult Man” To Description
When Age > 19 Also Sex = “F”
Move “Adult Woman” To Description
When Other
Move “Invalid Data” To Description
End-Evaluate
Evaluate True Also True
When A + B < 10 Also C = 10
Move “Case 1” To Description
When A + B > 50 Also C = ( D + E ) / F
Move “Case 2” To Description
When Other
Move “Case Other” To Description
End-Evaluate
Stop Run.
RELATED CONCEPTS
“Switches and flags”
RELATED TASKS
“Defining switches and flags”
“Resetting switches and flags” on page 81
“Checking for incompatible data (numeric class test)” on page 46
“Comparing national data items” on page 111
RELATED REFERENCES
Rules for condition-name values (Enterprise COBOL Language Reference)
Switch-status condition (Enterprise COBOL Language Reference)
Sign condition (Enterprise COBOL Language Reference)
Comparing numeric and alphanumeric operands (Enterprise COBOL Language
Reference)
Combined conditions (Enterprise COBOL Language Reference)
Class condition (Enterprise COBOL Language Reference)
Flags and switches make your code easier to change. If you need to change the
values for a condition, you have to change only the value of that level-88
condition-name.
For example, suppose a program uses a condition-name to test a field for a given
salary range. If the program must be changed to check for a different salary range,
you need to change only the value of the condition-name in the DATA DIVISION.
You do not need to make changes in the PROCEDURE DIVISION.
RELATED TASKS
“Defining switches and flags”
“Resetting switches and flags” on page 81
To test for more than two values, as flags, assign more than one condition name to
a field by using multiple level-88 items.
80 Programming Guide
The reader can easily follow your code if you choose meaningful condition names
and if the values assigned have some association with logical values.
“Example: switches”
“Example: flags”
Example: switches
To test for an end-of-file condition for an input file named Transaction-File, you
could use the following data definitions:
WORKING-STORAGE Section.
01 Switches.
05 Transaction-EOF-Switch Pic X value space.
88 Transaction-EOF value “y”.
Example: flags
Consider a program that updates a master file. The updates are read from a
transaction file. The transaction file’s records contain a field for the function to be
performed: add, change, or delete. In the record description of the input file code a
field for the function code using level-88 items:
01 Transaction-Input Record
05 Transaction-Type Pic X.
88 Add-Transaction Value “A”.
88 Change-Transaction Value “C”.
88 Delete-Transaction Value “D”.
The code in the PROCEDURE DIVISION for testing these condition-names might look
like this:
Evaluate True
When Add-Transaction
Perform Add-Master-Record-Paragraph
When Change-Transaction
Perform Update-Exisitng-Record-Paragraph
When Delete-Transaction
Perform Delete-Master-Record-Paragraph
End-Evaluate
When you use the SET condition-name TO TRUE statement, the switch or flag is set
back to the original value that was assigned in its data description.
For a level-88 item with multiple values, SET condition-name TO TRUE assigns the
first value (here, A):
88 Record-is-Active Value “A” “O” “S”
The following example shows how to assign a value for a field in an output record
based on the transaction code of an input record.
01 Input-Record.
05 Transaction-Type Pic X(9).
. . .
01 Data-Record-Out.
05 Data-Record-Type Pic X.
88 Record-Is-Active Value “A”.
88 Record-Is-Suspended Value “S”.
88 Record-Is-Deleted Value “D”.
05 Key-Field Pic X(5).
. . .
Procedure Division.
. . .
Evaluate Transaction-Type of Input-Record
When “ACTIVE”
Set Record-Is-Active to TRUE
When “SUSPENDED”
Set Record-Is-Suspended to TRUE
When “DELETED”
Set Record-Is-Deleted to TRUE
End-Evaluate
This code resets the switch to indicate that the end of the file has not been reached.
82 Programming Guide
Repeating program actions
Use the PERFORM statement to run a paragraph and then implicitly return control to
the next executable statement. In effect, the PERFORM statement is a way of coding a
closed subroutine that you can enter from many different parts of the program.
Use the PERFORM statement to loop (repeat the same code) a set number of times or
to loop based on the outcome of a decision.
RELATED TASKS
“Choosing inline or out-of-line PERFORM”
“Coding a loop” on page 84
“Coding a loop through a table” on page 85
“Executing multiple paragraphs or sections” on page 85
RELATED REFERENCES
PERFORM statement (Enterprise COBOL Language Reference)
In the 1974 COBOL standard, the PERFORM statement is out-of-line and thus requires
an explicit branch to a separate paragraph and has an implicit return. If the
performed paragraph is in the subsequent sequential flow of your program, it is
also executed in that flow of the logic. To avoid this additional execution, you
must place the paragraph outside the normal sequential flow (for example, after
the GOBACK) or code a branch around it.
Coding a loop
Use the PERFORM . . . TIMES statement to execute a paragraph a certain number of
times:
PERFORM 010-PROCESS-ONE-MONTH 12 TIMES
INSPECT . . .
When control reaches the PERFORM statement, the code for the paragraph
010-PROCESS-ONE-MONTH is executed 12 times before control is transferred to the
INSPECT statement.
Use the PERFORM . . . WITH TEST AFTER . . . UNTIL if you want to execute the
paragraph at least once and then test before any subsequent execution. This
statement is equivalent to the do-until structure:
In the following example, the implicit WITH TEST BEFORE phrase provides a
do-while structure:
PERFORM 010-PROCESS-ONE-MONTH
UNTIL MONTH GREATER THAN 12
INSPECT . . .
When control reaches the PERFORM statement, the condition (MONTH EQUAL DECEMBER)
is tested. If the condition is satisfied, control is transferred to the INSPECT
statement. If the condition is not satisfied, 010-PROCESS-ONE-MONTH is executed, and
84 Programming Guide
the condition is tested again. This cycle continues until the condition tests as true.
(To make your program easier to read, you might want to code the WITH TEST
BEFORE clause.)
Thus you use the PERFORM statement to control a loop through a table. You can use
either of the following forms:
PERFORM . . . WITH TEST AFTER . . . VARYING . . . UNTIL . . .
PERFORM . . . [WITH TEST BEFORE] . . . VARYING . . . UNTIL .
The following code shows an example of looping through a table to check for
invalid data:
PERFORM TEST AFTER VARYING WS-DATA-IX
FROM 1 BY 1
UNTIL WS-DATA-IX = 12
IF WS-DATA (WS-DATA-IX) EQUALS SPACES
SET SERIOUS-ERROR TO TRUE
DISPLAY ELEMENT-NUM-MSG5
END-IF
END-PERFORM
INSPECT . . .
In the code above, when control reaches the PERFORM statement, WS-DATA-IX is set
equal to 1 and the PERFORM statement is executed. Then the condition
(WS-DATA-IX = 12) is tested. If the condition is true, control drops through to the
INSPECT statement. If it is false, WS-DATA-IX is increased by 1, the PERFORM statement
is executed, and the condition is tested again. This cycle of execution and testing
continues until WS-DATA-IX is equal to 12.
In terms of the application, this loop controls input-checking for the 12 fields of
item WS-DATA. Empty fields are not allowed, and this section of code loops through
and issues error messages as appropriate.
Intrinsic functions can make the coding of the iterative processing of tables simpler
and easier.
86 Programming Guide
Chapter 6. Handling strings
COBOL provides language constructs for performing the following operations
associated with string data items:
v Joining and splitting data items
v Manipulating null-terminated strings, such as counting or moving characters
v Referring to substrings by their ordinal position and, if needed, length
v Tallying and replacing data items, such as counting the number of times a
specific character occurs in a data item
v Converting data items, such as changing to uppercase or lowercase
v Evaluating data items, such as determining the length of a data item
RELATED TASKS
“Joining data items (STRING)”
“Splitting data items (UNSTRING)” on page 89
“Manipulating null-terminated strings” on page 91
“Referring to substrings of data items” on page 93
“Tallying and replacing data items (INSPECT)” on page 95
“Converting data items (intrinsic functions)” on page 97
“Evaluating data items (intrinsic functions)” on page 99
Chapter 7, “Processing character data in an international environment,” on page
103
The STRING statement transfers data items into the receiving item in the order that
you indicate. In the STRING statement you can also specify the following:
v Delimiters that cause a sending field to be ended and another to be started
v Actions to be taken when the single receiving field is filled before all of the
sending characters have been processed (ON OVERFLOW condition)
You can specify a national item for any literal or identifier operand except the
POINTER identifier. However, if you specify a national item, you must specify all of
the literal and identifier operands (except the POINTER identifier) as national.
RELATED TASKS
“Handling errors in joining and splitting strings” on page 202
RELATED REFERENCES
STRING statement (Enterprise COBOL Language Reference)
The record RCD-01 contains the following information (the symbol b indicates a
blank space):
J.B.bSMITHbbbbb
444bSPRINGbST.,bCHICAGO,bILL.bbbbbb
A14275
$4,736.85
$2,400.00
09/22/76
$2,336.85
10/22/76
In the PROCEDURE DIVISION, the programmer initializes RPT-LINE to SPACES and sets
LINE-POS, the data item to be used as the POINTER field, to 4. (By coding the
POINTER phrase of the STRING statement, you can use the explicit pointer field to
control placement of data in the receiving field.) Then, the programmer codes this
STRING statement:
STRING
LINE-NO SPACE CUST-INFO INV-NO SPACE DATE-DUE SPACE
DELIMITED BY SIZE
BAL-DUE
DELIMITED BY DEC-POINT
INTO RPT-LINE
WITH POINTER LINE-POS.
Item Positions
LINE-NO 4-8
Space 9
CUST-INFO 10 - 59
INV-NO 60 - 65
88 Programming Guide
Item Positions
Space 66
DATE-DUE 67 - 74
Space 75
Portion of BAL-DUE that precedes the decimal point 76 - 81
After the STRING statement is performed, the value of LINE-POS is 82, and RPT-LINE
appears as shown below.
You can specify national items as the sending field, receiving fields, and delimiters.
However, if you specify a national item, you must specify all of these operands as
national.
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED TASKS
“Handling errors in joining and splitting strings” on page 202
Enterprise COBOL Compiler and Run-Time Migration Guide
RELATED REFERENCES
UNSTRING statement (Enterprise COBOL Language Reference)
Before issuing the UNSTRING statement, the programmer places the value 3 in
CHAR-CT (the POINTER field) to avoid working with the two control characters in
INV-RCD. A period (.) is placed in DBY-1 for use as a delimiter, and the value 0
(zero) is placed in FLDS-FILLED (the TALLYING field). The data is then read into
INV-RCD, as shown below.
90 Programming Guide
UNSTRING program results
When the UNSTRING statement is performed, the following steps take place:
1. Positions 3 through 18 (FOUR-PENNY-NAILS) of INV-RCD are placed in ITEM-NAME,
left justified in the area, and the four unused character positions are padded
with spaces. The value 16 is placed in CTR-1.
2. Because ALL SPACES is coded as a delimiter, the five contiguous SPACE characters
in positions 19 through 23 are considered to be one occurrence of the delimiter.
3. Positions 24 through 29 (707890) are placed in INV-NO. The delimiter character,
/, is placed in DLTR-1, and the value 6 is placed in CTR-2.
4. Positions 31 through 33 are placed in INV-CLASS. The delimiter is a SPACE, but
because no field has been defined as a receiving area for delimiters, the SPACE
in position 34 is bypassed.
5. Positions 35 through 40 (475120) are examined and placed in M-UNITS. The
value 6 is placed in CTR-3. The delimiter is a SPACE, but because no field has
been defined as a receiving area for delimiters, the SPACE in position 41 is
bypassed.
6. Positions 42 through 46 (00122) are placed in FIELD-A and right justified in the
area. The high-order digit position is filled with a 0 (zero). The delimiter is a
SPACE, but because no field has been defined as a receiving area for delimiters,
the SPACE in position 47 is bypassed.
7. Positions 48 through 53 (000379) are placed in DISPLAY-DOLS. The period (.)
delimiter character in DBY-1 is placed in DLTR-2, and the value 6 is placed in
CTR-4.
8. Because all receiving fields have been acted on and two characters of data in
INV-RCD have not been examined, the ON OVERFLOW exit is taken, and execution
of the UNSTRING statement is completed.
After the UNSTRING statement is performed, the fields contain the values shown
below.
Field Value
DISPLAY-REC 707890 FOUR-PENNY-NAILS 000379
WORK-REC 475120000122BBA
CHAR-CT (the POINTER field) 55
FLDS-FILLED (the TALLYING field) 6
RELATED REFERENCES
Alphanumeric literals (Enterprise COBOL Language Reference)
92 Programming Guide
Referring to substrings of data items
Refer to a substring of a character-string data item (including alphanumeric, DBCS,
and national data items) by using a reference modifier. Intrinsic functions that
return character-string values can include a reference modifier.
As this example shows, you code two values separated by a colon, in parentheses,
immediately following the data item:
v Ordinal position (from the left) of the character that you want the substring to
start with
v Length of the desired substring
The length is optional. If you omit the length, the substring extends to the end of
the item. Omit the length when possible as a simpler and less error-prone coding
technique.
You can code either of the two values as a variable or as an arithmetic expression.
You can also refer to substrings of table entries, including variable-length entries.
To refer to a substring of a table entry, you must code the subscript expression
before the reference modifier. For example, assuming that PRODUCT-TABLE is a
properly coded table of character strings, to move D to the fourth character in the
second string in the table, you could code this statement:
MOVE ’D’ to PRODUCT-TABLE (2), (4:1)
Both numbers in the reference modifier must have a value of at least 1. Their sum
should not exceed the total length of the data item by more than 1 so that you do
not reference beyond the end of the desired substring.
The following options detect out-of-range reference modifiers, and flag violations
with a run-time message:
v SSRANGE compiler option
v CHECK run-time option
You can reference-modify national data items. The reference modifier position and
length for a national item are expressed in terms of national characters.
RELATED CONCEPTS
“Reference modifiers” on page 94
“Unicode and encoding of language characters” on page 105
RELATED TASKS
“Referring to an item in a table” on page 61
Chapter 6. Handling strings 93
RELATED REFERENCES
“SSRANGE” on page 304
Reference modification (Enterprise COBOL Language Reference)
Function definitions (Enterprise COBOL Language Reference)
Reference modifiers
Assume that you want to retrieve the current time from the system and display its
value in an expanded format. You can retrieve the current time with the ACCEPT
statement, which returns the hours, minutes, seconds, and hundredths of seconds
in this format:
HHMMSSss
However, you might prefer to view the current time in this format:
HH:MM:SS
Without reference modifiers, you would have to define data items for both formats.
You would also have to write code to convert from one format to the other.
With reference modifiers, you do not need to provide names for the subfields that
describe the TIME elements. The only data definition you need is for the time as
returned by the system. For example:
01 REFMOD-TIME-ITEM PIC X(8).
RELATED TASKS
“Referring to substrings of data items” on page 93
“Using national data (Unicode) in COBOL” on page 106
RELATED REFERENCES
Reference modification (Enterprise COBOL Language Reference)
94 Programming Guide
01 LEFTY PIC X(30).
01 RIGHTY PIC X(30) JUSTIFIED RIGHT.
01 I PIC 9(9) USAGE BINARY.
The program counts the number of leading spaces and, using arithmetic
expressions in a reference modifier, moves the right-justified characters into
another field, justified to the left:
MOVE SPACES TO LEFTY
MOVE ZERO TO I
INSPECT RIGHTY
TALLYING I FOR LEADING SPACE.
IF I IS LESS THAN LENGTH OF RIGHTY THEN
MOVE RIGHTY ( I + 1 : LENGTH OF RIGHTY - I ) TO LEFTY
END-IF
The MOVE statement transfers characters from RIGHTY, beginning at the position
computed as I + 1 for a length that is computed as LENGTH OF RIGHTY - I, into the
field LEFTY.
RELATED REFERENCES
INTEGER-PART (Enterprise COBOL Language Reference)
INTEGER (Enterprise COBOL Language Reference)
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED REFERENCES
INSPECT statement (Enterprise COBOL Language Reference)
In the following example, the INSPECT statement is used to examine and replace
characters in data item DATA-2. The number of times a leading 0 occurs in the data
item is accumulated in COUNTR. Every instance of the character A that follows the
first instance of the character C is replaced by the character 2.
77 COUNTR PIC 9 VALUE ZERO.
01 DATA-2 PIC X(11).
. . .
INSPECT DATA-2
TALLYING COUNTR FOR LEADING “0”
REPLACING FIRST “A” BY “2” AFTER INITIAL “C”
In the following example, the INSPECT statement is used to examine and replace
characters in data item DATA-3. Every character in the data item that precedes the
first instance of a quotation mark (“) is replaced by the character 0.
77 COUNTR PIC 9 VALUE ZERO.
01 DATA-3 PIC X(8).
. . .
INSPECT DATA-3
REPLACING CHARACTERS BY ZEROS BEFORE INITIAL QUOTE
The following example shows the use of INSPECT CONVERTING with AFTER and
BEFORE phrases to examine and replace characters in data item DATA-4. All
characters in the data item that follow the first instance of the character / but that
precede the first instance of the character ? (if any) are translated from lowercase
to uppercase.
01 DATA-4 PIC X(11).
. . .
INSPECT DATA-4
CONVERTING
”abcdefghijklmnopqrstuvwxyz“ TO
”ABCDEFGHIJKLMNOPQRSTUVWXYZ“
AFTER INITIAL ”/“
BEFORE INITIAL”?“
96 Programming Guide
Converting data items (intrinsic functions)
You can use intrinsic functions to convert character-string data items to:
v Uppercase or lowercase
v Reverse order
v Numbers
v One code page to another
You can use the NATIONAL-OF and DISPLAY-OF intrinsic functions to convert to and
from national (Unicode) strings.
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
The code above displays the following messages on the system logical output
device:
Hello World!
HELLO WORLD!
hello world!
HELLO WORLD!
The DISPLAY statements do not change the actual contents of Item-1, but affect only
how the letters are displayed. However, the MOVE statement causes uppercase
letters to be moved to the actual contents of Item-2.
For example, if the starting value is JOHNSONbbb, the value after the statement is
performed is bbbNOSNHOJ, where b represents a blank space.
When you reverse the order of a national string, the result is a national string.
Use NUMVAL-C when the argument includes a currency symbol or comma, or both,
as shown in the example. You can also place an algebraic sign before or after the
character string, and the sign will be processed. The arguments must not exceed 18
digits when you compile with the default option ARITH(COMPAT) (compatibility mode)
nor 31 digits when you compile with ARITH(EXTEND) (extended mode), not including
the editing symbols.
When you use NUMVAL or NUMVAL-C, you do not need to statically declare numeric
data in a fixed format, nor input data in a precise manner. For example, suppose
you define numbers to be entered as follows:
01 X Pic S999V99 leading sign is separate.
. . .
Accept X from Console
The user of the application must enter the numbers exactly as defined by the
PICTURE clause. For example:
+001.23
-300.00
98 Programming Guide
RELATED CONCEPTS
“Formats for numeric data” on page 40
RELATED TASKS
“Assigning input from a screen or file (ACCEPT)” on page 29
“Displaying values on a screen or in a file (DISPLAY)” on page 30
“Converting national data” on page 107
RELATED REFERENCES
NUMVAL (Enterprise COBOL Language Reference)
NUMVAL-C (Enterprise COBOL Language Reference)
“ARITH” on page 271
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED TASKS
“Evaluating single characters for collating sequence”
“Finding the largest or smallest data item”
“Finding the length of data items” on page 101
“Finding the date of compilation” on page 102
If you know the ordinal position in the collating sequence of a character, and want
to know the character that it corresponds to, use the CHAR function with the integer
ordinal position as the argument. CHAR returns the desired character:
INITIALIZE Customer-Name REPLACING ALPHABETIC BY Function Char(65)
RELATED REFERENCES
CHAR (Enterprise COBOL Language Reference)
ORD (Enterprise COBOL Language Reference)
If you specify a national item for any argument, you must specify all arguments as
national.
If you used the ORD-MAX function in the example above, you would receive a syntax
error message at compile time; the reference to a numeric function is in an invalid
place. The following is a valid use of the ORD-MAX function:
Compute x = Function Ord-max(Arg1 Arg2 Arg3)
This code assigns the integer 3 to x if the same arguments are used as in the
previous example. If you use ORD-MIN instead, the integer 2 is returned. The above
examples would probably be more realistic if Arg1, Arg2, and Arg3 were instead
successive elements of an array (table).
If you specify a national item for any argument, you must specify all arguments as
national.
In the following example, the amount of data moved to R3 and the results of the
COMPUTE statement depend on the values and sizes of R1 and R2:
01 R1 Pic x(10) value “e”.
01 R2 Pic x(05) value “f”.
01 R3 Pic x(20) value spaces.
01 L Pic 99.
. . .
Move Function Max(R1 R2) to R3
Compute L = Function Length(Function Max(R1 R2))
If R1 contained ’g’ instead of ’e’, then R1 would evaluate as larger than R2, and:
v The string ’gbbbbbbbbb’ would be moved to R3. (The unfilled character positions
in R3 would be padded with spaces.)
v The value 10 would be assigned to L.
RELATED TASKS
“Performing arithmetic” on page 47
“Processing table items using intrinsic functions” on page 73
RELATED REFERENCES
ORD-MAX (Enterprise COBOL Language Reference)
ORD-MIN (Enterprise COBOL Language Reference)
The following COBOL statement demonstrates moving a data item into that field
in a record that holds customer names:
Move Customer-name To Customer-record(1:Function Length(Customer-name))
The LENGTH function returns the length of a national item in national characters.
You can also use the LENGTH OF special register, which returns the length in bytes
even for national data. Coding either Function Length(Customer-name) or LENGTH
OF Customer-name returns the same result for alphanumeric items: the length of
Customer-name in bytes.
You can use the LENGTH function only where arithmetic expressions are allowed.
However, you can use the LENGTH OF special register in a greater variety of
contexts. For example, you can use the LENGTH OF special register as an argument
to an intrinsic function that allows integer arguments. (You cannot use an intrinsic
function as an operand to the LENGTH OF special register.) You can also use the
LENGTH OF special register as a parameter in a CALL statement.
RELATED REFERENCES
LENGTH (Enterprise COBOL Language Reference)
These characters show the four-digit year, month, day, and time (in hours, minutes,
seconds, and hundredths of seconds) of compilation.
The WHEN-COMPILED special register is another means you can use to find the date
and time of compilation. It has the following format:
MM/DD/YYhh.mm.ss
The WHEN-COMPILED special register supports only a two-digit year, and carries the
time out only to seconds. This special register be used only as the sending field in
a MOVE statement.
RELATED REFERENCES
WHEN-COMPILED (Enterprise COBOL Language Reference)
Use these COBOL facilities to code and compile programs with encoding of
national character data and culturally sensitive collation orders for such character
data:
v National data type, defined with USAGE NATIONAL and PICTURE symbol N
v National literals, specified with literal prefix N or NX
v Intrinsic functions:
– NATIONAL-OF to return a character string in UTF-16 representation
– DISPLAY-OF to convert a national string to a selected code page (EBCDIC,
ASCII, EUC, or UTF-8)
v Compiler options:
– CODEPAGE to specify the code page to use for alphanumeric and double-byte
character set (DBCS) data in your program
– NSYMBOL to control whether national or DBCS processing is used for the N
symbol in literals and PICTURE clauses
In addition, when you are working with national data, certain coding situations
such as handling strings, sorting and merging, and passing data require special
attention.
Table 15. COBOL statements and national data
COBOL
statement Can be national Comment For more information
ACCEPT identifier-1 Converted from EBCDIC “Assigning input from a screen or file
only if the CONSOLE option (ACCEPT)” on page 29
is specified directly or
indirectly.
CALL identifier-2, identifier-3, “Passing data” on page 411
identifier-4, identifier-5;
literal-2, literal-3
COPY . . operand-1, operand-2 COPY statement (Enterprise COBOL
.REPLACING Language Reference)
DISPLAY identifier-1 Converted to EBCDIC only “Displaying values on a screen or in a
if the CONSOLE option is file (DISPLAY)” on page 30
specified directly or
indirectly.
INITIALIZE REPLACING If you specify REPLACING “Examples: initializing data items” on
NATIONAL, identifier-2 and page 26
literal-1 must be of class
national, and vice versa.
INSPECT Identifiers and literals other If any of these is of class “Tallying and replacing data items
than identifier-3 (the national, all must be. (INSPECT)” on page 95
TALLYING identifier)
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED REFERENCES
“CODEPAGE” on page 274
“NSYMBOL” on page 291
Each character set is a defined set of characters, but is not associated with a coded
representation. A coded character set (also referred to here as a code page) is a set of
unambiguous rules that relate the characters of the set to their coded
representation. Each code page has a name and is like a table that sets up the
symbols for representing a character set; each symbol is a unique bit pattern, or
code point. (Each IBM code page also has a coded character set identifier (CCSID),
which is a value from 1 to 65,536.)
UTF-8 represents ASCII invariant characters a-z, A-Z, 0-9, and certain special
characters such as ’ @ , . + - = / * ( ) identically as in ASCII. UTF-16 represents
such characters as X’00nn’ where X’nn’ is the representation of the character in
ASCII.
One or more encoding units are used to represent a character in a coded character
set. For UTF-16, an encoding unit takes 2 bytes of storage. Any character defined
in any EBCDIC, ASCII, or EUC code page is represented in one UTF-16 encoding
unit when the character is converted to the national data representation.
RELATED TASKS
Chapter 7, “Processing character data in an international environment,” on page
103
If you specify a PICTURE clause but do not specify a USAGE clause for data items
that consist only of one or more PICTURE symbols N, you can use the compiler
option NSYMBOL(NATIONAL) to ensure that the items are treated as national data
items (instead of as DBCS items).
National literals
To specify national literals, use the prefix character N and compile with the option
NSYMBOL(NATIONAL). For example, you can use either of these notations:
N“character-data”
N’character-data’
When you use NSYMBOL(DBCS), the literal prefix character N specifies a DBCS literal,
not a national literal.
To specify a national literal as a hexadecimal value, use the prefix character NX. For
example, you can use either of these notations:
NX“hexadecimal-digits”
NX’hexadecimal-digits’
Each of the following MOVE statements sets the data item X to the Unicode value
AB:
01 X pic NN usage national.
. . .
Move NX“00410042” to X
Move N“AB” to X
Move “AB” to X
Do not use alphanumeric hexadecimal literals in contexts that call for a national
literal, because such usage is easily misunderstood. For example, the statement:
Move X“C1C2C3C4” to X
When you use the figurative constant QUOTE, SPACE, or ZERO in a context that
requires national characters, the figurative constant represents a national character
value. However, you cannot use the figurative constants HIGH-VALUE and LOW-VALUE
1. Use the CODEPAGE compiler option to specify the code page for the EBCDIC code page
applicable to alphanumeric or DBCS data. National literals in your source program are
converted to UTF-16 for use at run time.
2. Most characters are represented in UTF-16 using one encoding unit. In particular, the
following characters are represented using a single UTF-16 encoding unit per character:
v COBOL characters A-Z, a-z, 0-9, space, + -*/= $,;.“()><:’
| v All characters that are converted from an EBCDIC, ASCII, or EUC code page
RELATED CONCEPTS
“Unicode and encoding of language characters” on page 105
RELATED TASKS
“Converting national data”
“Comparing national data items” on page 111
“Processing UTF-8 data” on page 109
RELATED REFERENCES
“CODEPAGE” on page 274
“NSYMBOL” on page 291
If you specify a code page as an argument to DISPLAY-OF and it differs from the
code page that is in effect with the CODEPAGE compiler option, do not use the
DISPLAY-OF function result in any operations that involve implicit conversion (such
as an assignment to, or comparison with, a national data item). Such operations
assume the EBCDIC code page that is specified in the CODEPAGE compiler option.
Conversion exceptions
Implicit or explicit conversion between national and alphanumeric data could fail
and generate a severity-3 Language Environment condition. Failures could occur if
any of the follow occur:
v Unicode Conversion Services was not installed on your system.
v The code page that you specified (implicitly or explicitly) is not a valid code
page.
v The combination of the CCSID that you specified explicitly or implicitly (such as
by using the CODEPAGE compiler option) and the UTF-16 Unicode CCSID (1200)
was not configured on your system as a valid conversion pair for the Unicode
Conversion Services on the system.
A character that does not have a counterpart in the target CCSID does not result in
a conversion exception. Such a character is converted to a substitution character of
the target code page.
RELATED TASKS
Customizing Unicode support for COBOL (Enterprise COBOL Customization Guide)
If you can correctly set the CODEPAGE compiler option to CCSID 00875 (that is, the
rest of your program also handles EBCDIC data in Greek), you can code the same
example correctly as follows:
CBL CODEPAGE(00037)
* . . .
01 Data-in-Unicode pic N(100) usage national.
01 Data-in-Greek pic X(100).
* . . .
Read Greek-file into Data-in-Greek
* . . . process Data-in-Greek here ...
* . . . or do the following (if need to process data in Unicode)
Move Data-in-Greek to Data-in-Unicode
* . . . process Data-in-Unicode
Move function Display-of(Data-in-Unicode) to Data-in-Greek
Write Greek-record from Data-in-Greek
The following example illustrates these steps, converting Greek EBCDIC data to
UTF-8:
RELATED TASKS
“Converting national data” on page 107
GB 18030 characters are encoded through the existing Chinese EBCDIC code page,
CCSID 1388, which has been expanded to include the GB 18030 characters that do
not require UTF-16 surrogate values. Surrogate values in UTF-16 are those characters
that require two 2-byte encoding units (4 bytes) for each character.
RELATED TASKS
“Converting national data” on page 107
You can compare national data items explicitly or implicitly with certain
nonnational items in relation conditions in the following statements:
v EVALUATE
v IF
v PERFORM
v SEARCH
All comparisons that involve a national operand are national comparisons. The
operands must follow the rules for valid comparisons. The PROGRAM COLLATING
SEQUENCE does not affect comparisons that involve national operands.
When you compare operands of unequal lengths, the shorter operand is treated as
if it were padded on the right with default Unicode UTF-16 space characters
(NX’0020’) to the length of the longer operand.
RELATED REFERENCES
Relation condition (Enterprise COBOL Language Reference)
Comparison of numeric and alphanumeric operands (Enterprise COBOL Language
Reference)
RELATED TASKS
“Joining data items (STRING)” on page 87
“Splitting data items (UNSTRING)” on page 89
“Referring to substrings of data items” on page 93
“Converting national data” on page 107
The source of the information and the target for the results can be one or more of
the following:
v Another program
v Direct-access storage device
v Magnetic tape
v Printer
v Terminal
v Card reader or punch
Your COBOL program does not directly handle physical records. It processes
logical records. A logical record can correspond to a complete physical record, part
of a physical record, or to parts or all of one or more physical records. Your
COBOL program handles logical records exactly as you have defined them.
RELATED CONCEPTS
“File organization and input-output devices”
RELATED TASKS
“Choosing file organization and access mode” on page 115
“Allocating files” on page 117
“Checking for input or output errors” on page 118
With IBM Enterprise COBOL for z/OS, requests to the operating system for the
storage and retrieval of records from input-output devices are handled by the two
access methods QSAM and VSAM, and the UNIX file system.
The device type upon which you elect to store your data could affect the choices of
file organization available to you. Direct-access storage devices provide greater
flexibility in the file organization options. Sequential-only devices limit
organization options but have other characteristics, such as the portability of tapes,
that might be useful.
Sequential-only devices
Terminals, printers, card readers, and punches are called unit-record devices
because they process one line at a time. Therefore, you must also process
records one at a time sequentially in your program when it reads from or
writes to unit-record devices.
On tape, records are ordered sequentially, so your program must process
them sequentially. Use QSAM physical sequential files when processing
tape files. The records on tape can be fixed length or variable length. The
rate of data transfer is faster than it is for cards.
Direct-access storage devices
Direct-access storage devices hold many records. The record arrangement
of files stored on these devices determines the ways that your program can
process the data. When using direct-access devices, you have greater
flexibility within your program, because your can use several types of file
organization:
v Sequential (VSAM or QSAM)
RELATED TASKS
“Allocating files” on page 117
Chapter 9, “Processing QSAM files,” on page 119
Chapter 10, “Processing VSAM files,” on page 147
Chapter 11, “Processing line-sequential files,” on page 175
“Choosing file organization and access mode”
The following table shows the possible file organizations, access modes, and record
formats for COBOL files.
Table 18. File organization, access mode, and record format
Sequential Random Dynamic Fixed Variable
File organization access access access length length
QSAM (physical X X X
sequential)
Line sequential X X1 X
VSAM sequential (ESDS) X X X
VSAM indexed (KSDS) X X X X X
VSAM relative (RRDS) X X X X X
1. The data itself is in variable format but can be read into and written from COBOL
fixed-length records.
RELATED REFERENCES
“Format for coding input and output” on page 116
“Allowable control characters” on page 176
RELATED TASKS
Chapter 9, “Processing QSAM files,” on page 119
Chapter 10, “Processing VSAM files,” on page 147
Chapter 11, “Processing line-sequential files,” on page 175
Allocating files
For any type of file (sequential, line sequential, indexed, or relative) in your z/OS
or UNIX applications, you can define the external name with either a ddname or
an environment variable name. The external name is the name in the
assignment-name of the ASSIGN clause.
If the file is in the HFS, you can use either a DD definition or an environment
variable to define the file by specifying its path name with the PATH keyword.
The environment variable name must be uppercase. The allowable attributes for its
value depend on the organization of the file being defined.
Because you can define the external name in either of two ways, the COBOL run
time goes through the following steps to find the definition of the file:
1. If the ddname is explicitly allocated, it is used. The definition can be from a DD
statement in JCL, an ALLOCATE command from TSO/E, or a user-initiated
dynamic allocation.
2. If the ddname is not explicitly allocated and an environment variable of the
same name is set, the value of the environment variable is used.
The file is dynamically allocated using the attributes specified by the
environment variable. At a minimum, you must specify either the PATH() or
DSN() option. All options and attributes must be in uppercase, except for the
path-name suboption of the PATH option, which is case sensitive. You cannot
specify a temporary data set name in the DSN() option.
File status code 98 results from any of the following:
v The contents (including a value of null or all blanks) of the environment
variable are not valid.
v The dynamic allocation of the file fails.
v The dynamic deallocation of the file fails.
The COBOL run time checks the contents of the environment variable at each
OPEN statement. If a file with the same external name was dynamically allocated
by a previous OPEN statement and the contents of the environment variable
have changed since that OPEN, the run time dynamically deallocates the
previous allocation and reallocates the file using the options currently set in the
environment variable. If the contents of the environment variable have not
changed, the run time uses the current allocation.
The COBOL run time deallocates all dynamic allocations at run unit termination,
except “implicit” CBLQDA allocations.
RELATED TASKS
“Setting and accessing environment variables” on page 384
“Defining and allocating QSAM files” on page 134
“Dynamically creating QSAM files with CBLQDA” on page 130
“Allocating VSAM files” on page 169
With VSAM files, you can use a second data-name in the FILE STATUS clause to get
additional VSAM return code information.
Another way of handling errors in input and output operations is to code ERROR
(synonymous with EXCEPTION) declaratives, as explained in the references below.
RELATED TASKS
“Handling errors in input and output operations” on page 203
“Coding ERROR declaratives” on page 207
“Using file status keys” on page 208
To process QSAM files in your program, use COBOL language statements that:
v Identify and describe the QSAM files in the ENVIRONMENT DIVISION and the DATA
DIVISION.
v Process the records in these files in the PROCEDURE DIVISION.
After you have created a record, you cannot change its length or its position in the
file, and you cannot delete it. You can, however, update QSAM files on
direct-access storage devices (using REWRITE), though not in the HFS.
You can also access byte-stream files in the HFS using QSAM. These files are
binary byte-oriented sequential files with no record structure. The record
definitions that you code in your COBOL program and the length of the variables
that you read into and write from determine the amount of data transferred.
RELATED CONCEPTS
“Labels for QSAM files” on page 141
Using access methods (z/OS DFSMS: Using Data Sets)
RELATED TASKS
“Defining QSAM files and records in COBOL”
“Coding input and output statements for QSAM files” on page 129
“Handling errors in QSAM files” on page 133
“Working with QSAM files” on page 133
“Processing QSAM ASCII files on tape” on page 144
“Processing ASCII file labels” on page 145
In the following example, COMMUTER-FILE-MST is your program’s name for the file;
COMMUTR is the external name.
Your ASSIGN clause name can include an S- before the external name (ddname or
environment variable name) to document that the file is a QSAM file.
RELATED TASKS
“Establishing record formats”
“Setting block sizes” on page 127
You can code a record format of F, V, S, or U in the RECORDING MODE clause. COBOL
determines the record format from the RECORD clause or from the record
descriptions associated with your FD entry for the file. If you want the records to
be blocked, code the BLOCK CONTAINS clause in your FD entry.
The following example shows how the FD entry might look for a file with
fixed-length records:
FILE SECTION.
FD COMMUTER-FILE-MST
RECORDING MODE IS F
BLOCK CONTAINS 0 RECORDS
RECORD CONTAINS 80 CHARACTERS.
01 COMMUTER-RECORD-MST.
05 COMMUTER-NUMBER PIC X(16).
05 COMMUTER-DESCRIPTION PIC X(64).
A recording mode of S is not supported for files in the HFS. The above example is
appropriate for such a file.
RELATED CONCEPTS
“Logical records”
RELATED TASKS
“Requesting fixed-length format” on page 121
“Requesting variable-length format” on page 122
“Requesting spanned format” on page 124
“Requesting undefined format” on page 126
“Defining QSAM files and records in COBOL” on page 119
Logical records
The term logical record is used in a slightly different way in the COBOL language
and in z/OS QSAM. For format-V and format-S files, the QSAM logical record
includes a 4-byte prefix in front of the user data portion of the record that is not
included in the definition of a COBOL logical record. For format-F and format-U
files, and for HFS byte-stream files, the definitions of QSAM logical record and
COBOL logical record are identical.
RELATED REFERENCES
“Layout of format-F records”
“Layout of format-V records” on page 123
“Layout of format-S records” on page 125
“Layout of format-U records” on page 126
You can omit the RECORDING MODE clause. The compiler determines the recording
mode to be F if the length of the largest level-01 record associated with the file is
not greater than the block size coded in the BLOCK CONTAINS clause, and you take
one of the following actions:
v Use the RECORD CONTAINS integer clause (RECORD clause format 1).
When you use this clause, the file is always fixed format with record length
integer, even if there are multiple level-01 record description entries with
different lengths associated with the file.
v Omit the RECORD CONTAINS integer clause, but code the same fixed size and no
OCCURS DEPENDING ON clause for all level-01 record description entries associated
with the file. This fixed size is the record length.
In an unblocked format-F file, the logical record is the same as the block.
In a blocked format-F file, the number of logical records in a block (the blocking
factor) is constant for every block in the file, except the last block, which might be
shorter. Files in the HFS are never blocked.
RELATED CONCEPTS
“Logical records” on page 120
RELATED TASKS
“Requesting variable-length format” on page 122
“Requesting spanned format” on page 124
“Requesting undefined format” on page 126
“Establishing record formats” on page 120
RELATED REFERENCES
“Layout of format-F records”
RELATED TASKS
“Requesting fixed-length format” on page 121
Fixed-length record formats (z/OS DFSMS: Using Data Sets)
RELATED REFERENCES
“Layout of format-V records” on page 123
“Layout of format-S records” on page 125
“Layout of format-U records” on page 126
You can omit the RECORDING MODE clause. The compiler determines the recording
mode to be V if the largest level-01 record associated with the file is not greater
than the block size set in the BLOCK CONTAINS clause, and you take one of the
following actions:
v Use the RECORD IS VARYING clause (RECORD clause format 3).
If you provide values for integer-1 and integer-2 (RECORD IS VARYING FROM
integer-1 TO integer-2), the maximum record length is the value coded for
integer-2, regardless of the lengths coded in the level-01 record description
entries associated with the file.
If you omit integer-1 and integer-2, the maximum record length is determined to
be the size of the largest level-01 record description entry associated with the
file.
v Use the RECORD CONTAINS integer-1 TO integer-2 clause (RECORD clause format 2).
Make integer-1 and integer-2 match the minimum length and the maximum
length of the level-01 record description entries associated with the file. The
maximum record length is the integer-2 value.
v Omit the RECORD clause, but code multiple level-01 records (associated with the
file) that are of different sizes or contain an OCCURS DEPENDING ON clause.
The maximum record length is determined to be the size of the largest level-01
record description entry associated with the file.
When you specify a READ INTO statement for a format-V file, the record size read
for that file is used in the MOVE statement generated by the compiler. Consequently,
you might not get the result you expect if the record just read does not correspond
to the level-01 record description. All other rules of the MOVE statement apply. For
example, when you specify a MOVE statement for a format-V record read in by the
READ statement, the size of the record moved corresponds to its level-01 record
description.
When you specify a READ statement for a format-V file followed by a MOVE of the
level-01 record, the actual record length is not used. The program will attempt to
move the number of bytes described by the level-01 record description. If this
number exceeds the actual record length and extends outside the area addressable
by the program, results are unpredictable. If the number of bytes described by the
level-01 record description is shorter than the physical record read, truncation of
bytes beyond the 01-level description occurs. To find the actual length of a
variable-length record, specify data-name-1 in format 3 of the RECORD clause of the
File Definition (FD).
122 Programming Guide
RELATED TASKS
“Requesting fixed-length format” on page 121
“Requesting spanned format” on page 124
“Requesting undefined format” on page 126
“Establishing record formats” on page 120
RELATED REFERENCES
“Layout of format-V records”
Moving from the VS COBOL II run time (Enterprise COBOL Compiler and Run-Time
Migration Guide)
Layout of format-V records: Format-V QSAM records have control fields (shown
below) preceding the data. The QSAM logical record length is determined by
adding 4 bytes (for the control fields) to the record length defined in your
program, but you must not include these 4 bytes in the description of the record
and record length.
The operating system provides the control bytes when the file is written; the
control byte fields do not appear in your description of the logical record in the
DATA DIVISION of your program. COBOL allocates input and output buffers large
enough to accommodate the control bytes. These control fields in the buffer are not
available for you to use in your program. When variable-length records are written
on unit record devices, control bytes are neither printed nor punched. They appear,
however, on other external storage devices, as well as in buffer areas of storage. If
you move V-mode records from an input buffer to a WORKING-STORAGE area, they’ll
be moved without the control bytes.
RELATED TASKS
“Requesting variable-length format” on page 122
RELATED REFERENCES
“Layout of format-F records” on page 121
“Layout of format-S records” on page 125
“Layout of format-U records” on page 126
You can omit the RECORDING MODE clause. The compiler determines the recording
mode to be S if the maximum record length plus 4 is greater than the block size set
in the BLOCK CONTAINS clause.
For files with format S in your program, the compiler determines the maximum
record length with the same rules used for format V. The length is based on your
usage of the RECORD clause.
When creating files containing format-S records, and a record is larger than the
remaining space in a block, COBOL writes a segment of the record to fill the block.
The rest of the record is stored in the next block or blocks, depending on its length.
COBOL supports QSAM spanned records up to 32,760 bytes long.
When retrieving files with format-S records, your program can retrieve only
complete records.
Benefits of format-S files: You can efficiently use external storage and still
organize your files with logical record lengths by defining files with format-S
records:
v You can set block lengths to efficiently use track capacities on direct access
devices.
v You are not required to adjust the logical record lengths to device-dependent
physical block lengths. One logical record can span two or more physical blocks.
v You have greater flexibility when you want to transfer logical records between
direct access storage types.
Format-S files and READ INTO: By specifying a READ INTO statement for a
format-S file, the record size just read for that file is used in the MOVE statement
generated by the compiler. Consequently, you might not get the result you expect
if the record just read does not correspond to the level-01 record description. All
other rules of the MOVE statement apply.
RELATED CONCEPTS
“Logical records” on page 120
“Spanned blocked and unblocked files” on page 125
RELATED REFERENCES
“Layout of format-S records”
Spanned blocked and unblocked files: A spanned blocked QSAM file is made
up of blocks, each containing one or more logical records or segments of logical
records. The logical records can be either fixed or variable in length and their size
can be smaller than, equal to, or larger than the physical block size. There are no
required relationships between logical records and physical block sizes.
RELATED CONCEPTS
“Logical records” on page 120
RELATED TASKS
“Requesting spanned format” on page 124
Each block is preceded by a block descriptor field. There is only one block
descriptor field at the beginning of each physical block.
Each segment of a record in a block, even if the segment is the entire record, is
preceded by a segment descriptor field. There is one segment descriptor field for
each record segment in the block. The segment descriptor field also indicates
whether the segment is the first, the last, or an intermediate segment.
You do not describe these fields in the DATA DIVISION of your COBOL program,
and the fields are not available for you to use in your program.
RELATED TASKS
“Requesting spanned format” on page 124
RELATED REFERENCES
“Layout of format-F records” on page 121
“Layout of format-V records” on page 123
“Layout of format-U records” on page 126
When you use format-U files, each block of storage is one logical record. A read of
a format-U file returns the entire block as a record, and a write to a format-U file
writes a record out as a block.
The compiler determines the recording mode to be U only if you code RECORDING
MODE U.
It is recommended that you not use format U to update or extend a file that was
written with a different record format. If you use format U to update a file that
was written with a different format, the RECFM in the data set label could be
changed or the data set could contain records written in different formats.
The record length is determined in your program based on how you use the
RECORD clause:
v If you use the RECORD CONTAINS integer clause (RECORD clause format 1), the record
length is the integer value, regardless of the lengths of the level-01 record
description entries associated with the file.
v If you use the RECORD IS VARYING clause (RECORD clause format 3), the record
length is determined based on whether you code integer-1 and integer-2.
If you code integer-1 and integer-2 (RECORD IS VARYING FROM integer-1 TO
integer-2), the maximum record length is the integer-2 value, regardless of the
lengths of the level-01 record description entries associated with the file.
If you omit integer-1 and integer-2, the maximum record length is determined to
be the size of the largest level-01 record description entry associated with the
file.
v If you use the RECORD CONTAINS integer-1 TO integer-2 clause (RECORD clause
format 2), with integer-1 and integer-2 matching the minimum length and the
maximum length of the level-01 record description entries associated with the
file, the maximum record length is the integer-2 value.
v If you omit the RECORD clause, the maximum record length is determined to be
the size of the largest level-01 record description entry associated with the file.
Format-U files and READ INTO: When you specify a READ INTO statement for a
format-U file, the size of the record just read for that file is used in the MOVE
statement generated by the compiler. Consequently, you might not get the result
you expect if the record just read does not correspond to the level-01 record
description. All other rules of the MOVE statement apply.
RELATED TASKS
“Requesting fixed-length format” on page 121
“Requesting variable-length format” on page 122
“Requesting spanned format” on page 124
“Establishing record formats” on page 120
RELATED REFERENCES
“Layout of format-U records”
RELATED TASKS
“Requesting undefined format” on page 126
RELATED REFERENCES
“Layout of format-F records” on page 121
“Layout of format-V records” on page 123
“Layout of format-S records” on page 125
If you set the block size explicitly in the BLOCK CONTAINS clause, it must not be
greater than the maximum block size for the device. The block size set for a
format-F file must be an integral multiple of the record length.
If your program uses QSAM files on tape, use a physical block size of at least 12 to
18 bytes. Otherwise, the block will be skipped over when a parity check occurs
while doing one of the following:
v Reading a block of records of fewer than 12 bytes
v Writing a block of records of fewer than 18 bytes
Generally larger blocks give you better performance. Blocks of only a few kilobytes
are particularly inefficient; you should choose a block size of at least tens of
kilobytes. If you specify record blocking and omit the block size, the system will
pick a block size that is optimal for device utilization and for data transfer speed.
If you specify a block size larger than 32760 directly on your BLOCK CONTAINS
clause or indirectly with the use of BLOCK CONTAINS n RECORDS, and you do not
meet both the following conditions, the OPEN of the data set fails with file status
code 90:
v You use OS/390 V2R10.0 DFSMS or later.
v You define the data set to be tape.
When you omit the BLKSIZE from the ddname definition, the block size is
automatically obtained by the system from the data set label.
The LBI is not used in all cases. An attempt to use a block size greater than 32760
in the following cases is diagnosed at compile time or results in a failure at OPEN:
v Spanned records
v OPEN I-O
Using a block size that exceeds 32760 might result in your not being able to read
the tape on another system. A tape that you create with a block size greater than
32760 can be read only on an MVS system that uses OS/390 V2R10.0 DFSMS or
later and has a tape device that supports block sizes greater than 32760. If you
specify a block size that is too large for the file, the device, or the operating system
level, a run-time message is issued.
BLKSZLIM is device-independent.
RELATED TASKS
“Defining QSAM files and records in COBOL” on page 119
z/OS DFSMS: Using Data Sets
RELATED REFERENCES
BLOCK CONTAINS clause (Enterprise COBOL Language Reference)
RELATED TASKS
“Opening QSAM files” on page 130
“Adding records to QSAM files” on page 131
RELATED REFERENCES
OPEN statement (Enterprise COBOL Language Reference)
READ statement (Enterprise COBOL Language Reference)
WRITE statement (Enterprise COBOL Language Reference)
REWRITE statement (Enterprise COBOL Language Reference)
CLOSE statement (Enterprise COBOL Language Reference)
Status key (Common processing facilities) (Enterprise COBOL Language Reference)
Code CLOSE WITH LOCK so that the file cannot be opened again while the program
is running.
Use the REVERSED option of the OPEN statement to process tape files in reverse order.
Execution of the OPEN statement will then position the file at its end. Subsequent
READ statements read the data records in reverse order, starting with the last record.
The REVERSED option is supported only for files with fixed-length records.
RELATED TASKS
“Dynamically creating QSAM files with CBLQDA”
RELATED REFERENCES
OPEN statement (Enterprise COBOL Language Reference)
Sometimes a QSAM file is unavailable on the operating system, but the COBOL
language defines that the file be created. The file is implicitly created for you if
you use the run-time option CBLQDA and one of the following circumstances exists:
v The file is being opened for OUTPUT, regardless of the OPTIONAL phrase.
The file is allocated with the system default attributes established at your
installation and the attributes coded in the SELECT and FD statements in your
program.
Do not confuse this implicit allocation mechanism with the dynamic allocation of
files through the use of environment variables. That explicit dynamic allocation
requires a valid environment variable to be set. This CBLQDA support is used only
when the QSAM file is unavailable as defined above, which includes no valid
environment variable being set.
Under z/OS, files created using the CBLQDA option are temporary data sets and do
not exist after the program has run.
RELATED TASKS
“Opening QSAM files” on page 130
To add records to a file opened as I-O, you must first close the file and open it as
EXTEND.
RELATED REFERENCES
READ statement (Enterprise COBOL Language Reference)
WRITE statement (Enterprise COBOL Language Reference)
Replace an existing record with another record of the same length by doing these
steps:
1. Open the file as I-O.
2. Use REWRITE to update an existing record in the file. (The last file processing
statement before REWRITE must have been a successful READ statement.)
You cannot open as I-O an extended format data set that you allocate in the
compressed format.
RELATED REFERENCES
REWRITE statement (Enterprise COBOL Language Reference)
If you use the LINAGE clause in combination with WRITE BEFORE/AFTER ADVANCING
nn LINES, be careful about the values you set. With the ADVANCING nn LINES clause,
COBOL first calculates the sum of LINAGE-COUNTER plus nn. Subsequent actions
depend on the size of nn. The END-OF-PAGE imperative statement is performed after
the LINAGE-COUNTER is increased. Consequently, the LINAGE-COUNTER could be
pointing to the next logical page instead of to the current footing area when the
END-OF-PAGE statement is performed.
Specify the number of lines the page is advanced with an integer (or an identifier
with a mnemonic-name) following ADVANCING. If you omit the ADVANCING option from
your WRITE statement, you get the equivalent of:
AFTER ADVANCING 1 LINE
RELATED REFERENCES
WRITE statement (Enterprise COBOL Language Reference)
If you do not close a QSAM file, the file is automatically closed for you under the
following conditions, except for files defined in any OS/VS COBOL programs in
the run unit:
v When the run unit ends normally, the run time closes all open files that are
defined in any COBOL programs in the run unit.
v If the run unit ends abnormally and you have set the TRAP(ON) run-time option,
the run time closes all open files that are defined in any COBOL programs in the
run unit.
v When Language Environment condition handling is completed and the
application resumes in a routine other than where the condition occurred, the
run time closes all open files that are defined in any COBOL programs in the
run unit that might be called again and reentered.
You can change the location where the program resumes running (after a
condition is handled) by moving the resume cursor with the Language
Environment CEEMRCR callable service or by using HLL language constructs
such as a C longjmp.
File status key data items that you define in the WORKING-STORAGE SECTION are set
when these implicit CLOSE operations are performed, but your EXCEPTION/ERROR
and LABEL declaratives are not invoked.
If you open a QSAM file in a multithreaded application, you must close it from the
same thread of execution from which the file was opened. Attempting to close the
file from a different thread results in a close failure with file-status condition 90.
RELATED REFERENCES
CLOSE statement (Enterprise COBOL Language Reference)
COBOL provides these ways for you to intercept and handle certain QSAM input
and output errors:
v End of file phrase (AT END)
v EXCEPTION/ERROR declarative
v FILE STATUS clause
v INVALID KEY phrase
If you do not code a FILE STATUS key or a declarative, serious QSAM processing
errors will cause a message to be issued and a Language Environment condition to
be signaled, which will cause an abend if you specify the run-time option
ABTERMENC(ABEND).
If you use the FILE STATUS clause or the EXCEPTION/ERROR declarative, code
EROPT=ACC in the DCB of the DD statement for that file. Otherwise, your COBOL
program will not be able to continue processing after some error conditions.
If you use the FILE STATUS clause, be sure to check the key and take appropriate
action based on its value. If you do not check the key, your program might
continue, but the results will probably not be what you expected.
RELATED TASKS
“Handling errors in input and output operations” on page 203
RELATED REFERENCES
“Allocation of buffers for QSAM files” on page 140
You can optionally specify the following attributes in any order following the DSN:
v A disposition value, one of: NEW, OLD, SHR, or MOD
v TRACKS or CYL
v SPACE(nnn,mmm)
v VOL(volume-serial)
v UNIT(type)
v KEEP, DELETE, CATALOG, or UNCATALOG
v STORCLAS(storage-class)
v MGMTCLAS(management-class)
v DATACLAS(data-class)
You can use either an environment variable or a DD definition to define a file in the
HFS. To do this, define one of the following with a name that matches the external
name on your ASSIGN clause:
v A DD allocation that uses PATH=’absolute-path-name’ and FILEDATA=BINARY
v An environment variable with a value PATH(pathname), where pathname is an
absolute path name (starting with /).
For compatibility with releases of COBOL before COBOL for OS/390 & VM
Version 2 Release 2, you can also specify FILEDATA=TEXT when using a DD allocation
for HFS files, but this use is not recommended. To process text files in the HFS, use
LINE SEQUENTIAL organization. If you do use QSAM to process text files in the HFS,
you cannot use environment variables to define the files.
When you define a QSAM file, use the specified parameters to do the following:
Table 19. QSAM file allocation
What you want to do DD parameter to use EV keyword to use
Name the file DSNAME (data set name) DSN
Select the type and quantity of UNIT UNIT for type only
input-output devices to be
allocated for the file.
Give instructions for the volume in VOLUME, or let the system VOL
which the file will reside and for choose an output volume.
volume mounting.
Some of the information about the QSAM file must always be coded in the
FILE-CONTROL entry, the FD entry, and other COBOL clauses. Other information
must be coded in the DD statement or environment variable for output files. For
input files, the system can obtain information from the file label (for standard label
files). If DCB information is provided in the DD statement for input files, it overrides
information on the data set label. For example, the amount of space allocated for a
new direct-access device file can be set in the DD statement by the SPACE parameter.
You cannot express certain characteristics of QSAM files in the COBOL language,
but you can code them in the DD statement for the file using the DCB parameter. Use
the subparameters of the DCB parameter to provide information that the system
needs for completing the data set definition, including the following:
v Block size (BLKSIZE=), if BLOCK CONTAINS 0 RECORDS was coded at compile time
(which is recommended)
v Options to be executed if an error occurs in reading or writing a record
v TRACK OVERFLOW or standard blocks
v Mode of operation for a card reader or punch
DCB attributes coded for a DD DUMMY do not override those coded in the FD entry of
your COBOL program.
RELATED TASKS
“Setting block sizes” on page 127
“Defining QSAM files and records in COBOL” on page 119
“Allocating files” on page 117
RELATED REFERENCES
“Parameters for creating QSAM files”
MVS JCL Reference
UNIT= ( name[,unitcount] )
VOLUME= ( [PRIVATE] [,RETAIN] [,vol-sequence-num] [,volume-count] ...
VOL=
... ,SER=(volume-serial[,volume-serial]...)
(
,REF= dsname
*.ddname
*.stepname.ddname
*.stepname.procstep.ddname
DCB= ( subparameter-list )
RELATED TASKS
“Defining and allocating QSAM files” on page 134
If you are using JCL, and you created the file in the current job step or in a
previous job step in the current job, you can refer to the previous DD statement for
most of the data set information. You do, however, need to code DSNAME and DISP.
RELATED REFERENCES
“Parameters for retrieving QSAM files”
To prevent common file status 39 problems, follow the guidelines listed below for
processing files that are existing, new, or dynamically created by COBOL.
If the existing file is an ASCII data set (DCB=(OPTCD=Q)), you must use the CODE-SET
clause in the program’s FD entry for the file.
When you do need to explicitly set a length attribute for the data set (for example,
you are using an ISPF allocation panel or if your DD statement is for a batch job in
which the program uses RECORD CONTAINS 0):
v For format-V and format-S files, set a length attribute that is 4 bytes larger than
that defined in the program.
v For format-F and format-U files, set a length attribute that is the same as that
defined in the program.
v If you open your file as OUTPUT and write it to a printer, the compiler might add
1 byte to the record length to account for the carriage control character,
depending on the ADV compiler option and the COBOL language used in your
program. In such a case, take the added byte into account when coding the
LRECL.
RELATED TASKS
“Requesting fixed-length format” on page 121
“Requesting variable-length format” on page 122
“Requesting undefined format” on page 126
“Dynamically creating QSAM files with CBLQDA” on page 130
Striped extended-format QSAM data sets can benefit an application with these
characteristics:
v The application processes files that contain large volumes of data.
v The time for the input and output operations to the files significantly affects
overall performance.
For you to gain the maximum benefit from using QSAM striped data sets, DFSMS
needs to be able to allocate the required number of buffers above the 16-MB line.
When you develop applications that contain files allocated to QSAM striped data
sets, follow these guidelines:
v Avoid using a QSAM striped data set for a file that cannot have buffers
allocated above the 16-MB line.
v Omit the RESERVE clause in the FILE-CONTROL paragraph entry for the file.
Omitting the RESERVE clause allows DFSMS to determine the optimum number
of buffers for the data set.
v Compile your program with the DATA(31) and RENT compiler options, and make
the load module AMODE 31.
v Specify the ALL31(ON) run-time option if the file is an EXTERNAL file with
format-F, format-V, or format-U records.
Notice that all striped data sets are extended format data sets, but not all extended
format data sets are striped.
RELATED TASKS
z/OS DFSMS: Using Data Sets (performance considerations)
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
“Using striped extended-format QSAM data sets” on page 139
Usage notes
v File status 39 (fixed file attribute conflict) is not enforced for either of the
following:
– Record-length conflict
– Record-type conflict (fixed versus variable)
For compatibility with releases of IBM COBOL before COBOL for OS/390 & VM
Version 2 Release 2, you can also specify FILEDATA=TEXT when using a DD allocation
for HFS files, but this use is not recommended. To process text files in the HFS, use
the LINE SEQUENTIAL organization. If you use QSAM to process text files in the
HFS, you cannot use environment variables to define the files.
RELATED TASKS
“Allocating files” on page 117
“Defining and allocating QSAM files” on page 134
Accessing HFS files via BSAM and QSAM (z/OS DFSMS: Using Data Sets)
There are two kinds of labels: standard and nonstandard. IBM Enterprise COBOL
for z/OS does not support nonstandard user labels. In addition, standard user
labels contain user-specified information about the associated data set.
Standard labels consist of volume labels and groups of data set labels. Volume
labels precede or follow data on the volume, and identify and describe the volume.
The data set labels precede or follow each data set on the volume, and identify and
describe the data set.
v The data set labels that precede the data set are called header labels.
v The data set labels that follow the data set are called trailer labels.
They are similar to the header labels, except that they also contain a count of
blocks in the data set.
v The data set label groups can optionally include standard user labels.
v The volume label groups can optionally include standard user labels.
RELATED TASKS
“Using trailer and header labels”
RELATED REFERENCES
“Format of standard labels” on page 143
You can create, examine, or update up to eight header labels and eight trailer
labels on each volume of the data set. (QSAM EXTEND works in a manner identical
to OUTPUT except that the beginning-of-file label is not processed.) Labels reside on
If you code a header or trailer with the wrong position number, the result is
unpredictable. (Data management might force the label to the correct relative
position.)
When you use standard label processing, code the label type of the standard and
user labels (SUL) on the DD statement that describes the data set.
List the labels as data-names in the LABEL RECORDS clause in the FD entry for the file.
Table 21. Handling of QSAM user labels
When the file is
opened as: And: Result:
INPUT USE . . . LABEL declarative is The label is read and control is
coded for the OPEN option or for passed to the LABEL declarative.
the file.
OUTPUT USE . . . LABEL declarative is A buffer area for the label is
coded for the OPEN option or for provided and control is passed to
the file. the LABEL declarative.
INPUT or I-O CLOSE statement is performed Control is passed to the LABEL
for the file that has reached the declarative for processing trailer
AT END condition. labels.
You can specify a special exit by using the statement GO TO MORE-LABELS. When
this statement results in an exit from a label DECLARATIVE SECTION, the system does
one of the following:
v Writes the current beginning or ending label and then reenters the USE section at
its beginning to create more labels. After creating the last label, the system exits
by performing the last statement of the section.
v Reads an additional beginning or ending label, and then reenters the USE section
at its beginning to check more labels. When processing user labels, the system
reenters the section only if there is another user label to check. Hence, a program
path that flows through the last statement in the section is not needed.
The format of the label for a direct-access volume is the almost the same as the
format of the label group for a tape volume label group. The difference is that a
data set label of the initial DASTO volume label consists of the data set control
block (DSCB). The DSCB appears in the volume table of contents (VTOC) and
contains the equivalent of the tape data set header and trailer, in addition to
control information such as space allocation.
The format used for user header labels (UHL1-8) and user trailer labels (UTL1-8)
consists of a label 80 characters in length recorded in either:
v EBCDIC on DASD or on IBM standard labeled tapes
v ASCII or ISO/ANSI labeled tapes
The first 3 bytes consist of the characters that identify the label as either:
v UHL for a user header label (at the beginning of a data set)
v UTL for a user trailer label (at the end-of-volume or end-of-data set)
The next byte contains the relative position of this label within a set of labels of the
same type. One through eight labels are permitted.
Standard user labels are not supported for QSAM striped data sets.
RELATED CONCEPTS
“Labels for QSAM files” on page 141
In addition, if your program processes numeric data items from ASCII files, use the
separately signed numeric data type (SIGN IS LEADING SEPARATE).
The CODEPAGE compiler option has no effect on the code page used for conversions
between ASCII and EBCDIC for ASCII tape support. See the z/OS DFSMS
documentation for information about how CCSIDs used for the ASCII tape support
are selected and what the default CCSIDs are.
If you are using variable-length records, you cannot explicitly code format D;
instead, code RECORDING MODE V. The format information is internally converted to
D mode. D-mode records have a 4-byte record descriptor for each record.
BLKSIZE=n
n The size of the block, including the length of the block prefix.
LABEL=[AL|AUL|NL]
OPTCD=Q
Q This value is required for ASCII files and is the default if the file is
created using Enterprise COBOL.
RELATED TASKS
“Processing ASCII file labels”
Converting Character Data (z/OS DFSMS: Using Data Sets)
All ANS user labels are optional. ASCII files can have user header labels (UHLn)
and user trailer labels (UTLn). There is no limit to the number of user labels at the
beginning and the end of a file; you can write as many labels as you need. All user
labels must be 80 bytes in length.
To create or verify user labels (user label exit), code a USE AFTER STANDARD LABEL
procedure. You cannot use USE BEFORE STANDARD LABEL procedures.
Any labels on an ASCII tape must be in ASCII code only. Tapes containing a
combination of ASCII and EBCDIC cannot be read.
RELATED TASKS
“Processing QSAM ASCII files on tape” on page 144
The lists below show how VSAM terms differ from COBOL terms and other terms
that you might be familiar with.
The term file in this VSAM information refers to either a COBOL file or a VSAM
data set.
If you have complex requirements or frequently use VSAM, review the VSAM
publications for your operating system.
RELATED CONCEPTS
“VSAM files” on page 148
RELATED TASKS
“Defining VSAM file organization and records” on page 149
“Coding input and output statements for VSAM files” on page 155
“Protecting VSAM files with a password” on page 164
“Handling errors in VSAM files” on page 164
RELATED REFERENCES
z/OS DFSMS: Using Data Sets
z/OS DFSMS Macro Instructions for Data Sets
z/OS DFSMS: Access Method Services for Catalogs
VSAM files
The physical organization of VSAM data sets differs considerably from those used
by other access methods. VSAM data sets are held in control intervals (CI) and
control areas (CA). The size of these is normally determined by the access method,
and the way in which they are used is not visible to you.
The following table compares the different types of VSAM data sets in terms of
several characteristics.
RELATED TASKS
“Specifying sequential organization for VSAM files” on page 150
“Specifying indexed organization for VSAM files” on page 150
“Specifying relative organization for VSAM files” on page 151
“Defining VSAM files” on page 166
In the FILE SECTION of the DATA DIVISION, code a file description (FD) entry for the
file. In the associated record description entry or entries, define the record-name and
record length. Code the logical size of the records with the RECORD clause.
Important: You can process VSAM data sets in Enterprise COBOL programs only
after you define them with access method services.
The following table summarizes VSAM file organization, access modes, and record
formats (fixed or variable length).
RELATED TASKS
“Specifying sequential organization for VSAM files”
“Specifying indexed organization for VSAM files”
“Specifying relative organization for VSAM files” on page 151
“Using file status keys” on page 208
“Using VSAM return codes (VSAM files only)” on page 209
“Defining VSAM files” on page 166
“Specifying access modes for VSAM files” on page 153
You can access (read or write) records in sequential files only sequentially.
After you place a record in the file, you cannot shorten, lengthen, or delete it.
However, you can update (REWRITE) a record if the length does not change. New
records are added at the end of the file.
The following example shows typical FILE-CONTROL entries for a VSAM sequential
file (ESDS):
SELECT S-FILE
ASSIGN TO SEQUENTIAL-AS-FILE
ORGANIZATION IS SEQUENTIAL
ACCESS IS SEQUENTIAL
FILE STATUS IS FSTAT-CODE VSAM-CODE.
RELATED CONCEPTS
“VSAM files” on page 148
Here data-name is the name of the key field as you defined it in the record
description entry in the DATA DIVISION. The collation of index record keys is based
on the binary value of the key, regardless of the class or the category of the key.
Alternate keys
In addition to the primary key, you can also code one or more alternate keys to use
for retrieving records. Using alternate keys, you can access the indexed file to read
records in some sequence other than the prime key sequence. For example, you
could access the file through employee department rather than through employee
number. Alternate keys need not be unique. More than one record will be accessed,
given a department number as a key. This is permitted if alternate keys are coded
to allow duplicates.
You define the alternate key in your COBOL program with the ALTERNATE RECORD
KEY clause:
ALTERNATE RECORD KEY IS data-name
Here data-name is the name of the key field as you defined it in the record
description entry in the DATA DIVISION. The collation of alternate keys is based on
the binary value of the key, regardless of the class or the category of the key.
Alternate index
To use an alternate index, you need to define a data set (using access method
services) called the alternate index (AIX). The AIX contains one record for each
value of a given alternate key; the records are in sequential order by alternate key
value. Each record contains the corresponding primary keys of all records in the
associated indexed files that contain the alternate key value.
RELATED CONCEPTS
“VSAM files” on page 148
RELATED TASKS
“Creating alternate indexes” on page 167
Use the RELATIVE KEY IS clause to associate each logical record with its relative
record number.
The following example shows a relative-record data set (RRDS) that is accessed
randomly by the value in the relative key ITEM-NO:
SELECT R-FILE
ASSIGN TO RELATIVE-FILE
ORGANIZATION IS RELATIVE
ACCESS IS RANDOM
RELATIVE KEY IS RFILE-RELATIVE-KEY
FILE STATUS IS FSTAT-CODE VSAM-CODE.
When you load an RRDS with variable-length records, you can skip over relative
record numbers. Unlike fixed-length RRDS, a variable-length RRDS does not have
slots. Instead, the free space that you define allows for more efficient record
insertions.
The coding that you use in your COBOL program to identify and describe VSAM
variable-length RRDS and COBOL simulated variable-length RRDS is similar. How
you use the SIMVRD run-time option and whether you define the VSAM file as a
RRDS or KSDS differs, however.
In step 2 for simulated variable-length RRDS, coding other language elements that
imply a variable-length record format does not give you COBOL simulated
variable-length RRDS. For example, these clauses alone do not give you correct file
access:
v Multiple FD records of different lengths
v OCCURS . . . DEPENDING ON in the record definitions
v RECORD CONTAINS integer-1 TO integer-2 CHARACTERS
When you define the cluster in step 4 for simulated variable-length RRDS, observe
these restrictions:
v Do not define an alternate index.
v Do not specify a KEYRANGE.
v Do not specify SPANNED.
Also, use the REUSE parameter when you open for output a file that contains
records.
Errors: When you work with simulated variable-length relative data sets and true
VSAM RRDS data sets, you get an OPEN file status 39 if your COBOL file definition
and the VSAM data set attributes do not match.
RELATED CONCEPTS
“VSAM files” on page 148
RELATED TASKS
“Defining VSAM files” on page 166
For dynamic access, code ACCESS IS DYNAMIC in the FILE-CONTROL entry. Dynamic
access is a mixed sequential-random access in the same program. Using dynamic
access, you can write one program to perform both sequential and random
processing, accessing some records in sequential order and others by their keys.
RELATED TASKS
“Reading records from a VSAM file” on page 160
RELATED TASKS
“Reading records from a VSAM file” on page 160
Because the concept of blocking has no meaning for VSAM files, you can omit the
BLOCK CONTAINS clause. The clause is syntax-checked, but it has no effect on how
the program runs.
When you specify a READ INTO statement for a format-V file, the record size read
for that file is used in the MOVE statement generated by the compiler. Consequently,
you might not get the result you expect if the record read in does not correspond
to the level-01 record description. All other rules of the MOVE statement apply. For
example, when you specify a MOVE statement for a format-V record read in by the
READ statement, the size of the record corresponds to its level-01 record description.
RELATED TASKS
Enterprise COBOL Compiler and Run-Time Migration Guide
All of the following factors determine which input and output statements you can
use for a given VSAM data set:
v Access mode (sequential, random, or dynamic)
v File organization (ESDS, KSDS, or RRDS)
v Mode of OPEN statement (INPUT, OUTPUT, I-O, or EXTEND)
The following table shows the possible combinations with sequential files (ESDS).
The X indicates that you can use the statement with the open mode at the top of
the column.
Table 28. I/O statements for VSAM sequential files
COBOL OPEN OPEN OPEN OPEN
Access mode statement INPUT OUTPUT I-O EXTEND
Sequential OPEN X X X X
WRITE X X
START
READ X X
REWRITE X
DELETE
CLOSE X X X X
The following table shows the possible combinations you can use with indexed
(KSDS) files and relative (RRDS) files. The X indicates that you can use the
statement with the open mode at the top of the column.
Table 29. I/O statements for VSAM relative and indexed files
COBOL OPEN OPEN OPEN OPEN
Access mode statement INPUT OUTPUT I-O EXTEND
Sequential OPEN X X X X
WRITE X X
START X X
READ X X
REWRITE X
DELETE X
CLOSE X X X X
The fields you code in the FILE STATUS clause are updated by VSAM after each
input-output statement to indicate the success or failure of the operation.
RELATED CONCEPTS
“File position indicator”
RELATED TASKS
“Opening a file (ESDS, KSDS, or RRDS)” on page 158
“Reading records from a VSAM file” on page 160
“Updating records in a VSAM file” on page 161
“Adding records to a VSAM file” on page 162
“Replacing records in a VSAM file” on page 162
“Deleting records from a VSAM file” on page 163
“Closing VSAM files” on page 163
RELATED REFERENCES
Status key (Common processing facilities) (Enterprise COBOL Language Reference)
The file position indicator is not used or affected by the output statements WRITE,
REWRITE, or DELETE. The file position indicator has no meaning for random
processing.
RELATED TASKS
“Reading records from a VSAM file” on page 160
For example, if you OPEN EXTEND, OPEN I-O, or OPEN INPUT a file that is neither
optional nor available, you get file status 35 and the OPEN statement fails. If the file
is OPTIONAL, the OPEN EXTEND, OPEN I-O, or OPEN INPUT creates the file and returns
file status 05.
An OPEN operation works successfully only when you set fixed file attributes in the
DD statement or data set label for a file and specify consistent attributes for that file
in the SELECT and FD statements of your COBOL program. Mismatches in the
following items result in a file status code 39, and the OPEN statement fails:
v Attributes for file organization (sequential, relative, or indexed)
v Prime record key
v Alternate record keys
v Maximum record size
v Record type (fixed or variable)
How you code the OPEN statement in your COBOL program for a VSAM file
depends on whether the file is empty (a file that has never contained records) or
loaded. For either type of file, your program should check the file status key after
each OPEN statement.
RELATED TASKS
“Opening an empty file”
“Opening a loaded file (a file with records)” on page 160
RELATED REFERENCES
“Statements to load records into a VSAM file” on page 159
Optional files are files that are not necessarily present each time the program is
run. You can define files opened in INPUT, I-O, or OUTPUT mode as optional by
defining them with the SELECT OPTIONAL phrase in the FILE-CONTROL section of
your program.
Initially loading records sequentially into a file: Initially loading a file means
writing records into the file for the first time. This is not the same as writing
records into a file from which all previous records have been deleted.
Using OPEN OUTPUT to load a VSAM file significantly improves the performance of
your program. Using OPEN I-O or OPEN EXTEND has a negative impact on the
performance of your program.
When you load VSAM indexed files sequentially, you optimize both loading
performance and subsequent processing performance, because sequential
processing maintains user-defined free space. Future insertions will be more
efficient.
With ACCESS IS SEQUENTIAL, you must write the records in ascending RECORD KEY
order.
When you load VSAM relative files sequentially, the records are placed in the file
in the ascending order of relative record numbers.
In addition to extra overhead for preparing files for use, random processing does
not consider any user-defined free space. As a result, any future insertions might
be inefficient. Sequential processing maintains user-defined free space.
Loading a VSAM data set with access method services: You can load or update
a VSAM data set with the access method services REPRO command. Use REPRO
whenever possible.
RELATED TASKS
“Opening a loaded file (a file with records)” on page 160
RELATED REFERENCES
“Statements to load records into a VSAM file”
REPRO (z/OS DFSMS: Access Method Services for Catalogs)
RELATED TASKS
“Opening an empty file” on page 158
“Updating records in a VSAM file” on page 161
If you open a VSAM key-sequenced file as EXTEND, each record you add must have
a record key higher than the highest record in the file.
RELATED TASKS
“Opening an empty file” on page 158
“Working with VSAM data sets under z/OS and UNIX” on page 165
RELATED REFERENCES
“Statements to load records into a VSAM file” on page 159
z/OS DFSMS: Access Method Services for Catalogs
You can retrieve records in VSAM sequential files only in the sequence in which
they were written.
You can retrieve records in VSAM indexed and relative record files in any of the
following ways:
Sequentially
According to the ascending order of the key you are using, the RECORD KEY
or the ALTERNATE RECORD KEY, beginning at the current position of the file
position indicator for indexed files, or according to ascending relative
record locations for relative files
Randomly
In any order, depending on how you set the RECORD KEY or ALTERNATE
RECORD KEY or the RELATIVE KEY before your READ request
Dynamically
Mixed sequential and random
With dynamic access, you can switch between reading a specific record directly
and reading records sequentially, by using READ NEXT for sequential retrieval and
READ for random retrieval (by key).
When a direct READ is performed for a VSAM indexed file, based on an alternate
index for which duplicates exist, only the first record in the data set (base cluster)
with that alternate key value is retrieved. You need a series of READ NEXT
statements to retrieve each of the data set records with the same alternate key. A
file status code of 02 is returned if there are more records with the same alternate
key value to be read; a code of 00 is returned when the last record with that key
value has been read.
RELATED CONCEPTS
“File position indicator” on page 157
RELATED TASKS
“Specifying access modes for VSAM files” on page 153
RELATED REFERENCES
“Statements to load records into a VSAM file” on page 159
For indexed files, you must write new records in ascending key sequence. If you
open the file EXTEND, the record keys of the records to be added must be higher
than the highest primary record key on the file when you opened the file.
For relative files, the records must be in sequence. If you include a RELATIVE KEY
data item in the SELECT clause, the relative record number of the record to be
written is placed in that data item.
To replace records randomly or dynamically, your program need not read the
record to be rewritten. Instead, to position the record that you want to update, do
as follows:
When you use ACCESS IS SEQUENTIAL or the file contains spanned records, your
program must first read the record to be deleted. The DELETE then removes the
record that was read. If the DELETE is not preceded by a successful READ, the
deletion is not done and the status key value is set to 92.
When you use ACCESS IS RANDOM or ACCESS IS DYNAMIC, your program need not
first read the record to be deleted. To delete a record, move the key of the record to
be deleted to the RECORD KEY data item and then issue the DELETE. Your program
should check the file status key after each DELETE statement.
If you do not close a VSAM file, the file is automatically closed for you under the
following conditions, except for files defined in any OS/VS COBOL programs in
the run unit:
v When the run unit ends normally, all open files defined in any COBOL
programs in the run unit are closed.
v When the run unit ends abnormally, if the TRAP(ON) run-time option has been
set, all open files defined in any COBOL programs in the run unit are closed.
v When Language Environment condition handling is completed and the
application resumes in a routine other than where the condition occurred, open
files defined in any COBOL programs in the run unit that might be called again
and reentered are closed.
You can change the location where a program resumes after a condition is
handled. To make this change, you can, for example, move the resume cursor
with the CEEMRCR callable service or use HLL language constructs such as a C
longjmp statement.
v When you issue CANCEL for a COBOL subprogram, any open nonexternal files
defined in that program are closed.
v When a COBOL subprogram with the INITIAL attribute returns control, any
open nonexternal files defined in that program are closed.
v When a thread of a multithreaded application ends, both external and
nonexternal files that were opened from within that same thread are closed.
File status key data items that you define in the WORKING-STORAGE SECTION are set
when these implicit CLOSE operations are performed, but your EXCEPTION/ERROR
and LABEL declaratives are not invoked.
If you open a VSAM file in a multithreaded application, you must close it from the
same thread of execution. Attempting to close the file from a different thread
results in a close failure with file-status condition 90.
All OPEN and CLOSE errors with a VSAM file, whether logical errors in your
program or input/output errors on the external storage media, return control to
your COBOL program, even when you have coded no DECLARATIVE and no FILE
STATUS clause.
If any other input or output statement operation fails, you choose whether your
program will continue running after a less-than-severe input/output error occurs.
COBOL provides these ways for you to intercept and handle certain VSAM input
and output errors:
v End-of-file phrase (AT END)
v EXCEPTION/ERROR declarative
v FILE STATUS clause (file status key and VSAM return code)
v INVALID KEY phrase
You should define a status key for each VSAM file that you define in your
program. Check the status key value after every input or output request, especially
OPEN and CLOSE.
If you do not code a FILE STATUS key or a declarative, serious VSAM processing
errors will cause a message to be issued and a Language Environment condition to
be signaled, which will cause an abend if you specify the run-time option
ABTERMENC(ABEND).
RELATED TASKS
“Handling errors in input and output operations” on page 203
“Using VSAM return codes (VSAM files only)” on page 209
RELATED REFERENCES
VSAM macro return and reason codes (z/OS DFSMS Macro Instructions for Data
Sets)
To use explicit passwords, code the PASSWORD clause in the SELECT statement of
your program. Use this clause only if the catalog entry for the files includes a read
or an update password.
v If the catalog entry includes a read password, you cannot open and access the
file in a COBOL program unless you use the password clause in the
FILE-CONTROL paragraph and describe it in the DATA DIVISION. The data-name
referred to must contain a valid password when the file is opened.
v If the catalog entry includes an update password, you can open and access it,
but not update it, unless you code the password clause in the FILE-CONTROL
paragraph and describe it in the DATA DIVISION.
If your program only retrieves records and does not update them, you need only
the read password. If your program loads files or updates them, you need to
specify the update password that was cataloged.
For indexed files, the PASSWORD data item for the RECORD KEY must contain the valid
password before the file can be successfully opened.
A VSAM file is unavailable if it has never contained a record, even if you have
defined it.
You always get a return code of zero on completion of the OPEN statement for a
VSAM sequential file.
Use the access method services REPRO command to empty a file. Deleting records in
this manner resets the high-use relative byte address (RBA) of the file to zero. The
file is effectively empty and appears to COBOL as if it never contained a record.
A VSAM cluster is a logical definition for a VSAM data set and has one or two
components:
v The data component of a VSAM cluster contains the data records.
v The index component of a VSAM key-sequenced cluster consists of the index
records.
Use the access method services DEFINE CLUSTER command to define your VSAM
data sets (clusters). This process includes creating an entry in an integrated catalog
without any data transfer.
Depending on what kind of data set is in the cluster, also define the following
information for each cluster:
v For VSAM indexed data sets (KSDS), specify length and position of the prime
key in the records.
v For VSAM fixed-length relative-record data sets (RRDS), specify the record size
as greater than or equal to the maximum size COBOL record:
DEFINE CLUSTER NUMBERED
RECORDSIZE(n,n)
When you define a data set in this way, all records will be padded to the fixed
slot size n. If you use the RECORD IS VARYING ON data-name form of the RECORD
clause, a WRITE or REWRITE will use the length specified in the DEPENDING ON
data-name as the length of the record to be transferred by VSAM. This data is
then padded to the fixed slot size. READ statements always return the fixed slot
size in the DEPENDING ON data-name.
v For VSAM variable-length relative-record data sets (RRDS), specify the average
size COBOL record expected and the maximum size COBOL record expected:
DEFINE CLUSTER NUMBERED
RECORDSIZE(avg,m)
The average size COBOL record expected must be less than the maximum size
COBOL record expected.
RELATED TASKS
“Creating alternate indexes”
“Allocating VSAM files” on page 169
“Specifying relative organization for VSAM files” on page 151
RELATED REFERENCES
z/OS DFSMS: Access Method Services for Catalogs
Because an alternate index is, in practice, a VSAM data set that contains pointers to
the keys of a VSAM data set, you must define the alternate index and the alternate
index path (the entity that establishes the relationship between the alternate index
and the prime index). After you define an alternate index, make a catalog entry to
establish the relationship (or path) between the alternate index and its base cluster.
This path allows you to access the records of the base cluster through the alternate
keys.
RELATED REFERENCES
AIXBLD (COBOL only) (Language Environment Programming Reference)
Using JCL:
//MASTERA DD DSNAME=clustername,DISP=OLD (1)
//MASTERA1 DD DSNAME=path1,DISP=OLD (2)
//MASTERA2 DD DSNAME=path2,DISP=OLD (3)
RELATED TASKS
“Creating alternate indexes” on page 167
Allocation of VSAM files (indexed, relative, and sequential) follows the general
rules for the allocation of COBOL files. If you use an environment variable to
allocate a VSAM file, you must specify these options in the order shown, but no
others:
v DSN(dsname), where dsname is the name of the base cluster
v OLD or SHR
The basic DD statement that you need for your VSAM files is:
//ddname DD DSN=dsname,DISP=SHR,AMP=AMORG
In either case, dsname must be the same as the name used in the access method
services DEFINE CLUSTER or DEFINE PATH command. DISP must be OLD or SHR
because the data set is already cataloged. If you specify MOD when using JCL, the
data set is treated as OLD.
AMP is a VSAM JCL parameter used to supplement the information that the
program supplies about the data set. AMP takes effect when your program opens
the VSAM file. Any information that you set through the AMP parameter takes
precedence over the information that is in the catalog or that the program supplies.
The AMP parameter is not required except under the following circumstances:
v You use a dummy VSAM data set. For example,
//ddname DD DUMMY,AMP=AMORG
v You request additional index or data buffers. For example,
//ddname DD DSN=VSAM.dsname,DISP=SHR,
// AMP=(’BUFNI=4,BUFND=8’)
You cannot specify AMP if you allocate your VSAM data set with an environment
variable.
For a VSAM base cluster, specify the same system-name (ddname or environment
variable name) that you specify in the ASSIGN clause of the SELECT statement in
your COBOL program.
When you use alternate indexes in your COBOL program, you must specify not
only a system-name (using a DD statement or environment variable) for the base
cluster, but also one for each alternate index path. No language mechanism exists
to explicitly declare system-names for alternate index paths within the program.
For example, if the system-name of a base cluster is ABCD, the system name for the
first alternate index path defined for the file in your program is ABCD1, the
system-name for the second alternate index path is ABCD2, and so on.
If the length of the base cluster system-name and sequence number exceeds eight
characters, the base cluster portion of the system-name is truncated on the right to
reduce the concatenated result to eight characters. For example, if the system-name
of a base cluster is ABCDEFGH, the system name of the first alternate index path is
ABCDEFG1, the tenth is ABCDEF10, and so on.
RELATED TASKS
“Allocating files” on page 117
RELATED REFERENCES
MVS JCL Reference
You cannot specify RLS if you allocate your VSAM data set with an environment
variable.
| However, if the COBOL file is defined as ACCESS DYNAMIC, VSAM does not release
| the exclusive lock on the record after a WRITE or REWRITE statement nor after a READ
| statement unless the I-O statement causes VSAM to move to another control
| interval (CI). As a result, if a WRITE or REWRITE was done, VSAM does not write the
| record until processing is moved to another CI and the lock is released. When
| using ACCESS DYNAMIC, one way to cause the record to be written immediately, to
| release the exclusive lock immediately, or both, is to define the VSAM data set to
| allow only one record per CI.
Specifying RLS=CR locks a record and prevents an update to it until another READ is
requested for another record. While a lock on the record being read is in effect,
other users can request a READ for the same record, but they cannot update the
The locking rules for RLS=CR can cause the application to wait for availability of a
record lock, and this wait might slow down the READ for input.
You might need to modify your application logic to use the RLS=CR capability. Do
not use the RLS JCL parameter for batch jobs that update nonrecoverable spheres
until you are sure that the application functions correctly in a multiple updater
environment.
When you open a VSAM data set in RLS mode for INPUT or I-O processing, it is a
good idea to issue an OPEN or START immediately before a READ. If there is a delay
between the OPEN or START and the actual READ, another user might add records
before the record on which the application is positioned after the OPEN or START.
The COBOL run time points explicitly to the beginning of the VSAM data set at
the time when OPEN was requested, but another user might add records that would
alter the true beginning of the VSAM data set if the READ is delayed.
The COBOL run time generates message IGZ0205W and automatically closes the
file if the error occurs during OPEN processing.
All other RLS mode errors return a VSAM return code of 4, 8, or 12.
RELATED TASKS
“Specifying access modes for VSAM files” on page 153
Deciding how big a virtual resource pool to provide (z/OS DFSMS: Using Data Sets)
Selecting the optimal percentage of free space (z/OS DFSMS: Using Data Sets)
RELATED REFERENCES
z/OS DFSMS: Access Method Services for Catalogs
After you have created a record, you cannot change its length or its position in the
file, and you cannot delete it.
RELATED CONCEPTS
UNIX System Services User’s Guide
RELATED TASKS
“Defining line-sequential files and records in COBOL”
“Describing the structure of a line-sequential file” on page 176
“Coding input-output statements for line-sequential files” on page 177
“Handling errors in line-sequential files” on page 180
“Defining and allocating line-sequential files” on page 177
RELATED REFERENCES
“Allowable control characters” on page 176
In the following example, COMMUTER-FILE is the name that your program uses for
the file; COMMUTR is the external name.
FILE-CONTROL.
SELECT COMMUTER-FILE
ASSIGN TO COMMUTR
ORGANIZATION IS LINE SEQUENTIAL
ACCESS MODE IS SEQUENTIAL
FILE STATUS IS ECODE.
Your ASSIGN assignment-name clause must not include an organization field (S- or
AS-) before the external name. The ACCESS phrase and the FILE STATUS phrase are
optional.
RELATED REFERENCES
“Allowable control characters”
The new-line character is treated as a record delimiter. The other control characters
are treated as data and are part of the record.
RELATED TASKS
“Defining line-sequential files and records in COBOL” on page 175
Code the logical size of the records with the RECORD clause. Line-sequential files are
stream files. Because of their character-oriented nature, the physical records are of
variable length.
The following examples show how the FD entry might look for a line-sequential
file:
If you code the same fixed size and no OCCURS DEPENDING ON clause for any level-01
record description entries associated with the file, that fixed size is the logical
record length. However, because blanks at the end of a record are not written to
the file, the physical records might be of varying lengths.
RELATED TASKS
“Defining line-sequential files and records in COBOL” on page 175
“Coding input-output statements for line-sequential files”
“Defining and allocating line-sequential files”
RELATED REFERENCES
Data Division—file description entries (Enterprise COBOL Language Reference)
To define a line-sequential file, define one of the following with a name that
matches the external name on your ASSIGN clause:
v A DD allocation:
– A DD statement that specifies PATH=’absolute-path-name’
– A TSO allocation that specifies PATH(’absolute-path-name’)
You can optionally also specify these options:
– PATHOPTS
– PATHMODE
– PATHDISP
v An environment variable with a value of PATH(absolute-path-name). No other
values can be specified.
For example, to have your COBOL program use HFS file
/u/myfiles/commuterfile for a COBOL file with an assignment-name of COMMUTR,
you would use the following command:
export COMMUTR=“PATH(/u/myfiles/commuterfile)”
RELATED TASKS
“Allocating files” on page 117
“Defining line-sequential files and records in COBOL” on page 175
RELATED REFERENCES
MVS JCL Reference
RELATED TASKS
“Defining line-sequential files and records in COBOL” on page 175
“Describing the structure of a line-sequential file” on page 176
“Opening line-sequential files”
“Reading records from line-sequential files”
“Adding records to line-sequential files” on page 179
“Closing line-sequential files” on page 179
“Handling errors in line-sequential files” on page 180
RELATED REFERENCES
OPEN statement (Enterprise COBOL Language Reference)
READ statement (Enterprise COBOL Language Reference)
WRITE statement (Enterprise COBOL Language Reference)
CLOSE statement (Enterprise COBOL Language Reference)
An OPEN statement works if the file is available or has been dynamically allocated.
Code CLOSE WITH LOCK so that the file cannot be opened again while the program
is running.
RELATED TASKS
“Reading records from line-sequential files”
“Adding records to line-sequential files” on page 179
“Closing line-sequential files” on page 179
“Defining and allocating line-sequential files” on page 177
RELATED REFERENCES
OPEN statement (Enterprise COBOL Language Reference)
CLOSE statement (Enterprise COBOL Language Reference)
With sequential processing, your program reads one record after another in the
same order in which the records were entered when the file was created.
Characters in the file record are read one at a time into the record area until one of
the following conditions occurs:
v The record delimiter (the EBCDIC new-line character) is encountered.
The delimiter is discarded and the remainder of the record area is filled with
spaces. (Record area is longer than the file record.)
RELATED TASKS
“Opening line-sequential files” on page 178
“Adding records to line-sequential files”
“Closing line-sequential files”
“Defining and allocating line-sequential files” on page 177
RELATED REFERENCES
OPEN statement (Enterprise COBOL Language Reference)
WRITE statement (Enterprise COBOL Language Reference)
Blanks at the end of the record area are removed and the record delimiter is
added. The characters in the record area from the first character up to and
including the added record delimiter are written to the file as one record.
Records written to line-sequential files must contain only USAGE DISPLAY and
DISPLAY-1 items. External decimal data items must be unsigned or declared with
the SEPARATE CHARACTER phrase if signed.
RELATED TASKS
“Opening line-sequential files” on page 178
“Reading records from line-sequential files” on page 178
“Closing line-sequential files”
“Defining and allocating line-sequential files” on page 177
RELATED REFERENCES
OPEN statement (Enterprise COBOL Language Reference)
WRITE statement (Enterprise COBOL Language Reference)
If you do not close a line-sequential file, the file is automatically closed for you
under the following conditions:
v When the run unit ends normally.
v When the run unit ends abnormally, if the TRAP(ON) run-time option is set.
v When Language Environment condition handling is completed and the
application resumes in a routine other than where the condition occurred, open
files defined in any COBOL programs in the run unit that might be called again
and reentered are closed.
File status codes are set when these implicit CLOSE operations are performed, but
EXCEPTION/ERROR declaratives are not invoked.
RELATED TASKS
“Opening line-sequential files” on page 178
“Reading records from line-sequential files” on page 178
“Adding records to line-sequential files” on page 179
“Defining and allocating line-sequential files” on page 177
RELATED REFERENCES
CLOSE statement (Enterprise COBOL Language Reference)
If you do not use one of these techniques, an error in processing input or output
raises a Language Environment condition.
If you use the FILE STATUS clause, be sure to check the key and take appropriate
action based on its value. If you do not check the key, it is possible that your
program could continue; but the results will probably not be what you expected.
RELATED TASKS
“Coding input-output statements for line-sequential files” on page 177
“Handling errors in input and output operations” on page 203
You can mix SORT and MERGE statements in the same COBOL program. A program
can contain any number of sort and merge operations. They can be the same
operation performed many times or different operations. However, one operation
must finish before another begins.
With Enterprise COBOL, your IBM licensed program for sorting and merging must
be DFSORT or an equivalent. Where DFSORT is mentioned, you can use any
equivalent sort or merge product.
COBOL programs that contain SORT or MERGE statements can reside above or below
the 16-MB line.
Restrictions:
v You cannot run a COBOL program that contains SORT or MERGE statements under
UNIX. This restriction includes BPXBATCH.
v You cannot use SORT or MERGE statements in programs compiled with the THREAD
option. This includes programs that use object-oriented syntax and
multithreaded applications, both of which require the THREAD option.
RELATED CONCEPTS
“Sort and merge process” on page 182
RELATED TASKS
“Describing the sort or merge file” on page 182
“Describing the input to sorting or merging” on page 183
“Describing the output from sorting or merging” on page 185
“Requesting the sort or merge” on page 188
“Determining whether the sort or merge was successful” on page 192
RELATED REFERENCES
“CICS SORT application restrictions” on page 199
SORT statement (Enterprise COBOL Language Reference)
MERGE statement (Enterprise COBOL Language Reference)
During the merging of two or more files (which must already be sorted), the
records are combined and ordered according to the contents of one or more keys in
each record. As with sorting, the records are first ordered according to the content
of the primary key, then according to the content of the second key, and so on. You
can order the records in either ascending or descending order of each key.
Use MERGE . . . USING to name the files that you want to combine into one
sequenced file. The merge operation compares keys in the records of the input
files, and passes the sequenced records one by one to the RETURN statement of an
output procedure or to the file that you name in the GIVING phrase.
RELATED REFERENCES
SORT statement (Enterprise COBOL Language Reference)
MERGE statement (Enterprise COBOL Language Reference)
The file described in an SD entry is the working file used for a sort or merge
operation. You cannot perform any input or output operations on this file. You do
not need to provide a ddname definition for the file.
RELATED REFERENCES
“FILE SECTION entries” on page 14
RELATED TASKS
“Coding the input procedure” on page 184
“Requesting the sort or merge” on page 188
RELATED REFERENCES
“FILE SECTION entries” on page 14
RELATED TASKS
“Requesting the sort or merge” on page 188
To transfer records to the sort program, all input procedures must contain at least
one RELEASE or RELEASE FROM statement. To release A from X, for example, you can
code:
MOVE X TO A.
RELEASE A.
The following table compares the RELEASE and RELEASE FROM statements.
RELATED REFERENCES
“Restrictions on input and output procedures” on page 187
RELEASE statement (Enterprise COBOL Language Reference)
RELATED TASKS
“Coding the output procedure”
“Requesting the sort or merge” on page 188
RELATED REFERENCES
“FILE SECTION entries” on page 14
You can use the AT END and END-RETURN phrases with the RETURN statement. The
imperative statements on the AT END phrase are performed after all the records
have been returned from the sort file. The END-RETURN explicit scope terminator
delimits the scope of the RETURN statement.
If you use the RETURN INTO statement instead of RETURN, the records will be
returned to WORKING-STORAGE, LOCAL-STORAGE, or to an output area.
The AT END condition occurs after the last record is returned to the program from
the sort work file and a subsequent RETURN statement is executed.
RELATED REFERENCES
“Restrictions on input and output procedures” on page 187
RETURN statement (Enterprise COBOL Language Reference)
RELATED TASKS
“Coding the input procedure” on page 184
“Coding the output procedure” on page 185
Planning to link-edit and run (Language Environment Programming Guide)
RELATED TASKS
“Controlling sort behavior” on page 195
“Using checkpoint/restart with DFSORT” on page 198
The compiler will determine that the sort work file is variable length if you code
one of the following in its SD entry:
v A RECORD IS VARYING clause
v Two or more record descriptions that define records with different sizes, or
records that contain an OCCURS DEPENDING ON clause
You cannot code RECORDING MODE V for the sort work file because the SD entry does
not allow the RECORDING MODE clause.
RELATED TASKS
“Changing DFSORT defaults with control statements” on page 197
“Controlling sort behavior” on page 195
To transfer sorted or merged records from the sort or merge program directly to
another file without any further processing, use SORT . . . GIVING or MERGE . . .
GIVING and the name of the output file that you have declared in a SELECT
statement. The compiler generates an output procedure to open the output file,
return the records, write the records, and close the file. The output file must not be
open when the SORT or MERGE statement begins execution. For example:
SORT Sort-Work-1
ON ASCENDING KEY Sort-Key-1
USING Input-File
GIVING Output-File.
The USING or GIVING files in a SORT or MERGE statement can be sequential files
residing in the HFS.
“Example: describing sort and input files for SORT” on page 183
Restriction: You cannot use an input procedure with the MERGE statement. The
source of input to the merge operation must be a collection of already sorted files.
However, if you want an output procedure to be performed on the merged
records, use MERGE . . . OUTPUT PROCEDURE. For example:
MERGE Merge-Work
ON ASCENDING KEY Merge-Key
USING Input-File-1 Input-File-2 Input-File-3
OUTPUT PROCEDURE ProcessOutput.
You must define Merge-Work in an SD statement in the FILE SECTION of the DATA
DIVISION, and the input files in FD statements in the FILE SECTION.
You can specify national data items as keys for sorting and merging. The binary
collating sequence is applied to such keys. If you specify a national data item as a
sort or merge key, any COLLATING SEQUENCE phrase in the SORT or MERGE statement
does not apply to that key.
You can mix SORT and MERGE statements in the same COBOL program. A program
can perform any number of sort or merge operations. However, one operation
must end before another can begin.
RELATED CONCEPTS
Appendix B, “Complex OCCURS DEPENDING ON,” on page 613 (variably located
items)
RELATED TASKS
“Defining sort and merge data sets” on page 187
RELATED TASKS
“Requesting the sort or merge” on page 188
When you sort or merge an ASCII file, you have to request the ASCII collating
sequence. To do so, code the COLLATING SEQUENCE phrase of the SORT or MERGE
statement, where you define the alphabet-name as STANDARD-1 in the SPECIAL-NAMES
paragraph.
RELATED TASKS
“Specifying the collating sequence” on page 8
RELATED REFERENCES
SORT statement (Enterprise COBOL Language Reference)
Classes and categories of data (Enterprise COBOL Language Reference)
To sort on a windowed date field, use the DATE FORMAT clause to define a
windowed date field; then use the field as the sort key. DFSORT will use the same
century window as that used by the compilation unit. Specify the century window
with the YEARWINDOW compiler option.
DFSORT supports year-last windowed date fields, although the compiler itself
does not provide automatic windowing for year-last windowed date fields in
statements other than MERGE or SORT.
RELATED TASKS
“Sorting and merging by date” on page 567
RELATED REFERENCES
“YEARWINDOW” on page 315
DATE FORMAT clause (Enterprise COBOL Language Reference)
OPTION control statement (Y2PAST option) (DFSORT Application Programming
Guide)
RELATED REFERENCES
OPTION control statement (DFSORT Application Programming Guide)
The completion code is stored in the SORT-RETURN special register. The contents of
this register change after each SORT or MERGE statement is performed.
You should test for successful completion after each SORT or MERGE statement. For
example:
SORT SORT-WORK-2
ON ASCENDING KEY SORT-KEY
INPUT PROCEDURE IS 600-SORT3-INPUT-PROC
OUTPUT PROCEDURE IS 700-SORT3-OUTPUT-PROC.
IF SORT-RETURN NOT=0
DISPLAY “SORT ENDED ABNORMALLY. SORT-RETURN = ” SORT-RETURN.
. . .
600-SORT3-INPUT-PROC SECTION.
. . .
700-SORT3-OUTPUT-PROC SECTION.
. . .
If you do not reference SORT-RETURN anywhere in your program, the COBOL run
time tests the return code. If the return code is 16, COBOL issues a run-time
diagnostic message.
If you test SORT-RETURN for one or more (but not necessarily all) SORT or MERGE
statements, the COBOL run time does not check the return code.
By default, DFSORT diagnostic messages are sent to the SYSOUT data set. If you
want to change this default, use the MSGDDN parameter of the DFSORT OPTION
control card or use the SORT-MESSAGE special register.
RELATED TASKS
“Checking for sort errors with NOFASTSRT” on page 195
“Controlling sort behavior” on page 195
RELATED REFERENCES
DFSORT messages and return codes (DFSORT Application Programming Guide)
Usage notes
v You cannot use the DFSORT options SORTIN or SORTOUT if you use FASTSRT. The
FASTSRT compiler option does not apply to line-sequential files you use as USING
or GIVING files.
v If you specify file status and use FASTSRT, file status is ignored during the sort.
RELATED REFERENCES
“FASTSRT” on page 284
“FASTSRT requirements for JCL”
“FASTSRT requirements for sort input and output files”
For the input and output files, the DCB parameter of the DD statement in the JCL
must match the FD description.
To use FASTSRT, you must describe and process the input files to the sort, and the
output files from the sort, in these ways:
v You can mention only one input file in the USING phrase. You can mention only
one output file in the GIVING phrase.
v You cannot use an input procedure on an input file, nor an output procedure on
an output file.
Instead of using input or output procedures, you might be able to use DFSORT
control statements:
– INREC
| – OUTFILE
– OUTREC
– INCLUDE
– OMIT
– STOPAFT
Note that if you code a RELATIVE KEY clause for an output file, it will not be set by
the sort.
Performance tip: If you block your input and output records, the sort performance
could be significantly improved.
QSAM requirements
v QSAM files must have a record format of fixed, variable, or spanned.
v A QSAM input file can be empty.
v To use the same QSAM file for both input and output, you must describe the file
using two different DD statements. For example, in the FILE-CONTROL SECTION
you might code the following:
SELECT FILE-IN ASSIGN INPUTF.
SELECT FILE-OUT ASSIGN OUTPUTF.
In the DATA DIVISION, you would have an FD entry for both FILE-IN and
FILE-OUT, where FILE-IN and FILE-OUT are identical except for their names.
In the PROCEDURE DIVISION, your SORT statement could look like this:
SORT file-name
ASCENDING KEY data-name-1
USING FILE-IN GIVING FILE-OUT
Then in your JCL, you would code:
//INPUTF DD DSN=INOUT,DISP=SHR
//OUTPUTF DD DSN=INOUT,DISP=SHR
where data set INOUT has been cataloged.
On the other hand, if you code the same file name in the USING and GIVING
phrases, or assign the input and output files the same ddname, then the file can
be accepted for FASTSRT either for input or output, but not both. If no other
conditions disqualify the file from being eligible for FASTSRT on input, then the
file will be accepted for FASTSRT on input, but not on output. If the file was
found to be ineligible for FASTSRT on input, it might be eligible for FASTSRT on
output.
A QSAM file that qualifies for FASTSRT can be accessed by the COBOL program
while the SORT statement is being performed. For example, if the file is used for
FASTSRT on input, you can access it in an output procedure; if it is used for FASTSRT
on output, you can access it in an input procedure.
RELATED TASKS
DFSORT Application Programming Guide
The code required depends on whether you code a FILE STATUS clause or an ERROR
declarative for the files referenced in the USING and GIVING phrases, as shown in
the table below.
Table 33. Methods for checking for sort errors with NOFASTSRT
FILE STATUS ERROR
clause? declarative? Then do:
No No No special coding. Any failure during the sort process
causes the program to end abnormally.
Yes No Test the SORT-RETURN special register after the SORT
statement, and test the file status key. (Not recommended
if you want complete file status checking, because the file
status code is set but COBOL cannot check it.)
Maybe Yes In the ERROR declarative, set the SORT-RETURN special
register to 16 to stop the sort process and indicate that it
was not successful. Test the SORT-RETURN special register
after the SORT statement.
RELATED TASKS
“Determining whether the sort or merge was successful” on page 192
“Using file status keys” on page 208
“Coding ERROR declaratives” on page 207
“Stopping a sort or merge operation prematurely” on page 192
You can also verify sort behavior by examining the contents of special registers
after the sort.
You can use the SORT-RETURN special register to determine whether the sort or
merge was successful and to stop a sort or merge operation prematurely.
A compiler warning message (W-level) is issued for each sort special register that
you set in a program.
RELATED TASKS
“Determining whether the sort or merge was successful” on page 192
“Stopping a sort or merge operation prematurely” on page 192
“Changing DFSORT defaults with control statements” on page 197
“Allocating space for sort files” on page 198
Using DFSORT program control statements (DFSORT Application Programming
Guide)
The control statements that you can include in the IGZSRTCD data set (in the
order listed) are:
1. SMS=nnnnn, where nnnnn is the length in bytes of the most frequently occurring
record size. (Use only if the SD file is variable length.)
2. OPTION (except keywords SORTIN or SORTOUT).
3. Other DFSORT control statements (except SORT, MERGE, RECORD, or END).
Code control statements between columns 2 and 71. You can continue a control
statement record by ending the line with a comma and starting the next line with a
new keyword. No labels or comments are allowed on a record, and a record itself
cannot be a DFSORT comment statement.
RELATED TASKS
“Controlling sort behavior” on page 195
Using DFSORT program control statements (DFSORT Application Programming
Guide)
RELATED REFERENCES
“Default characteristics of the IGZSRTCD data set”
The IGZSRTCD data set is optional. If you defined a ddname for the SORT-CONTROL
data set and you receive the message IGZ0027W, an OPEN failure occurred that
you should investigate.
RELATED TASKS
“Controlling sort behavior” on page 195
DFSORT installation should not allocate all the free space in the region for its
COBOL operation, however. When your program is running, storage must be
available for the following:
v COBOL programs that are dynamically called from an input or output procedure
v Language Environment run-time library modules
v Data management modules that can be loaded into the region for use by an
input or output procedure
For a specific sort or merge operation, you can override the DFSORT storage
values set at installation. To do so, code the MAINSIZE and RESINV keywords on the
OPTION control statement in the sort control statement data set, or use the
SORT-CORE-SIZE special register.
Be careful not to override the storage allocation to the extent that all the free space
in the region is used for sort operations in your COBOL program.
RELATED TASKS
“Controlling sort behavior” on page 195
DFSORT Installation and Customization
RELATED REFERENCES
OPTION control statement (DFSORT Application Programming Guide)
RELATED TASKS
“Controlling sort behavior” on page 195
“Coding the input procedure” on page 184
DFSORT Application Programming Guide
RELATED CONCEPTS
Chapter 32, “Interrupts and checkpoint/restart,” on page 545
RELATED TASKS
“Changing DFSORT defaults with control statements” on page 197
“Setting checkpoints” on page 545
You must have both an input and an output procedure for the SORT statement. In
the input procedure, use the RELEASE statement to transfer records from the
COBOL program to the sort program before the sort is performed. In the output
procedure, use the RETURN statement to transfer records from the sort program to
the COBOL program after the sort is performed.
RELATED TASKS
“Coding the input procedure” on page 184
“Coding the output procedure” on page 185
RELATED REFERENCES
“CICS SORT application restrictions”
Your error-handling code can take actions such as handling the situation, issuing a
message, or halting the program. In any event, coding a warning message is a
good idea.
You might create error-detection routines for data-entry errors or for errors as your
installation defines them.
COBOL contains special elements to help you anticipate and correct error
conditions:
v User-requested dumps
v ON OVERFLOW in STRING and UNSTRING operations
v ON SIZE ERROR in arithmetic operations
v Technique handling for input or output errors
v ON EXCEPTION or ON OVERFLOW in CALL statements
v User-written routines for handling errors
RELATED TASKS
“Handling errors in joining and splitting strings” on page 202
“Handling errors in arithmetic operations” on page 203
“Handling errors in input and output operations” on page 203
“Handling errors when calling programs” on page 213
“Writing routines for handling errors” on page 213
Requesting dumps
You can obtain a formatted dump of the run-time environment by calling the
Language Environment service CEE3DMP. To obtain a system dump, you can
request an abend without cleanup by calling the Language Environment service
CEE3ABD with a cleanup value of zero.
This callable service stops the run unit immediately, and a system dump is
requested when the abend is issued.
RELATED REFERENCES
Language Environment Debugging Guide
CEE3DMP—generate dump (Language Environment Programming Reference)
These are the data values before and after the statement is performed:
Because String-ptr has a value of zero that falls short of the receiving field, an
overflow condition occurs and the STRING operation is not completed. (The same
result would occur if String-ptr were greater than nine.) If ON OVERFLOW had not
been specified, you would not be notified that the contents of Item-4 remain
unchanged.
For ON SIZE ERROR to work correctly for fixed-point overflow and decimal
overflow, you must specify the TRAP(ON) run-time option.
The imperative statement of the ON SIZE ERROR clause will be performed and the
result field will not change in these cases:
v Fixed-point overflow
v Division by zero
v Zero raised to the zero power
v Zero raised to a negative number
v Negative number raised to a fractional power
You can use any of the following techniques for intercepting and handling certain
input or output errors:
v End-of-file condition (AT END)
v ERROR declarative
v File status key
For VSAM files, if you specify a FILE STATUS clause, you can also test the VSAM
return code to direct your program to error-handling logic.
If you do not handle an input or output error in any of these ways, a severity-3
Language Environment condition is signaled, which causes the run unit to end if
the condition is not handled.
The following figures show the flow of logic after the indicated errors:
v VSAM input or output error
v QSAM and line-sequential input or output error
The following figure shows the flow of logic after a VSAM input or output error:
Applicable*
Yes Execute
imperative
imperative
phrase?
statement
No
Associated Execute
Yes
ERROR ERROR
declarative? declarative
No
File-status
Yes Test file**
clause
status key
specified ?
No
*Possible phrases for QSAM are AT END, AT END-OF-PAGE, and INVALID KEY; for line
sequential, AT END.
**You need to write the code to test the file status key.
RELATED TASKS
“Using the end-of-file condition (AT END)”
“Coding ERROR declaratives” on page 207
“Using file status keys” on page 208
“Handling errors in QSAM files” on page 133
“Using VSAM return codes (VSAM files only)” on page 209
“Coding INVALID KEY phrases” on page 212
RELATED REFERENCES
Status key (Common processing facilities) (Enterprise COBOL Language Reference)
Any NOT AT END phrase you code is performed only if the READ statement
completes successfully. If the READ operation fails because of a condition other than
end-of-file, neither the AT END nor the NOT AT END phrase is performed. Instead,
control passes to the end of the READ statement after performing any associated
declarative procedure.
You might choose to code neither an AT END phrase nor an EXCEPTION declarative
procedure, but a status key clause for the file. In that case, control passes to the
next sequential instruction after the input or output statement that detected the
end-of-file conditions. Here presumably you have some code to take appropriate
action.
RELATED REFERENCES
AT END phrases (Enterprise COBOL Language Reference)
Place each such procedure in the declaratives section of your PROCEDURE DIVISION.
In your procedure, you can choose to try corrective action, retry the operation,
continue, or end execution. You can use the ERROR declaratives procedure in
combination with the file status key if you want a further analysis of the error.
If you continue processing a blocked file, you might lose the remaining records in
a block after the record that caused the error.
Write an ERROR declarative procedure if you want the system to return control to
your program after an error occurs. If you do not write an ERROR declarative
procedure, your job could be canceled or abnormally terminated after an error
occurs.
When this program is running on two threads, the following sequence of events
might occur:
1. Thread 1: Rewrite R1 acquires lock on F1 and encounters I/O error.
2. Thread 1: Enter declarative D1, holding lock on F1.
3. Thread 2: Rewrite R2 acquires lock on F2 and encounters I/O error.
4. Thread 2: Enter declarative D2.
5. Thread 1: Read F2 from declarative D1; wait on F2 lock held by thread 2.
6. Thread 2: Read F1 from declarative D2; wait on F1 lock held by thread 1.
7. Deadlock.
RELATED REFERENCES
EXCEPTION/ERROR declarative (Enterprise COBOL Language Reference)
The data item data-name-1 specifies the two-character COBOL file status key that
should be defined in the WORKING-STORAGE SECTION. This data-name cannot be
variably located.
Your program can check the COBOL file status key to discover whether an error
has been made and, if so, what type of error it is. For example, suppose a FILE
STATUS clause is coded like this:
FILE STATUS IS FS-CODE
For VSAM files, in addition to the file status key, you can code a second identifier
in the FILE STATUS clause to get more detailed information about VSAM input or
output requests.
You can use the file status key alone or in conjunction with the INVALID KEY
option, or to supplement the EXCEPTION or ERROR declarative. Using the file status
key in this way gives you precise information about the results of each input or
output operation.
RELATED REFERENCES
File status key (Common processing facilities) (Enterprise COBOL Language
Reference)
You can define the second status area, data-name-8, in the WORKING-STORAGE SECTION
as in VSAM-CODE here:
01 RETURN-STATUS.
05 FS-CODE PIC X(2).
05 VSAM-CODE.
10 VSAM-R15-RETURN PIC S9(4) Usage Comp-5.
10 VSAM-FUNCTION PIC S9(4) Usage Comp-5.
10 VSAM-FEEDBACK PIC S9(4) Usage Comp-5.
RELATED REFERENCES
VSAM macro return and reason codes (z/OS DFSMS Macro Instructions for Data
Sets)
This example also illustrates how output from this program might look if the file
being processed contains six records.
IDENTIFICATION DIVISION
PROGRAM-ID. EXAMPLE.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT VSAMFILE ASSIGN TO VSAMFILE
ORGANIZATION IS INDEXED
ACCESS DYNAMIC
RECORD KEY IS VSAMFILE-KEY
FILE STATUS IS FS-CODE VSAM-CODE.
DATA DIVISION.
IF FS-CODE = “00”
PERFORM READ-NEXT UNTIL FS-CODE NOT = “00”
END-IF.
CLOSE VSAMFILE.
STOP RUN.
READ-NEXT.
READ VSAMFILE NEXT.
DISPLAY “READ NEXT VSAMFILE FS-CODE: ” FS-CODE.
IF FS-CODE NOT = “00”
PERFORM VSAM-CODE-DISPLAY
END-IF.
DISPLAY VSAMFILE-REC.
VSAM-CODE-DISPLAY.
DISPLAY “VSAM-CODE ==>”
“ RETURN: ” VSAM-RETURN-CODE,
“ COMPONENT: ” VSAM-COMPONENT-CODE,
“ REASON: ” VSAM-REASON-CODE.
Below is a sample of the output from the example program that checks VSAM
code information:
OPEN INPUT VSAMFILE FS-CODE: 00
START VSAMFILE KEY=000005 FS-CODE: 00
READ NEXT VSAMFILE FS-CODE: 00
000005 THIS IS RECORD NUMBER 5
READ NEXT VSAMFILE FS-CODE: 00
000006 THIS IS RECORD NUMBER 6
READ NEXT VSAMFILE FS-CODE: 10
VSAM-CODE ==> RETURN: 08 COMPONENT: 2 REASON: 004
Use the FILE STATUS clause with INVALID KEY to evaluate the status key and
determine the specific INVALID KEY condition.
You can also include INVALID KEY on WRITE requests for QSAM files, but the
INVALID KEY phrase has limited meaning here. It is used only if you try to write to
a disk that is full.
If you code INVALID KEY in a statement that causes an INVALID KEY condition,
control is transferred to the INVALID KEY imperative statement. Here, any ERROR
declaratives you have coded are not performed.
The FILE-CONTROL entry for the master file of customer records includes statements
defining indexed organization, random access, MASTER-CUSTOMER-NUMBER as the
prime record key, and CUSTOMER-FILE-STATUS as the file status key. The following
example shows how you can use FILE STATUS with the INVALID KEY to more
specifically determine why an input or output statement failed.
.
. (read the update transaction record)
.
MOVE “TRUE” TO TRANSACTION-MATCH
MOVE UPDATE-CUSTOMER-NUMBER TO MASTER-CUSTOMER-NUMBER
READ MASTER-CUSTOMER-FILE INTO WS-CUSTOMER-RECORD
INVALID KEY
Use the ON EXCEPTION phrase to perform a series of statements and to perform your
own error handling. For example:
MOVE “REPORTA” TO REPORT-PROG
CALL REPORT-PROG
ON EXCEPTION
DISPLAY “Program REPORTA not available, using REPORTB.’
MOVE ”REPORTB“ TO REPORT-PROG
CALL REPORT-PROG
END-CALL
END-CALL
The ON EXCEPTION phrase applies only to the availability of the called program. If
an error occurs while the called program is running, the ON EXCEPTION phrase will
not be performed.
RELATED TASKS
Enterprise COBOL Compiler and Run-Time Migration Guide
RELATED TASKS
“Using procedure and function pointers” on page 407
You can also compile in a z/OS UNIX shell by using the cob2 command.
You might instead want to start the Enterprise COBOL compiler from an assembler
program, for example, if your shop has developed a tool or interface that calls the
Enterprise COBOL compiler.
As part of the compilation step, you need to define the data sets needed for the
compilation and specify any compiler options necessary for your program and the
desired output.
The compiler translates your COBOL program into language that the computer can
process (object code). The compiler also lists errors in your source statements and
provides supplementary information to help you debug and tune your program.
Use compiler-directing statements and compiler options to control your
compilation.
After compiling your program, you need to review the results of the compilation
and correct any compiler-detected errors.
RELATED TASKS
“Compiling with JCL”
“Compiling under TSO” on page 229
Chapter 15, “Compiling under UNIX,” on page 249
“Starting the compiler from an assembler program” on page 231
“Defining compiler input and output” on page 232
“Specifying compiler options under z/OS” on page 238
“Compiling multiple programs (batch compilation)” on page 241
“Correcting errors in your source program” on page 245
RELATED REFERENCES
Chapter 18, “Compiler-directing statements,” on page 317
“Data sets used by the compiler under z/OS” on page 233
“Compiler options and compiler output under z/OS” on page 239
The simplest way to compile your program under z/OS is to code JCL that uses a
cataloged procedure. A cataloged procedure is a set of job control statements placed
in a partitioned data set called the procedure library (SYS1.PROCLIB).
The following JCL shows the general format for a cataloged procedure.
//jobname JOB parameters
//stepname EXEC [PROC=]procname[,{PARM=|PARM.stepname=}’options’]
//SYSIN DD data set parameters
. . . (source program to be compiled)
/*
//
RELATED TASKS
“Using a cataloged procedure”
“Writing JCL to compile programs” on page 228
“Specifying compiler options under z/OS” on page 238
“Specifying compiler options in a batch compilation” on page 242
“Compiling programs to create DLLs” on page 426
RELATED REFERENCES
“Data sets used by the compiler under z/OS” on page 233
The following JCL calls the IBM-supplied cataloged procedure (IGYWC) for
compiling an Enterprise COBOL program and defining the required data sets:
//JOB1 JOB1
//STEPA EXEC PROC=IGYWC
//COBOL.SYSIN DD *
000100 IDENTIFICATION DIVISION
* (the source code)
...
/*
You can omit /* after the source code. If your source code is stored in a data set,
replace SYSIN DD * with appropriate parameters that describe the data set.
You can use these procedures with any of the job schedulers that are part of z/OS.
When a scheduler encounters parameters that it does not require, the scheduler
either ignores them or substitutes alternative parameters.
If the compiler options are not explicitly supplied with the procedure, default
options established at the installation apply. You can override these default options
by using an EXEC statement that includes the desired options.
You can specify data sets to be in the hierarchical file system by overriding the
corresponding DD statement. However, the compiler utility files (SYSUTx) and copy
libraries (SYSLIB) you specify must be MVS data sets.
RELATED TASKS
Language Environment Programming Guide
RELATED REFERENCES
“Compile procedure (IGYWC)”
“Compile and link-edit procedure (IGYWCL)” on page 220
“Compile, link-edit, and run procedure (IGYWCLG)” on page 221
“Compile, load, and run procedure (IGYWCG)” on page 222
“Compile, prelink, and link-edit procedure (IGYWCPL)” on page 223
“Compile, prelink, link-edit, and run procedure (IGYWCPLG)” on page 224
“Prelink and link-edit procedure (IGYWPL)” on page 226
“Compile, prelink, load, and run procedure (IGYWCPG)” on page 226
z/OS DFSMS: Program Management
You must supply the following DD statement, indicating the location of the source
program, in the input stream:
//COBOL.SYSIN DD * (or appropriate parameters)
If you use copybooks in the program that you are compiling, you must also supply
a DD statement for SYSLIB or other libraries that you specify in COPY statements. For
example:
//COBOL.SYSLIB DD DISP=SHR,DSN=DEPT88.BOBS.COBLIB
Example: JCL for compiling using HFS: The following job uses procedure
IGYWC to compile a COBOL program demo.cbl that is located in the hierarchical
file system (HFS). It writes the generated compiler listing demo.lst, object file
demo.o, and SYSADATA file demo.adt to the HFS.
//HFSDEMO JOB ,
// TIME=(1),MSGLEVEL=(1,1),MSGCLASS=H,CLASS=A,REGION=50M,
// NOTIFY=&SYSUID,USER=&SYSUID
//COMPILE EXEC IGYWC,
// PARM.COBOL=’LIST,MAP,RENT,FLAG(I,I),XREF,ADATA’
//SYSPRINT DD PATH=’/u/userid/cobol/demo.lst’, (1)
// PATHOPTS=(OWRONLY,OCREAT,OTRUNC), (2)
// PATHMODE=SIRWXU, (3)
// FILEDATA=TEXT (4)
//SYSLIN DD PATH=’/u/userid/cobol/demo.o’,
// PATHOPTS=(OWRONLY,OCREAT,OTRUNC),
// PATHMODE=SIRWXU
//SYSADATA DD PATH=’/u/userid/cobol/demo.adt’,
// PATHOPTS=(OWRONLY,OCREAT,OTRUNC),
// PATHMODE=SIRWXU
//SYSIN DD PATH=’/u/userid/cobol/demo.cbl’,
// PATHOPTS=ORDONLY,
// FILEDATA=TEXT,
// RECFM=F
(1) PATH specifies the path name for an HFS file.
(2) PATHOPTS indicates the access for the file (such as read or read-write) and
sets the status for the file (such as append, create, or truncate).
(3) PATHMODE indicates the permissions, or file access attributes, to be set when
a file is created.
(4) FILEDATA specifies whether the data is to be treated as text or binary.
You can use a mixture of HFS (PATH=’hfs-directory-path’) and MVS data sets
(DSN=traditional-data-set-name) on the compilation DD statements shown in this
example as overrides. However, the compiler utility files (DD statements SYSUTx)
and COPY libraries (DD statements SYSLIB) must be MVS data sets.
RELATED REFERENCES
UNIX System Services Command Reference
MVS JCL Reference
“Data sets used by the compiler under z/OS” on page 233
You must supply the following DD statement, indicating the location of the source
program, in the input stream.
//COBOL.SYSIN DD * (or appropriate parameters)
If you use copybooks in the program that you are compiling, you must also supply
a DD statement for SYSLIB or other libraries that you specify in COPY statements. For
example:
The COBOL job step produces an object module that is input to the linkage editor
or binder. Other object modules can be added. If the COBOL program refers to any
data sets, DD statements that define these data sets must also be supplied.
You must supply the following DD statement, indicating the location of the source
program, in the input stream.
//COBOL.SYSIN DD * (or appropriate parameters)
If you use copybooks in the program that you are compiling, you must also supply
a DD statement for SYSLIB or other libraries that you specify in COPY statements. For
example:
The following shows the statements that make up the IGYWCLG cataloged
procedure.
//IGYWCLG PROC LNGPRFX=’IGY.V3R3M0’,SYSLBLK=3200,
// LIBPRFX=’CEE’,GOPGM=GO
//*
//* COMPILE, LINK EDIT AND RUN A COBOL PROGRAM
//*
//* PARAMETER DEFAULT VALUE USAGE
//* LNGPRFX IGY.V3R3M0 PREFIX FOR LANGUAGE DATA SET NAMES
//* SYSLBLK 3200 BLKSIZE FOR OBJECT DATA SET
//* LIBPRFX CEE PREFIX FOR LIBRARY DATA SET NAMES
//* GOPGM GO MEMBER NAME FOR LOAD MODULE
//*
//* CALLER MUST SUPPLY //COBOL.SYSIN DD . . .
//*
//COBOL EXEC PGM=IGYCRCTL,REGION=2048K
//STEPLIB DD DSNAME=&LNGPRFX..SIGYCOMP, (1)
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSNAME=&&LOADSET,UNIT=SYSDA,
// DISP=(MOD,PASS),SPACE=(TRK,(3,3)),
// DCB=(BLKSIZE=&SYSLBLK)
//SYSUT1 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT2 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT3 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT4 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT5 DD UNIT=SYSDA,SPACE=(CYL,(1,1)) (2)
//SYSUT6 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT7 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//LKED EXEC PGM=HEWL,COND=(8,LT,COBOL),REGION=1024K
//SYSLIB DD DSNAME=&LIBPRFX..SCEELKED, (3)
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSNAME=&&LOADSET,DISP=(OLD,DELETE)
// DD DDNAME=SYSIN
//SYSLMOD DD DSNAME=&&GOSET(&GOPGM),SPACE=(TRK,(10,10,1)),
// UNIT=SYSDA,DISP=(MOD,PASS)
//SYSUT1 DD UNIT=SYSDA,SPACE=(TRK,(10,10))
//GO EXEC PGM=*.LKED.SYSLMOD,COND=((8,LT,COBOL),(4,LT,LKED)),
// REGION=2048K
//STEPLIB DD DSNAME=&LIBPRFX..SCEERUN, (1)
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//CEEDUMP DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
You must supply the following DD statement, indicating the location of the source
program, in the input stream.
//COBOL.SYSIN DD * (or appropriate parameters)
The following shows the statements that make up the IGYWCG cataloged
procedure.
//IGYWCG PROC LNGPRFX=’IGY.V3R3M0’,SYSLBLK=3200,
// LIBPRFX=’CEE’
//*
//* COMPILE, LOAD AND RUN A COBOL PROGRAM
//*
//* PARAMETER DEFAULT VALUE USAGE
//* LNGPRFX IGY.V3R3M0 PREFIX FOR LANGUAGE DATA SET NAMES
//* SYSLBLK 3200 BLKSIZE FOR OBJECT DATA SET
//* LIBPRFX CEE PREFIX FOR LIBRARY DATA SET NAMES
//*
//* CALLER MUST SUPPLY //COBOL.SYSIN DD . . .
//*
//COBOL EXEC PGM=IGYCRCTL,REGION=2048K
//STEPLIB DD DSNAME=&LNGPRFX..SIGYCOMP, (1)
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSNAME=&&LOADSET,UNIT=SYSDA, (2)
// DISP=(MOD,PASS),SPACE=(TRK,(3,3)),
// DCB=(BLKSIZE=&SYSLBLK)
//SYSUT1 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT2 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT3 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT4 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT5 DD UNIT=SYSDA,SPACE=(CYL,(1,1)) (3)
//SYSUT6 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT7 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//GO EXEC PGM=LOADER,COND=(8,LT,COBOL),REGION=2048K
//SYSLIB DD DSNAME=&LIBPRFX..SCEELKED, (4)
// DISP=SHR
//SYSLOUT DD SYSOUT=*
//SYSLIN DD DSNAME=&&LOADSET,DISP=(OLD,DELETE)
//STEPLIB DD DSNAME=&LIBPRFX..SCEERUN, (1)
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//CEEDUMP DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
You must supply the following DD statement, indicating the location of the source
program, in the input stream.
SYSIN DD * (or appropriate parameters)
If you use copybooks in the program that you are compiling, you must also supply
a DD statement for SYSLIB or other libraries that you specify in COPY statements. For
example:
//COBOL.SYSLIB DD DISP=SHR,DSN=DEPT88.BOBS.COBLIB
If you use copybooks in the program that you are compiling, you must also supply
a DD statement for SYSLIB or other libraries that you specify in COPY statements. For
example:
//COBOL.SYSLIB DD DISP=SHR,DSN=DEPT88.BOBS.COBLIB
The following shows the statements that make up the IGYWCPLG cataloged
procedure.
//IGYWCPLG PROC LNGPRFX=’IGY.V3R3M0’,SYSLBLK=3200,
// PLANG=EDCPMSGE,
// LIBPRFX=’CEE’,GOPGM=GO
//*
//* COMPILE, PRELINK, LINK EDIT, AND RUN A COBOL PROGRAM
//*
//* PARAMETER DEFAULT VALUE USAGE
//* LNGPRFX IGY.V3R3M0 PREFIX FOR LANGUAGE DATA SET NAMES
//* SYSLBLK 3200 BLKSIZE FOR OBJECT DATA SET
//* PLANG EDCPMSGE PRELINKER MESSAGES MODULE
//* LIBPRFX CEE PREFIX FOR LIBRARY DATA SET NAMES
//* GOPGM GO MEMBER NAME FOR LOAD MODULE
//*
//* CALLER MUST SUPPLY //COBOL.SYSIN DD . . .
//*
//COBOL EXEC PGM=IGYCRCTL,REGION=2048K
//STEPLIB DD DSNAME=&LNGPRFX..SIGYCOMP, (1)
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSNAME=&&LOADSET,UNIT=SYSDA,
// DISP=(MOD,PASS),SPACE=(TRK,(3,3)),
// DCB=(BLKSIZE=&SYSLBLK)
//SYSUT1 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT2 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT3 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT4 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT5 DD UNIT=SYSDA,SPACE=(CYL,(1,1)) (2)
//SYSUT6 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSUT7 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//PLKED EXEC PGM=EDCPRLK,PARM=’’,COND=(8,LT,COBOL),
// REGION=2048K
//STEPLIB DD DSNAME=&LIBPRFX..SCEERUN,
// DISP=SHR
//SYSMSGS DD DSNAME=&LIBPRFX..SCEEMSGP(&PLANG),
// DISP=SHR
//SYSLIB DD DUMMY
//SYSIN DD DSN=&&LOADSET,DISP=(OLD,DELETE)
//SYSMOD DD DSNAME=&&PLKSET,UNIT=SYSDA,DISP=(NEW,PASS),
// SPACE=(32000,(100,50)),
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=3200)
//SYSDEFSD DD DUMMY
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//*
//LKED EXEC PGM=HEWL,COND=(8,LT,COBOL),REGION=1024K
//SYSLIB DD DSNAME=&LIBPRFX..SCEELKED, (3)
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSNAME=&&PLKSET,DISP=(OLD,DELETE)
// DD DDNAME=SYSIN
//SYSLMOD DD DSNAME=&&GOSET(&GOPGM),SPACE=(TRK,(10,10,1)),
// UNIT=SYSDA,DISP=(MOD,PASS)
//SYSUT1 DD UNIT=SYSDA,SPACE=(TRK,(10,10))
If you use copybooks in the program that you are compiling, you must also supply
a DD statement for SYSLIB or other libraries that you specify in COPY statements. For
example:
//COBOL.SYSLIB DD DISP=SHR,DSN=DEPT88.BOBS.COBLIB
You can use a mixture of HFS (PATH=’hfs-directory-path’) and MVS data sets
(DSN=traditional-data-set-name) on the compilation DD statements for the following
data sets:
v Sources files
v Object files
v Listings
v ADATA files
v Debug files
v Executable modules
However, the compiler utility files (DD statements SYSUTx) and COPY libraries (DD
statement SYSLIB) must be MVS data sets.
RELATED REFERENCES
MVS JCL Reference
You can specify the ALLOCATE and CALL commands on the TSO command line, or, if
you are not using HFS files, include them in a CLIST.
You can allocate HFS files for all the compiler data sets except the SYSUTx utility
data sets and the SYSLIB libraries. Your ALLOCATE statements have the following
form:
Allocate File(SYSIN) Path(’/u/myu/myap/std/prog2.cbl’)
Pathopts(ORDONLY) Filedata(TEXT)
For example:
symbol {LINK|ATTACH} EP=IGYCRCTL,PARAM=(optionlist[,ddnamelist]),VL=1
where:
EP Specifies the symbolic name of the Enterprise COBOL compiler. The
control program (from the library directory entry) determines the entry
point at which the program should begin running.
PARAM Specifies, as a sublist, address parameters to be passed from the assembler
program to the Enterprise COBOL compiler. The first fullword in the
address parameter list contains the address of the COBOL optionlist. The
second fullword contains the address of the ddnamelist.
The third and fourth fullwords contain the addresses of null parameters, or
zero.
optionlist
Specifies the address of a variable-length list containing the COBOL
options specified for compilation. This address must be written although
no list is provided.
The optionlist must begin on a halfword boundary. The 2 high-order bytes
contain a count of the number of bytes in the remainder of the list. If no
options are specified, the count must be zero. The optionlist is free form,
with each field separated from the next by a comma. No blanks or zeros
should appear in the list. The compiler recognizes only the first 100
characters in the list.
ddnamelist
Specifies the address of a variable-length list containing alternative
ddnames for the data sets used during COBOL compiler processing. If
standard ddnames are used, the ddnamelist can be omitted.
VL Specifies that the sign bit is to be set to 1 in the last fullword of the
address parameter list.
When the Enterprise COBOL compiler completes processing, it puts a return code
in register 15.
RELATED TASKS
“Defining the source code data set (SYSIN)” on page 235
“Specifying source libraries (SYSLIB)” on page 235
“Defining the output data set (SYSPRINT)” on page 236
“Directing compiler messages to your terminal (SYSTERM)” on page 236
“Creating object code (SYSLIN or SYSPUNCH)” on page 236
“Creating an associated data file (SYSADATA)” on page 237
“Defining the debug data set (SYSDEBUG)” on page 237
1. You can use the EXIT option to provide user exits from these data sets.
2. These data sets must be single volume.
RELATED REFERENCES
“Logical record length and block size”
“EXIT” on page 283
For fixed-length records (RECFM=F or RECFM=FB), LRECL is the logical record length,
and BLKSIZE equals LRECL multiplied by n where n is equal to the blocking factor.
The following table shows the defined values for the fixed-length data sets. In
general, you should not change these values, but you can change the value for:
v SYSDEBUG: You can specify any LRECL in the listed range, with 1024
recommended.
v SYSPRINT, SYSDEBUG: You can specify BLKSIZE=0, which results in a
system-determined block size.
1. n = blocking factor
2. If you specify BLKSIZE=0, the system will determine the block size.
For variable-length records (RECFM=V), LRECL is the logical record length, and
BLKSIZE equals LRECL plus 4.
Table 37. Block size of variable-length compiler data sets
LRECL BLKSIZE (bytes)
Data set RECFM (bytes) minimum acceptable value
SYSADATA VB 1020 1024
You can place your source code or BASIS statement directly in the input stream. If
you do, use this SYSIN DD statement:
//SYSIN DD *
When you use the DD * convention, the source code or BASIS statement must
follow the statement. If another job step follows the compilation, the EXEC
statement for that step follows the /* statement or the last source statement.
You do not need the SYSLIB DD statement if the NOLIB option is in effect.
You can direct the output to a SYSOUT data set, a printer, a direct-access storage
device, or a magnetic-tape device. The listing includes the results of the default or
requested options of the PARM parameter (that is, diagnostic messages, the object
code listing).
Specify the following for the data set that you define:
v The name of a sequential data set, the name of a PDS or PDSE member, or an
HFS path.
v A data set LRECL of 133.
v A data set RECFM of F or B.
v A block size, using the BLKSIZE subparameter of the DCB parameter, or let the
system set the system-determined default block size.
You can define SYSTERM in various ways, including as a SYSOUT data set, a data
set on disk, a file in the HFS, or to another print class.
Use the DISP parameter of the SYSLIN DD statement to indicate whether the object
code data set is to be:
v Passed to the linkage editor or binder
v Cataloged
v Kept
v Added to an existing cataloged library
In the example above, the data is created and passed to another job step, the
linkage editor or binder job step.
Your installation might use the DECK option and the SYSPUNCH DD statement.
//SYSPUNCH DD SYSOUT=B
You do not need the SYSLIN DD statement if the NOOBJECT option is in effect. You do
not need the SYSPUNCH DD statement if the NODECK option is in effect.
The file defined in the SYSADATA DD statement will be a sequential file containing
specific record types that have information about the program collected during
compilation. The file can be a traditional MVS data set or an HFS file.
RELATED REFERENCES
“ADATA” on page 270
RELATED TASKS
“Compiling OO applications using JCL or TSO/E” on page 261
Specify the following for the data set that you define:
v The name of a sequential data set, the name of a PDS or PDSE member, or an
HFS path.
v A data set LRECL greater than or equal to 80 and less than or equal to 1024. The
default LRECL for SYSDEBUG is 1024.
v A data set RECFM of F or FB.
v A block size, using the BLKSIZE subparameter of the DCB parameter, or let the
system set the system-determined default block size.
The data set name that you provide on SYSDEBUG is used by Language Environment
dump services. You cannot change the name of the data set at run time. If you
want to have a name for this data set that follows the naming conventions for your
production data sets, use that name when you compile your program. You can
direct Debug Tool to a renamed data set.
RELATED REFERENCES
“TEST” on page 306
The compiler recognizes the options in the following order of precedence from
highest to lowest:
1. Installation defaults that are fixed by your site
2. Values of the BUFSIZE, LIB, OUTDD, SIZE, and SQL compiler options in effect for
the first program in a batch
3. Options specified on PROCESS (or CBL) statements, preceding the IDENTIFICATION
DIVISION
4. Options specified on the compiler invocation (JCL PARM parameter or the TSO
CALL command)
5. Installation defaults that are not fixed
This order of precedence also determines which options are in effect when
conflicting or mutually exclusive options are specified.
Most of the options come in pairs; you select one or the other. For example, the
option pair for a cross-reference listing is XREF|NOXREF. If you want a
cross-reference listing, specify XREF. If you do not want one, specify NOXREF.
Some options have subparameters. For example, if you want 44 lines per page on
your listings, specify LINECOUNT(44).
RELATED TASKS
“Specifying compiler options with the PROCESS (CBL) statement”
“Specifying compiler options in a batch compilation” on page 242
RELATED REFERENCES
“Compiler options and compiler output under z/OS” on page 239
“Conflicting compiler options” on page 269
Chapter 17, “Compiler options,” on page 267
CBL
PROCESS options-list
Place the PROCESS statement before the IDENTIFICATION DIVISION header and before
any comment lines or compiler-directing statements.
You can start PROCESS in columns 1 through 66. A sequence field is allowed in
columns 1 through 6. When used with a sequence field, PROCESS can start in
columns 8 through 66. If used, the sequence field must contain six characters, and
the first character must be numeric.
You can use CBL as a synonym for PROCESS. CBL can start in columns 1 through 70.
When used with a sequence field, CBL can start in columns 8 through 70.
Use one or more blanks to separate PROCESS from the first option in options-list.
Separate options with a comma or a blank. Do not insert spaces between
individual options and their suboptions.
You can use more than one PROCESS statement. If multiple PROCESS statements are
used, they must follow one another with no intervening statement of any other
type. You cannot continue options across multiple PROCESS statements.
Your programming organization can inhibit the use of PROCESS statements with the
default options module of the COBOL compiler. When PROCESS statements are
found in a COBOL program where not allowed by the organization, the COBOL
compiler generates error diagnostics.
READY
Listing output from compilation will be in the data set defined by SYSPRINT; object
output will be in SYSLIN or SYSPUNCH. Progress and diagnostic messages can be
directed to the SYSTERM data set as well as included in the SYSPRINT data set.
Associated data file records will be in the data set defined by SYSADATA. The
database request module (DBRM) will be the data set defined in DBRMLIB. The
debug information side file will be the data set defined in SYSDEBUG.
Save the listings you produced during compilation. You can use them during the
testing of your work if you need to debug or tune.
After compilation, your next step will be to fix any errors that the compiler found
in your program.
If no errors are detected, you can go to the next step in the process: link-editing, or
binding, your program. (If you used compiler options to suppress object code
generation, you must recompile to obtain object code.)
RELATED TASKS
Preparing to link-edit and run under Language Environment (Language
Environment Programming Guide)
When you compile several programs as part of a batch job, you need to:
v Determine whether you want to create one or more load modules.
v Terminate each program in the sequence.
v Specify compiler options, with an awareness of the effect of compiler options
specified in programs within the batch job.
To create separate load modules, precede each set of modules with the NAME option.
When the compiler encounters a NAME compiler option, the first program in the
sequence and all subsequent programs are link-edited into a single load module,
until the next NAME compiler option is encountered. Then, each successive program
that is compiled with the NAME option is included in a separate load module.
Use the END PROGRAM marker to terminate each program in the sequence (except the
last program in the batch for which the END PROGRAM marker is optional).
Alternatively, you can precede each program in the sequence with a CBL or PROCESS
statement.
If you omit the END PROGRAM marker from a program (other than the last program
in a sequence of separate programs), the next program in the sequence will be
nested in the preceding program. An error can occur in either of the following
situations:
v A PROCESS statement is in a program that is now nested.
v A CBL statement is not coded entirely in the sequence number area (columns 1
through 6).
If a CBL statement is coded entirely in the sequence number area (columns 1
through 6), no error message is issued for the CBL statement because it is
considered a label for the source statement line.
RELATED TASKS
“Specifying compiler options in a batch compilation” on page 242
RELATED REFERENCES
“NAME” on page 291
RELATED REFERENCES
IBM-supplied cataloged procedures (Language Environment Programming Guide)
You should be aware of the effect of certain compiler options on the precedence of
compiler option settings for each program in the sequence:
1. Installation defaults that are fixed at your site
2. Values of the BUFSIZE, LIB, OUTDD, SIZE, and SQL compiler options in effect for
the first program in the batch
3. Options on CBL or PROCESS statements, if any, for the current program
4. Options specified on the compiler invocation (JCL PARM or TSO CALL)
5. Installation defaults that are not fixed
If any program in the sequence requires the BUF, LIB, OUTDD, SIZE, or SQL option,
that option must be in effect for the first program in the batch sequence. (When
processing BASIS, COPY, or REPLACE statements, the compiler handles all programs
in the batch as a single input file.)
If you specify the LIB option for the batch, you cannot change the NUMBER and
SEQUENCE options during the batch compilation. The compiler treats all programs in
the batch as a single input file during NUMBER and SEQUENCE processing under the
LIB option; therefore, the sequence numbers of the entire input file must be in
ascending order.
If the compiler diagnoses the LANGUAGE option on the CBL or PROCESS statement as
an error, the language selection reverts to what was in effect before the compiler
encountered the first CBL or PROCESS statement. The language in effect during a
batch compilation conforms to the rules of processing CBL or PROCESS statements in
that environment.
INVOCATION PARAMETERS:
NOTERM
PROCESS(CBL) statements:
CBL CURRENCY,FLAG(I,I)
Options in effect: All options are installation defaults unless otherwise noted:
NOADATA
ADV
QUOTE
NOAWO
BUFSIZE(4096)
CURRENCY Process option PROGRAM 1
.
.
FLAG(I,I) Process option PROGRAM 1
.
.
For the program COMPILE1, the default language English (EN) is in effect when
the compiler scans the invocation options. A diagnostic message is issued in
mixed-case English because XX is a nonexistent language identifier. The default EN
remains in effect when the compiler scans the CBL statement. The unrecognized
option APOST in the CBL statement is diagnosed in mixed-case English because the
The program COMPILE3 has no CBL statement. It inherits the language in effect,
Japanese (JP), from the previous compilation.
After compiling COMPILE3, the compiler resets the language in effect to English
(EN) because of the CBL statement. The language option in the CBL statement
resolves the last-specified two-character alphanumeric language identifier, YY.
Because YY is nonexistent, the language in effect remains English.
Although you should try to correct errors, it is not necessary to fix all of them. A
warning-level or informational-level message can be left in a program without
much risk, and you might decide that the recoding and compilation needed to
remove the error are not worth the effort. Severe-level and error-level errors,
however, indicate probable program failure and should be corrected.
After correcting the errors in your source program, recompile the program. If this
second compilation is successful, go on to the link-editing step. If the compiler still
finds problems, repeat the above procedure until only informational messages are
returned.
RELATED TASKS
“Generating a list of compiler error messages” on page 246
RELATED REFERENCES
“Messages and listings for compiler-detected errors” on page 246
Wherever possible, the message provides specific instructions for correcting the
error.
The messages for errors found during processing of compiler options, CBL and
PROCESS statements, or BASIS, COPY, and REPLACE statements are displayed near the
top of your listing.
The messages for compilation errors found in your program (ordered by line
number) are displayed near the end of the listing for each program.
A summary of all errors found during compilation is displayed near the bottom of
your listing.
RELATED TASKS
“Correcting errors in your source program” on page 245
“Generating a list of compiler error messages”
RELATED REFERENCES
“Format of compiler error messages”
“Severity codes for compiler error messages” on page 247
“FLAG” on page 284
Tip: If you used the FLAG option to suppress messages, there might be additional
errors in your program.
RELATED REFERENCES
“Severity codes for compiler error messages”
“FLAG” on page 284
As part of the compilation step, you need to define the files needed for the
compilation and specify any compiler options necessary for your program and for
the output that you want.
The main job of the compiler is to translate your COBOL program into language
that the computer can process (object code). The compiler also lists errors in your
source statements and provides supplementary information to help you debug and
tune your program. Use compiler-directing statements and compiler options to
control your compilation.
RELATED TASKS
“Setting environment variables under UNIX”
“Specifying compiler options under UNIX” on page 250
“Compiling and linking with the cob2 command” on page 251
“Compiling using scripts” on page 255
“Compiling, linking, and running OO applications under UNIX” on page 257
RELATED REFERENCES
“Data sets used by the compiler under z/OS” on page 233
“Compiler options and compiler output under z/OS” on page 239
The value that you assign to an environment variable can include other
environment variables or the variable itself. The values of these variables apply
only when you compile from the shell where you issue the export command. If
you do not set an environment variable, either a default value is applied or the
variable is not defined. The environment variable names must be uppercase.
The environment variables that you can set for use by the compiler are as follows:
COBOPT
Specify compiler options separated by blanks or commas. Separate
suboptions with commas. Blanks at the beginning or the end of the
variable value are ignored. Delimit the list of options with quotation marks
if it contains blanks or characters significant to the UNIX shell. For
example:
export COBOPT=“TRUNC(OPT) XREF”
RELATED TASKS
“Specifying compiler options under UNIX”
“Compiling and linking with the cob2 command” on page 251
“Setting and accessing environment variables” on page 384
RELATED REFERENCES
Chapter 18, “Compiler-directing statements,” on page 317
Chapter 17, “Compiler options,” on page 267
COPY statement (Enterprise COBOL Language Reference)
The order of precedence also determines which options are in effect when
conflicting or mutually exclusive options are specified. When you compile using
the cob2 command, compiler options are recognized in the following order of
precedence from highest to lowest:
1. Installation defaults fixed as nonoverridable
| Restriction: Do not use the SQL option under UNIX. Neither the separate SQL
| precompiler nor the integrated SQL coprocessor run under UNIX.
RELATED TASKS
“Specifying compiler options with the PROCESS (CBL) statement” on page 238
“Setting environment variables under UNIX” on page 249
“Compiling and linking with the cob2 command”
RELATED REFERENCES
“Conflicting compiler options” on page 269
Chapter 17, “Compiler options,” on page 267
To compile multiple files (batch compilation), specify multiple source file names.
When you compile COBOL programs for UNIX, the RENT option is required. The
cob2 command automatically includes the COBOL compiler options RENT and TERM.
The cob2 command invokes the COBOL compiler that is found through the
standard MVS search order. If the COBOL compiler is not installed in the LNKLST,
or if more than one level of IBM COBOL compiler is installed on your system, you
can specify the compiler PDS that you want to use in the STEPLIB environment
variable. For example:
| export STEPLIB=IGY.V3R3M0.SIGYCOMP
The cob2 command implicitly uses the UNIX shell command c89 for the link step.
c89 is the shell interface to the linker (the DFSMS program management binder).
Only files with the .cbl extension are passed to the compiler; cob2 passes all other
files to the linker.
Listing output that you request from the compilation of a COBOL source program
file.cbl is written to file.lst. Listing output that you request from the linker is
written to stdout.
When you specify cob2 -bdll, the link step produces a DLL definition side file.
This file contains IMPORT control statements for each of the names exported by the
DLL. The name of the DLL definition side file is based on the output file name. If
the output name has an extension, that extension is replaced with x to form the
side file name. For example, if the output file name is foo.dll, the side file name is
foo.x.
To use the DLL definition side files later when you create a module that calls the
DLL, specify the side files with any other object files (file.o) that you specify for the
linking. For example:
cob2 -o myappl -qdll myappl.cbl mydll.x
RELATED TASKS
“Compiling programs to create DLLs” on page 426
“Preparing OO applications under UNIX” on page 258
Language Environment Programming Guide
UNIX System Services User’s Guide
RELATED REFERENCES
“cob2” on page 253
“cob2 input and output files” on page 254
“Data sets used by the compiler under z/OS” on page 233
“Compiler options and compiler output under z/OS” on page 239
UNIX System Services Command Reference
cob2 filenames
options
One special value for xxx is dll, which specifies that the executable
module is to be a DLL. It is not passed to the linker.
-c Compiles programs but does not link them.
-comprc_ok=n
Controls cob2 behavior on the return code from the compiler. If the return
code is less than or equal to n, cob2 continues to the link step or, in the
compile-only case, exits with a zero return code. If the return code
returned by the compiler is greater than n, cob2 exits with the same return
code. When the c89 command is implicitly invoked by cob2 for the link
step, the exit value from the c89 command is used as the return code from
the cob2 command.
The default is -comprc_ok=4.
-e xxx Specifies the name of a program to be used as the entry point of the
module. If you do not specify -e, the default entry point is the first
program (file.cbl) or object file (file.o) that you specify as a file name on the
cob2 command invocation.
-g Prepares the program for debugging. Equivalent to specifying the TEST
option with no suboptions.
-Ixxx Adds a path xxx to the directories to be searched for copybooks for which
you do not specify a library-name.
To specify multiple paths, either use multiple -I options, or use a colon to
separate multiple path names within a single -I option value.
For COPY statements where you have not coded an explicit library-name,
the compiler searches for copybooks in this order:
1. In the current directory
If you use the COPY statement, you must ensure that the LIB compiler
option is in effect.
-L xxx Specifies the directory paths to be used to search for archive libraries
specified by the -l operand.
-l xxx Specifies the name of an archive library for the linker. The cob2 command
searches for the name libxxx.a in the directories specified in the -L option,
then in the usual search order. (This option is lowercase “el,” not
uppercase “eye.”)
-o xxx Names the object module xxx. If the -o option is not used, the name of the
object module is a.out.
-qxxx Passes xxx to the compiler, where xxx is a list of compiler options
separated by blanks or commas.
Enclose xxx in quotation marks if a parenthesis is part of the option or
suboption, or if you use blanks to separate options. Do not insert spaces
between -q and xxx.
-v Displays the generated commands that are issued by cob2 for the compile
and link steps, including the options being passed, and executes them. This
is sample output:
cob2 -v -o mini -qssrange mini.cbl
compiler: ATTCRCTL PARM=RENT,TERM,SSRANGE /u/userid/cobol/mini.cbl
PP 5655-G53 IBM Enterprise COBOL for z/OS 3.3.0 in progress ...
End of compilation 1, program mini, no statements flagged.
linker: /bin/c89 -o mini -e // mini.o
-# Displays compile and link steps, but does not execute them.
RELATED TASKS
“Compiling and linking with the cob2 command” on page 251
“Setting environment variables under UNIX” on page 249
When you use the cob2 command, the following files are created in the current
directory:
254 Programming Guide
Table 41. Output files from the cob2 command
File name Description Comments
file Executable module or DLL Created by the linker if you specify the
cob2 option -o file
a.out Executable module or DLL Created by the linker if you do not
specify the cob2 option -o
file.adt Associated data (ADATA) file Created by the compiler if you specify
corresponding to input COBOL the compiler option ADATA
source program file.cbl
file.dbg Symbolic information tables for Created by the compiler if you specify
Debug Tool corresponding to input the compiler option
COBOL source program file.cbl TEST(hook,SYM,SEPARATE)
file.lst Listing file corresponding to input Created by the compiler
COBOL source program file.cbl
file.o Object file corresponding to input Created by the compiler
COBOL source program file.cbl
file.x DLL definition side file Created during the cob2 linking phase
when creating a DLL named file.dll
class.java Java class definition (source) Created when you compile a class
definition
RELATED TASKS
“Compiling and linking with the cob2 command” on page 251
RELATED REFERENCES
“ADATA” on page 270
“TEST” on page 306
UNIX System Services Command Reference
RELATED TASKS
“Compiling, linking, and running OO applications under UNIX”
“Compiling, linking, and running OO applications using JCL or TSO/E” on page
261
RELATED TASKS
“Compiling OO applications under UNIX”
“Preparing OO applications under UNIX” on page 258
“Running OO applications under UNIX” on page 259
To compile COBOL source code that contains OO syntax such as INVOKE statements
or class definitions, or that uses Java services, you must use these compiler
options: RENT, DLL, THREAD, and DBCS. (The RENT and DBCS options are defaults.)
A COBOL source file that contains a class definition must not contain any other
class or program definitions.
When you compile a COBOL class definition, two output files are generated:
v The object file (.o) for the class definition.
v A Java source program (.java) that contains a class definition that corresponds to
the COBOL class definition. Do not edit this generated Java class definition in
any way. If you change the COBOL class definition, you must regenerate both
the object file and the Java class definition by recompiling the updated COBOL
class definition.
If a COBOL client program or class definition includes the JNI.cpy file by using a
COPY statement, specify the include subdirectory of the COBOL install directory
(typically /usr/lpp/cobol/include) in the search order for copybooks. You can do
this by using the -I option of the cob2 command or by setting the SYSLIB
environment variable.
RELATED REFERENCES
“cob2” on page 253
“DBCS” on page 279
“DLL” on page 281
“RENT” on page 299
“THREAD” on page 309
To prepare an OO COBOL client program for execution, link the object file with
the following two DLL side files to create an executable module:
v libjvm.x, which is provided with the IBM Developer Kit for OS/390, Java 2
Technology Edition.
v igzcjava.x, which is provided in the lib subdirectory of the cobol directory in
the HFS. The typical complete path name is /usr/lpp/cobol/lib/igzcjava.x.
This DLL side file is also available as the member IGZCJAVA in the SCEELIB
PDS (part of Language Environment).
To prepare a COBOL class definition for execution, process the following files:
1. Link the object file using the two DLL side files discussed above to create an
executable DLL module.
You must name the resulting DLL module libClassname.so, where Classname is
the external class-name. If the class is part of a package and thus there are
periods in the external class-name, you must change the periods to underscores
in the DLL module name. For example, if class Account is part of the com.acme
package, the external class-name (as defined in the REPOSITORY paragraph entry
for the class) must be com.acme.Account, and the DLL module for the class
must be libcom_acme_Account.so.
2. Compile the generated Java source with the Java compiler to create a class file
(.class).
For a COBOL source file Classname.cbl that contains the class definition for
Classname, you use the following commands to compile and link the components
of the application:
Table 42. Commands for compiling and linking a class definition
Command Input Output
cob2 -c -qdll,thread Classname.cbl Classname.cbl Classname.o
Classname.java
cob2 -bdll -o libClassname.so Classname.o Classname.o libClassname.so
/usr/lpp/java/IBM/J1.3/bin/classic/libjvm.x
/usr/lpp/cobol/lib/igzcjava.x
javac Classname.java Classname.java Classname.class
All files from these commands are generated in the current working directory.
RELATED TASKS
Chapter 15, “Compiling under UNIX,” on page 249
“REPOSITORY paragraph for defining a class” on page 490
RELATED REFERENCES
“cob2” on page 253
The class file Manager.class and the DLL module libManager.so are the executable
components of the application, and are generated in the current working directory.
To customize the initialization of the JVM, specify options on the java command as
in the following examples:
Table 43. java command options for customizing the JVM
Purpose Option
To set a system property -Dname=value
To request that the JVM generate verbose messages about -verbose:gc
garbage collection
To request that the JVM generate verbose messages about class -verbose:class
loading
To request that the JVM generate verbose messages about -verbose:jni
native methods and other Java Native Interface activity
To set the initial Java heap size to value bytes -Xmsvalue
To set the maximum Java heap size to value bytes -Xmxvalue
See the output from the java -h command or the related references for details
about the options that the JVM supports.
Running J2EE COBOL clients: You can use OO syntax in a COBOL program to
implement a Java 2 Platform, Enterprise Edition (J2EE) client. You can, for
example, invoke methods on enterprise beans that run in the WebSphere for z/OS
or OS/390 environment.
RELATED TASKS
Chapter 23, “Running COBOL programs under UNIX,” on page 383
“Setting and accessing environment variables” on page 384
Chapter 30, “Writing object-oriented programs,” on page 485
“Structuring OO applications” on page 524
RELATED REFERENCES
JVM options (New IBM Technology featuring Persistent Reusable Java Virtual Machines)
Java Naming and Directory Interface (JNDI) (WebSphere for z/OS: Assembling J2EE
Applications)
For example, you might follow this approach for applications that consist of a
COBOL main program and subprograms that:
v Access objects that are all implemented in Java
v Access enterprise beans that run in a WebSphere server
RELATED TASKS
“Compiling OO applications using JCL or TSO/E”
“Preparing and running OO applications using JCL or TSO/E” on page 262
“Compiling, linking, and running OO applications under UNIX” on page 257
If the COBOL program or class definition uses the JNI environment structure to
access JNI callable services, copy the file JNI.cpy from the HFS to a PDS or PDSE
member called JNI, identify that library with a SYSLIB DD statement, and use a
COPY statement of the form COPY JNI in the COBOL source program.
A COBOL source file that contains a class definition must not contain any other
class or program definitions.
When you compile a COBOL class definition, a Java source program that contains
a class definition that corresponds to the COBOL class definition is generated in
addition to the object file. Use the SYSJAVA ddname to write the generated Java
source file to a file in the HFS. For example:
Do not edit this generated Java class definition in any way. If you change the
COBOL class definition, you must regenerate both the object file and the Java class
definition by recompiling the updated COBOL class definition.
Compile Java class definitions by using the javac command from a UNIX shell
command prompt, or by using the BPXBATCH utility.
RELATED TASKS
“Compiling with JCL” on page 217
“Compiling under TSO” on page 229
“Specifying source libraries (SYSLIB)” on page 235
“Defining the output Java data set (SYSJAVA)” on page 237
“Accessing JNI services” on page 527
“Compiling OO applications under UNIX” on page 257
“Preparing OO applications under UNIX” on page 258
RELATED REFERENCES
“DBCS” on page 279
“DLL” on page 281
“RENT” on page 299
“THREAD” on page 309
Appendix F, “JNI.cpy,” on page 649
The BPXBATCH utility (UNIX System Services User’s Guide)
When you run an OO application that starts with a COBOL program by using
standard batch JCL or the TSO/E CALL command, follow these guidelines:
v Use the _CEE_ENVFILE environment variable to indicate the location of the file
that contains the environment variable settings required by Java. Set
_CEE_ENVFILE by using the ENVAR run-time option.
v Specify the POSIX(ON) run-time option.
v Use DD statements to specify files in the HFS for the standard input, output, and
error streams for Java:
– JAVAIN DD for the input from statements such as c=System.in.read();
– JAVAOUT DD for the output from statements such as
System.out.println(string);
– JAVAERR DD for the output from statements such as
System.err.println(string);
v Ensure that the SCEERUN2 and SCEERUN load libraries are available in the
system library search order, for example, by using a STEPLIB DD statement.
RELATED TASKS
“Preparing OO applications under UNIX” on page 258
“Running OO applications under UNIX” on page 259
“Structuring OO applications” on page 524
The BPXBATCH utility (UNIX System Services User’s Guide)
Program library definition and search order (Language Environment Programming
Guide)
RELATED REFERENCES
_CEE_ENVFILE (C/C++ Programming Guide)
ENVAR (Language Environment Programming Reference)
HelloJ.java is compiled with the javac command. The resulting .class file resides in
the HFS directory u/userid/ootest/tsthello, which is specified in the CLASSPATH
environment variable in the environment variable settings file.
| (The LIBPATH setting is shown above on two lines because of document length
| limitations, but you must specify the setting on one unbroken line that has no
| internal blanks.)
Compiler options affect the aspects of your program that are listed in the table
below. The linked-to information for each option provides the syntax for specifying
the option and describes the option, its parameters, and its interaction with other
parameters.
Table 44. Compiler options
Aspect of your
program Compiler option Default Abbreviations
Source language “ARITH” on page 271 ARITH(COMPAT) AR(C|E)
“CICS” on page 273 NOCICS None
“CODEPAGE” on page 274 CODEPAGE(01140) CP(ccsid)
“CURRENCY” on page 276 NOCURRENCY CURR|NOCURR
“DBCS” on page 279 DBCS None
“LIB” on page 288 LIB None
“NSYMBOL” on page 291 NSYMBOL(NATIONAL) NS(DBCS|NAT)
“NUMBER” on page 292 NONUMBER NUM|NONUM
“QUOTE/APOST” on page 299 QUOTE Q|APOST
“SEQUENCE” on page 301 SEQUENCE SEQ|NOSEQ
“SQL” on page 303 NOSQL None
“WORD” on page 313 NOWORD WD|NOWD
Date processing “DATEPROC” on page 278 NODATEPROC, or DP|NODP
DATEPROC(FLAG,NOTRIG) if only
DATEPROC is specified
“INTDATE” on page 287 INTDATE(ANSI) None
“YEARWINDOW” on page 315 YEARWINDOW(1900) YW
Maps and listings “LANGUAGE” on page 287 LANGUAGE(ENGLISH) LANG(EN|UE|JA|JP)
“LINECOUNT” on page 289 LINECOUNT(60) LC
“LIST” on page 289 NOLIST None
“MAP” on page 290 NOMAP None
“OFFSET” on page 294 NOOFFSET OFF|NOOFF
“SOURCE” on page 302 SOURCE S|NOS
“SPACE” on page 303 SPACE(1) None
“TERMINAL” on page 305 NOTERMINAL TERM|NOTERM
“VBREF” on page 313 NOVBREF None
“XREF” on page 314 XREF(FULL) X|NOX
Installation defaults: The default options that were set up when your compiler
was installed are in effect for your program unless you override them with other
options. (In some installations, certain compiler options are set up as fixed so that
you cannot override them. If you have problems, see your system administrator.)
To find out the default compiler options in effect, run a test compilation without
specifying any options. The output listing lists the default options specified by
your installation.
RELATED REFERENCES
“Conflicting compiler options”
Chapter 18, “Compiler-directing statements,” on page 317
“Option settings for COBOL 85 Standard conformance”
RELATED TASKS
Chapter 14, “Compiling under z/OS,” on page 217
“Compiling under TSO” on page 229
Chapter 15, “Compiling under UNIX,” on page 249
Chapter 34, “Tuning your program,” on page 579
RELATED REFERENCES
Language Environment Programming Reference
RELATED TASKS
“Specifying compiler options under z/OS” on page 238
“Specifying compiler options in a batch compilation” on page 242
“Specifying compiler options under UNIX” on page 250
ADATA
NOADATA
ADATA
Use ADATA when you want the compiler to create a SYSADATA file, which contains
records of additional compilation information. ADATA is required for remote compile
using an IBM Windows COBOL compiler. On z/OS, this file is written to ddname
SYSADATA. The size of this file generally grows with the size of the associated
program.
You cannot specify ADATA in a PROCESS (CBL) statement. You can specify it only in
one of the following ways:
v On invocation of the compiler using an option list
v On the PARM field of JCL
v As a command option
v As an installation default
RELATED REFERENCES
Appendix G, “COBOL SYSADATA file contents,” on page 655
ADV
ADV
NOADV
ADV has meaning only if you use WRITE . . . ADVANCING in your source code.
With ADV in effect, the compiler adds 1 byte to the record length to account for the
printer control character.
Use NOADV if you have already adjusted your record length to include 1 byte for the
printer control character.
ARITH
COMPAT
ARITH( EXTEND )
RELATED CONCEPTS
Appendix A, “Intermediate results and arithmetic precision,” on page 603
AWO
NOAWO
AWO
With AWO specified, an implicit APPLY WRITE-ONLY clause is activated for all files in
the program that are eligible for this clause. To be eligible, a file must have
physical sequential organization and blocked variable-length records.
RELATED TASKS
“Optimizing buffer and device space” on page 12
nnnnn
BUFSIZE( nnnK )
Use BUFSIZE to allocate an amount of main storage to the buffer for each compiler
work data set. Usually, a large buffer size improves the performance of the
compiler.
If you use both BUFSIZE and SIZE, the amount allocated to buffers is included in
the amount of main storage available for compilation via the SIZE option.
BUFSIZE cannot exceed the track capacity for the device used, nor can it exceed the
maximum allowed by data management services.
CICS
NOCICS
CICS
("CICS-suboption-string")
The CICS compiler option enables the integrated CICS translator capability and
allows specification of CICS options. You must specify the CICS option if your
COBOL source program contains EXEC CICS or EXEC DLI statements, and it has not
been processed by the separate CICS translator.
Use the CICS option to compile CICS programs only. Programs compiled with the
CICS option will not run in a non-CICS environment.
Note that the compiler needs access to CICS Transaction Server Version 2 or later.
Use either quotation marks or single quotation marks to delimit the string of CICS
suboptions.
You can partition a long suboption string into multiple suboption strings on
multiple CBL statements. The CICS suboptions are concatenated in the order of
their appearance. For example:
//STEP1 EXEC IGYWC, . . .
// PARM.COBOL=’CICS(“string1”)’
//COBOL.SYSIN DD *
CBL CICS(’string2’)
CBL CICS(“string3”)
IDENTIFICATION DIVISION.
PROGRAM-ID. DRIVER1.
. . .
The compiler passes the following suboption string to the integrated CICS
translator:
“string1 string2 string3”
The concatenated strings are delimited with single spaces as shown. If multiple
instances of the same CICS option are found, the last specification of each option
prevails. The compiler limits the length of the concatenated CICS suboptions string
to 4 KB.
RELATED CONCEPTS
“Integrated CICS translator” on page 364
RELATED TASKS
“Compiling with the CICS option” on page 362
RELATED REFERENCES
“Conflicting compiler options” on page 269
CODEPAGE
CODEPAGE(ccsid)
The CODEPAGE option specifies the code page used for encoding:
v The contents of alphanumeric and DBCS data items at run time
v Alphanumeric, national, and DBCS literals in the COBOL source program
The CODEPAGE option also specifies the default code page for parsing alphanumeric
XML documents.
The default CCSID 1140 is an equivalent of CCSID 37 (EBCDIC Latin-1, USA) but
includes the Euro symbol.
Important: The conversion image that was configured as part of the Unicode
Conversion Services installation must include support for conversions of the
specified CCSID to and from CCSID 1200. For applications that use object-oriented
syntax, conversions from the specified CCSID to CCSID 1208 must also be
included.
RELATED TASKS
Customizing Unicode support for COBOL (Enterprise COBOL Customization Guide)
COMPILE
S
NOCOMPILE( E )
W
COMPILE
NOCOMPILE
Use the COMPILE option only if you want to force full compilation even in the
presence of serious errors. All diagnostics and object code will be generated. Do
not try to run the object code if the compilation resulted in serious errors: the
results could be unpredictable or an abnormal termination could occur.
Use NOCOMPILE without any suboption to request a syntax check (only diagnostics
produced, no object code).
RELATED REFERENCES
“Messages and listings for compiler-detected errors” on page 246
NOCURRENCY
CURRENCY(literal)
The default currency symbol is the dollar sign ($). You can use the CURRENCY option
to provide an alternate default currency symbol to be used for the COBOL
program.
To change the default currency symbol, use the CURRENCY(literal) option, where
literal is a valid COBOL alphanumeric literal (including a hexadecimal literal)
representing a single character that must not be any of the following:
v Digits zero (0) through nine (9)
v Uppercase alphabetic characters A B C D E G N P R S V X Z, or their lowercase
equivalents
v The space
v Special characters * + - / , . ; ( ) “ = ’
v A figurative constant
v A null-terminated literal
v A DBCS literal
v A national literal
If your program processes only one currency type, you can use the CURRENCY
option as an alternative to the CURRENCY SIGN clause for selecting the currency
symbol you will use in the PICTURE clause of your program. If your program
processes more than one currency type, you should use the CURRENCY SIGN clause
with the WITH PICTURE SYMBOL phrase to specify the different currency sign types.
If you use both the CURRENCY option and the CURRENCY SIGN clause in a program,
the CURRENCY option is ignored. Currency symbols specified in the CURRENCY SIGN
clause or clauses can be used in PICTURE clauses.
When the NOCURRENCY option is in effect and you omit the CURRENCY SIGN clause,
the dollar sign ($) is used as the PICTURE symbol for the currency sign.
Delimiter: You can delimit the CURRENCY option literal with either quotation marks
or single quotation marks, regardless of the QUOTE|APOST compiler option setting.
31
DATA( 24 )
Affects the location of storage for dynamic data areas and other dynamic run-time
storage: either above (DATA(31)) or below (DATA(24)) the 16-MB line. For reentrant
programs, the DATA(24|31) compiler option and the HEAP run-time option control
whether storage for dynamic data areas (such as WORKING-STORAGE and FD record
areas) is obtained from below the 16-MB line or from unrestricted storage. (The
DATA option does not affect the location of LOCAL-STORAGE data; the STACK run-time
option controls that location instead, along with the AMODE of the program. It does
affect the location of local WORKING-STORAGE data.)
When you specify the run-time option HEAP(,,BELOW), the DATA(24|31) compiler
option has no effect; the storage for all dynamic data areas is allocated from below
the 16-MB line. However, with HEAP(,,ANYWHERE) as the run-time option, storage
for dynamic data areas is allocated from below the line if you compiled the
program with the DATA(24) compiler option or from unrestricted storage if you
compiled with the DATA(31) compiler option.
Specify the DATA(24) compiler option for programs running in 31-bit addressing
mode that are passing data arguments to programs in 24-bit addressing mode. This
ensures that the data will be addressable by the called program.
External data and QSAM buffers: The DATA option interacts with other compiler
options and run-time options that affect storage and its addressability. See the
related information for details.
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
Using run-time options (Language Environment Programming Guide)
RELATED REFERENCES
“Allocation of buffers for QSAM files” on page 140
NODATEPROC
DATEPROC
FLAG
( NOFLAG )
NOTRIG
, TRIG
Use the DATEPROC option to enable the millennium language extensions of the
COBOL compiler.
DATEPROC(FLAG)
With DATEPROC(FLAG), the millennium language extensions are enabled, and
the compiler produces a diagnostic message wherever a language element
uses or is affected by the extensions. The message is usually an
information-level or warning-level message that identifies statements that
involve date-sensitive processing. Additional messages that identify errors
or possible inconsistencies in the date constructs might be generated.
Production of diagnostic messages, and their appearance in or after the
source listing, is subject to the setting of the FLAG compiler option.
DATEPROC(NOFLAG)
With DATEPROC(NOFLAG), the millennium language extensions are in effect,
but the compiler does not produce any related messages unless there are
errors or inconsistencies in the COBOL source.
DATEPROC(TRIG)
With DATEPROC(TRIG), the millennium language extensions are enabled, and
the automatic windowing that the compiler applies to operations on
windowed date fields is sensitive to specific trigger or limit values in the
date fields and in other nondate fields that are stored into or compared
with the windowed date fields. These special values represent invalid dates
that can be tested for or used as upper or lower limits.
Performance: The DATEPROC(TRIG) option results in slower-performing code
for windowed date comparisons.
DATEPROC(NOTRIG)
With DATEPROC(NOTRIG), the millennium language extensions are enabled,
and the automatic windowing that the compiler applies to operations on
windowed dates does not recognize any special trigger values in the
operands. Only the value of the year part of dates is relevant to automatic
windowing.
Performance: The DATEPROC(NOTRIG) option is a performance option that
assumes valid date values in windowed date fields.
Usage note: You can specify the FLAG|NOFLAG and TRIG|NOTRIG suboptions in any
order. If you omit either suboption, it defaults to the current setting.
RELATED REFERENCES
“FLAG” on page 284
DBCS
DBCS
NODBCS
Using DBCS causes the compiler to recognize X’0E’ (SO) and X’0F’ (SI) as shift codes
for the double-byte portion of an alphanumeric literal.
With DBCS selected, the double-byte portion of the literal is syntax-checked and the
literal remains category alphanumeric.
RELATED REFERENCES
“Conflicting compiler options” on page 269
DECK
NODECK
DECK
DIAGTRUNC
NODIAGTRUNC
DIAGTRUNC
The diagnostic message is also issued for implicit moves associated with
statements such as these:
v INITIALIZE
v READ . . . INTO
v RELEASE . . . FROM
v RETURN . . . INTO
v REWRITE . . . FROM
v WRITE . . . FROM
The diagnostic is also issued for moves to numeric receivers from alphanumeric
data-names or literal senders, except when the sending field is reference modified.
There is no diagnostic for COMP-5 receivers, nor for binary receivers when you
specify the TRUNC(BIN) option.
RELATED CONCEPTS
“Formats for numeric data” on page 40
“Reference modifiers” on page 94
RELATED REFERENCES
“TRUNC” on page 310
NODLL
DLL
Use DLL to instruct the compiler to generate an object module that is enabled for
dynamic link library (DLL) support. DLL enablement is required if the program
will be part of a DLL, will reference DLLs, or if the program contains
object-oriented COBOL syntax such as INVOKE statements or class definitions.
Specification of the DLL option requires that the RENT linkage-editor or binder
option also be used.
NODLL instructs the compiler to generate an object module that is not enabled for
DLL usage.
RELATED REFERENCES
“Conflicting compiler options” on page 269
DUMP
NODUMP
DUMP
Not for general use: The DUMP option should be used only at the request of an IBM
representative.
Use DUMP to produce a system dump at compile time for an internal compiler error.
The dump, which consists of a listing of the compiler’s registers and a storage
dump, is intended primarily for diagnostic personnel for determining errors in the
compiler.
If you use the DUMP option, include a DD statement at compile time to define
SYSABEND, SYSUDUMP, or SYSMDUMP.
Using the DUMP and OPTIMIZE compiler options together could cause the compiler to
produce a system dump instead of the following optimizer message:
“IGYOP3124-W This statement may cause a program exception at
execution time.”
This situation is not a compiler error. Using the NODUMP option will allow the
compiler to issue message IGYOP3124-W and continue processing.
RELATED TASKS
Understanding abend codes (Language Environment Debugging Guide)
RELATED REFERENCES
“Conflicting compiler options” on page 269
DYNAM
NODYNAM
DYNAM
Use DYNAM to cause nonnested, separately compiled programs invoked through the
CALL literal statement to be loaded (for CALL) and deleted (for CANCEL) dynamically
at run time. CALL identifier statements always result in a run-time load of the target
program and are not impacted by this option.
Restriction: The DYNAM compiler option must not be used by programs that are
translated by the CICS translator.
RELATED TASKS
“Making both static and dynamic calls” on page 401
RELATED REFERENCES
“Conflicting compiler options” on page 269
EXIT
For information about the EXIT compiler option, see the first reference below.
RELATED REFERENCES
Appendix E, “EXIT compiler option,” on page 635
“Conflicting compiler options” on page 269
EXPORTALL
NOEXPORTALL
EXPORTALL
With these symbols exported from the DLL, the exported program and entry-point
names can be called from programs in the root load module or in other DLL load
modules in the application, as well as from programs that are linked into the same
DLL.
Specification of the EXPORTALL option requires that the RENT linker option also be
used.
NOEXPORTALL instructs the compiler to not export any symbols. In this case the
programs are accessible only from other routines that are link-edited into the same
load module together with this COBOL program definition.
RELATED REFERENCES
“Conflicting compiler options” on page 269
NOFASTSRT
FASTSRT
FASTSRT allows IBM DFSORT, or its equivalent, to perform the input and output
instead of COBOL.
RELATED TASKS
“Improving sort performance with FASTSRT” on page 193
FLAG
FLAG(x )
,y
NOFLAG
Error messages in the source listing are set off by embedding the statement
number in an arrow that points to the message code. The message code is then
followed by the message text. For example:
Use NOFLAG to suppress error flagging. NOFLAG will not suppress error messages for
compiler options.
Embedded messages
v Specifying embedded level-U messages is accepted, but will not produce any
messages in the source. Embedding a level-U message is not recommended.
v The FLAG option does not affect diagnostic messages produced before the
compiler options are processed.
v Diagnostic messages produced during processing of compiler options, CBL and
PROCESS statements, or BASIS, COPY, and REPLACE statements are never embedded
in the source listing. All such messages appear at the beginning of the compiler
output.
v Messages produced during processing of the *CONTROL (*CBL) statement are not
embedded in the source listing.
RELATED REFERENCES
“Messages and listings for compiler-detected errors” on page 246
FLAGSTD
NOFLAGSTD
FLAGSTD(x )
yy ,O
Use FLAGSTD to get informational messages about the COBOL 85 Standard elements
included in your program. You can specify any of the following items for flagging:
v A selected Federal Information Processing Standard (FIPS) COBOL subset
v Any of the optional modules
v Obsolete language elements
v Any combination of subset and optional modules
v Any combination of subset and obsolete elements
v IBM extensions (these are flagged any time FLAGSTD is specified, and identified
as “nonconforming nonstandard”)
The informational messages appear in the source program listing, and identify:
v The element as “obsolete,” “nonconforming standard,” or “nonconforming
nonstandard” (a language element that is both obsolete and nonconforming is
flagged as obsolete only)
v The clause, statement, or header that contains the element
v The source program line and beginning location of the clause, statement, or
header that contains the element
v The subset or optional module to which the element belongs
In the following example, the line number and column where a flagged clause,
statement, or header occurred are shown, as well as the message code and text. At
the bottom is a summary of the total of the flagged items and their type.
3 1 1 1
RELATED REFERENCES
“Conflicting compiler options” on page 269
ANSI
INTDATE( LILIAN )
INTDATE(ANSI) instructs the compiler to use the Standard COBOL 85 starting date
for integer dates used with date intrinsic functions. Day 1 is Jan 1, 1601.
With INTDATE(LILIAN), the date intrinsic functions return results compatible with
the Language Environment date callable services.
Usage note: When INTDATE(LILIAN) is in effect, CEECBLDY is not usable since you
have no way to turn an ANSI integer into a meaningful date using either intrinsic
functions or callable services. If you code a CALL literal statement with CEECBLDY
as the target of the call with INTDATE(LILIAN) in effect, the compiler diagnoses this
and converts the call target to CEEDAYS.
LANGUAGE
LANGUAGE(name)
Use the LANGUAGE option to select the language in which compiler output will be
printed. The information that will be printed in the selected language includes
diagnostic messages, source listing page and scale headers, FIPS message headers,
message summary headers, compilation summary, and headers and notations that
result from the selection of certain compiler options (MAP, XREF, VBREF, and
FLAGSTD).
name specifies the language for compiler output messages. Possible values for the
LANGUAGE option are shown in the table.
1. If your installation’s system programmer has provided a language other than those
described, you must specify at least the first two characters of this other language’s
name.
2. To specify a language other than UENGLISH, the appropriate language feature must be
installed.
NATLANG: The NATLANG run-time option allows you to control the national language
to be used for the run-time environment, including error messages, month names,
and day-of-the-week names. The LANGUAGE compiler option and the NATLANG
run-time option act independently of each other. You can use them together with
neither taking precedence over the other.
LIB
NOLIB
LIB
If your program uses COPY, BASIS, or REPLACE statements, the LIB compiler option
must be in effect. In addition, for COPY and BASIS statements, you need to define
the library or libraries from which the compiler can take the copied code. Define
the libraries with DD statements, ALLOCATE commands, or environment variables, as
appropriate for your environment. When using JCL, also include a DD statement to
allocate SYSUT5.
RELATED REFERENCES
Chapter 18, “Compiler-directing statements,” on page 317
“Conflicting compiler options” on page 269
LINECOUNT(nnn)
Abbreviations are: LC
If you specify LINECOUNT(0), no page ejects are generated in the compilation listing.
The compiler uses three lines of nnn for titles. For example, if you specify
LINECOUNT(60), 57 lines of source code are printed on each page of the output
listing.
LIST
NOLIST
LIST
RELATED TASKS
“Getting listings” on page 331
RELATED REFERENCES
“Conflicting compiler options” on page 269
*CONTROL (*CBL) statement (Enterprise COBOL Language Reference)
MAP
NOMAP
MAP
Use the MAP compiler option to produce a listing of the items defined in the DATA
DIVISION. The output includes the following:
v DATA DIVISION map
v Global tables
v Literal pools
v Nested program structure map, and program attributes
v Size of the program’s WORKING-STORAGE and LOCAL-STORAGE and its location in the
object code if the program is compiled with the NORENT option
If you want to limit the MAP output, use *CONTROL MAP or NOMAP statements in the
DATA DIVISION. Source statements following a *CONTROL NOMAP are not included in
the listing until a *CONTROL MAP statement switches the output back to normal MAP
format. For example:
*CONTROL NOMAP *CBL NOMAP
01 A 01 A
02 B 02 B
*CONTROL MAP *CBL MAP
By selecting the MAP option, you can also print an embedded MAP report in the
source code listing. The condensed MAP information is printed to the right of
data-name definitions in the FILE SECTION, LOCAL-STORAGE SECTION, and LINKAGE
SECTION of the DATA DIVISION. When both XREF data and an embedded MAP
summary are on the same line, the embedded summary is printed first.
RELATED CONCEPTS
Chapter 19, “Debugging,” on page 321
RELATED REFERENCES
*CONTROL (*CBL) statement (Enterprise COBOL Language Reference)
NAME
NONAME
NAME
NOALIAS
( ALIAS )
Use NAME to generate a link-edit NAME card for each object module. You can also use
NAME to generate names for each load module when doing batch compilations.
When NAME is specified, a NAME card is appended to each object module that is
created. Load module names are formed using the rules for forming module names
from PROGRAM-ID statements.
The NAME or NAME(ALIAS) options cannot be used when compiling programs that
will be prelinked with the Language Environment prelinker.
RELATED REFERENCES
PROGRAM-ID paragraph (Enterprise COBOL Language Reference)
NSYMBOL
NATIONAL
NSYMBOL( DBCS )
The NSYMBOL option controls the interpretation of the N symbol used in literals and
PICTURE clauses, indicating whether national or DBCS processing is assumed.
With NSYMBOL(DBCS):
v Data items defined with the PICTURE clause consisting only of the symbol N
without the USAGE clause are treated as if the USAGE DISPLAY-1 clause is specified.
v Literals of the form N“. . .” or N’. . .’ are treated as DBCS literals.
The NSYMBOL(DBCS) option provides compatibility with the previous releases of IBM
COBOL, and the NSYMBOL(NATIONAL) option makes the handling of the above
language elements consistent with the 2002 COBOL standard in this regard.
RELATED REFERENCES
“Conflicting compiler options” on page 269
NUMBER
NONUMBER
NUMBER
Use the NUMBER compiler option if you have line numbers in your source code and
want those numbers to be used in error messages and SOURCE, MAP, LIST, and XREF
listings.
If you request NUMBER, the compiler checks columns 1 through 6 to make sure that
they contain only numbers and that the numbers are in numeric collating
sequence. (In contrast, SEQUENCE checks the characters in these columns according
to EBCDIC collating sequence.) When a line number is found to be out of
sequence, the compiler assigns to it a line number with a value one higher than the
line number of the preceding statement. The compiler flags the new value with
two asterisks and includes in the listing a message indicating an out-of-sequence
error. Sequence-checking continues with the next statement, based on the newly
assigned value of the previous line.
If you use COPY statements and NUMBER is in effect, be sure that your source
program line numbers and the copybook line numbers are coordinated.
If you are doing a batch compilation and LIB and NUMBER are in effect, all programs
in the batch compile will be treated as a single input file. The sequence numbers of
the entire input file must be in ascending order.
NUMPROC
NOPFD
NUMPROC( PFD )
MIG
Use NUMPROC(NOPFD) if you want the compiler to perform invalid sign processing.
This option is not as efficient as NUMPROC(PFD); object code size will be increased,
and there could be an increase in run-time overhead to validate all signed data.
External decimal, unsigned: High-order 4 bits of the sign byte contain X’F’.
External decimal, signed overpunch: High-order 4 bits of the sign byte contain
X’C’ if the number is positive or 0, and X’D’ if it is not.
External decimal, separate sign: Separate sign contains the character ’+’ if the
number is positive or 0, and ’-’ if it is not.
Internal decimal, unsigned: Low-order 4 bits of the low-order byte contain X’F’.
Internal decimal, signed: Low-order 4 bits of the low-order byte contain X’C’ if the
number is positive or 0, and X’D’ if it is not.
Using NUMPROC(PFD) can affect class tests for numeric data. You should use
NUMPROC(NOPFD) or NUMPROC(MIG) if a COBOL program calls programs written in
PL/I or FORTRAN.
Sign representation is affected not only by the NUMPROC option, but also by the
installation-time option NUMCLS.
RELATED TASKS
“Checking for incompatible data (numeric class test)” on page 46
RELATED REFERENCES
“Sign representation and processing” on page 45
OBJECT
OBJECT
NOOBJECT
Use OBJECT to place the generated object code on disk or tape to be later used as
input for the linkage editor or binder.
If you specify OBJECT, include a SYSLIN DD statement in your JCL for compilation.
The only difference between DECK and OBJECT is in the routing of the data sets:
v DECK output goes to the data set associated with ddname SYSPUNCH.
v OBJECT output goes to the data set associated with ddname SYSLIN.
RELATED REFERENCES
“Conflicting compiler options” on page 269
OFFSET
NOOFFSET
OFFSET
Use OFFSET to produce a condensed PROCEDURE DIVISION listing. With OFFSET, the
condensed PROCEDURE DIVISION listing will contain line numbers, statement
references, and the location of the first instruction generated for each statement. In
addition, the following are produced:
v Global tables
v Literal pools
v Size of the program’s working storage, and its location in the object code if the
program is compiled with the NORENT option
RELATED REFERENCES
“Conflicting compiler options” on page 269
OPTIMIZE
NOOPTIMIZE
OPTIMIZE
STD
( FULL )
Use OPTIMIZE to reduce the run time of your object program. Optimization might
also reduce the amount of storage your object program uses. Because OPTIMIZE
increases compile time and can change the order of statements in your program,
you should not use it when debugging.
The FULL suboption requests that, in addition to the optimizations performed with
OPT(STD), the compiler discard unreferenced data items from the DATA DIVISION
and suppress generation of code to initialize these data items to the values in their
VALUE clauses. When OPT(FULL) is in effect, all unreferenced 77-level items and
elementary 01-level items are discarded. In addition, 01-level group items are
discarded if none of their subordinate items are referenced. The deleted items are
shown in the listing. If the MAP option is in effect, a BL number of XXXXX in the data
map information indicates that the data item was discarded.
Unused data items: Do not use OPT(FULL) if your programs depend on making use
of unused data items. In the past, this was commonly done in two ways:
v A technique sometimes used in old OS/VS COBOL programs was to place an
unreferenced table after a referenced table and use out-of-range subscripts on the
first table to access the second table. To see if your programs use this technique,
use the SSRANGE compiler option with the CHECK(ON) run-time option. To work
around this problem, use the ability of newer COBOL to code large tables and
use just one table.
The OPTIMIZE option is turned off in the case of a severe-level error or higher.
RELATED CONCEPTS
“Optimization” on page 586
RELATED REFERENCES
“Conflicting compiler options” on page 269
OUTDD
OUTDD(ddname)
Use OUTDD to specify that you want DISPLAY output that is directed to the system
logical output device to go to a specific ddname. Note that you can specify a file in
the hierarchical file system (HFS) with the ddname named in OUTDD. See the
discussion of the DISPLAY statement for defaults and for behavior when this
ddname is not allocated.
The MSGFILE run-time option allows you to specify the ddname of the file to which
all run-time diagnostics and reports generated by the RPTOPTS and RPTSTG run-time
options are written. The IBM-supplied default is MSGFILE(SYSOUT). If the OUTDD
compiler option and the MSGFILE run-time option both specify the same ddname,
the error message information and DISPLAY output directed to the system logical
output device are routed to the same destination.
RELATED TASKS
“Displaying values on a screen or in a file (DISPLAY)” on page 30
RELATED REFERENCES
MSGFILE (Language Environment Programming Reference)
COMPAT
PGMNAME( LONGMIXED )
LONGUPPER
The PGMNAME option controls the handling of names used in the following contexts:
v Program-names defined in the PROGRAM-ID paragraph
v Program entry point names on the ENTRY statement
v Program-name references in:
– Calls to nested programs
– Static calls to separately compiled programs
– Static SET procedure-pointer TO ENTRY literal statement
– Static SET function-pointer TO ENTRY literal statement
– CANCEL of a nested program
PGMNAME(COMPAT)
With PGMNAME(COMPAT), program-names are handled in a manner compatible with
older versions of COBOL compilers, namely:
v The program-name can be up to 30 characters in length.
v All the characters used in the name must be alphabetic, digits, or the hyphen,
except that if the program-name is entered in the literal format and is in the
outermost program, then the literal can also contain the extension characters @,
#, and $.
v At least one character must be alphabetic.
v The hyphen cannot be used as the first or last character.
Nested-program names are folded to uppercase by the compiler but otherwise are
processed as is, without truncation or translation.
PGMNAME(LONGMIXED)
With PGMNAME(LONGMIXED), program-names are processed as is, without truncation,
translation, or folding to uppercase.
The literal used for a program-name (in any of the contexts listed above as affected
by the PGMNAME option) can contain any character in the range X’41’-X’FE’.
Usage notes
v The following are not affected by the PGMNAME option:
– Class-names and method-names.
– System-names (assignment-names in SELECT . . . ASSIGN, and text-names or
library-names on COPY statements).
– Dynamic calls. Dynamic calls are resolved with the target program-name
truncated to eight characters, folded to uppercase, and translation of
embedded hyphens or a leading digit.
– CANCEL of nonnested programs. Name resolution uses the same mechanism as
for a dynamic call.
v The PGMNAME option does affect nested-program calls and static calls to programs
that are linked together with the caller.
v Dynamic calls are not permitted to COBOL programs compiled with the
PGMNAME(LONGMIXED) or PGMNAME(LONGUPPER) options unless the program-name is
QUOTE/APOST
QUOTE
APOST
Use QUOTE if you want the figurative constant [ALL] QUOTE or [ALL] QUOTES to
represent one or more quotation mark (“) characters.
Use APOST if you want the figurative constant [ALL] QUOTE or [ALL] QUOTES to
represent one or more single quotation mark (’) characters.
Delimiters: You can use either quotation marks or single quotation marks as literal
delimiters regardless of whether the APOST or QUOTE option is in effect. The
delimiter character used as the opening delimiter for a literal must be used as the
closing delimiter for that literal.
RENT
RENT
NORENT
RENT also affects the RMODE (residency mode) of your generated object program. All
Enterprise COBOL programs are AMODE ANY.
DATA: The setting of the DATA option does not affect programs compiled with
NORENT.
CICS: You must use RENT for programs to be run under CICS.
UNIX: You must use RENT for programs to be run in the UNIX environment.
Link-edit considerations: If all programs in a load module are compiled with RENT,
it is recommended that the load module be link-edited with the RENT linkage-editor
or binder option. (Use the REUS linkage-editor or binder option instead if the load
module will also contain any non-COBOL programs that are serially reusable.)
If any program in a load module is compiled with NORENT, the load module must
not be link-edited with the RENT or REUS link-edit attributes. The NOREUS
linkage-editor or binder option is needed to ensure that the CANCEL statement will
guarantee a fresh copy of the program on a subsequent CALL.
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
Using reentrant code (IBM DB2 Application Programming and SQL Guide)
RELATED REFERENCES
“Conflicting compiler options” on page 269
RMODE
AUTO
RMODE( 24 )
ANY
The RMODE option setting influences the RMODE (residency mode) of your generated
object program.
A program compiled with the RMODE(24) option will have RMODE 24 whether NORENT
or RENT is specified.
A program compiled with the RMODE(ANY) option will have RMODE ANY whether
NORENT or RENT is specified.
DATA and RENT: The RMODE option interacts with other compiler options and
run-time options that affect storage and its addressability. See the related concepts
for information about passing data between programs with different modes.
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED REFERENCES
“Allocation of buffers for QSAM files” on page 140
“Conflicting compiler options” on page 269
SEQUENCE
SEQUENCE
NOSEQUENCE
When you use SEQUENCE, the compiler examines columns 1 through 6 of your
source statements to check that the statements are arranged in ascending order
according to their EBCDIC collating sequence. The compiler issues a diagnostic
message if any statements are not in ascending sequence (source statements with
blanks in columns 1 through 6 do not participate in this sequence check and do
not result in messages).
If you use COPY statements and SEQUENCE is in effect, be sure that your source
program sequence fields and the copybook sequence fields are coordinated.
If you use NUMBER and SEQUENCE, the sequence is checked according to numeric,
rather than EBCDIC, collating sequence.
If you are doing a batch compilation and LIB and SEQUENCE are in effect, all
programs in the batch compile will be treated as a single input file. The sequence
numbers of the entire input file must be in ascending order.
MAX
SIZE( nnnnn )
nnnK
Abbreviations are: SZ
Use SIZE to indicate the amount of main storage available for compilation.
MAX requests the largest available block of storage in the user region for use during
compilation.
Do not use SIZE(MAX) if, when you invoke the compiler, you require it to leave a
| specific amount of unused storage available in the user region. For example, if you
| are using the CICS or SQL compiler option, use a value such as SIZE(4000K), which
| should work for most programs. If you compile in 31-bit mode and specify
SIZE(MAX), the compiler uses storage as follows:
v Above the 16-MB line: all the storage in the user region
v Below the 16-MB line: storage for:
– Work file buffers
– Compiler modules that must be loaded below the line
SOURCE
SOURCE
NOSOURCE
Use SOURCE to get a listing of your source program. This listing will include any
statements embedded by PROCESS or COPY statements.
You must specify SOURCE if you want embedded messages in the source listing.
If you want to limit the SOURCE output, use *CONTROL SOURCE or NOSOURCE
statements in your PROCEDURE DIVISION. Your source statements following a
*CONTROL NOSOURCE are not included in the listing at all, unless a *CONTROL SOURCE
statement switches the output back to normal SOURCE format.
RELATED REFERENCES
*CONTROL (*CBL) statement (Enterprise COBOL Language Reference)
SPACE
1
SPACE( 2 )
3
Use SPACE to select single-, double-, or triple-spacing in your source code listing.
SPACE has meaning only when the SOURCE compiler option is in effect.
RELATED REFERENCES
“SOURCE” on page 302
SQL
NOSQL
SQL
("DB2-suboption-string")
Use the SQL compiler option to enable the DB2 coprocessor capability and to
specify DB2 suboptions. You must specify the SQL option if your COBOL source
program contains SQL statements and it has not been processed by the DB2
precompiler.
If you specify the NOSQL option, any SQL statements found in the source program
are diagnosed and discarded.
Use either quotation marks or single quotation marks to delimit the string of DB2
suboptions.
You can partition a long suboption string into multiple suboption strings on
multiple CBL statements. The DB2 suboptions are concatenated in the order of their
appearance. For example:
//STEP1 EXEC IGYWC, . . .
// PARM.COBOL=’SQL(“string1”)’
//COBOL.SYSIN DD *
CBL SQL(“string2”)
CBL SQL(’string3’)
IDENTIFICATION DIVISION.
PROGRAM-ID. DRIVER1.
. . .
The compiler passes the following suboption string to the DB2 coprocessor:
“string1 string2 string3”
The concatenated strings are delimited with single spaces as shown. If multiple
instances of the same DB2 option are found, the last specification of each option
prevails. The compiler limits the length of the concatenated DB2 suboptions string
to 4 KB.
RELATED TASKS
“Compiling with the SQL option” on page 373
RELATED REFERENCES
“Conflicting compiler options” on page 269
SSRANGE
NOSSRANGE
SSRANGE
Use SSRANGE to generate code that checks if subscripts (including ALL subscripts) or
indexes try to reference an area outside the region of the table. Each subscript or
index is not individually checked for validity; rather, the effective address is
Remember: You will get range checking only if you compile your program with
the SSRANGE option and run it with the CHECK(ON) run-time option.
RELATED CONCEPTS
“Reference modifiers” on page 94
TERMINAL
NOTERMINAL
TERMINAL
Use TERMINAL to send progress and diagnostic messages to the ddname SYSTERM.
NOTEST
TEST
ALL ,SYM ,NOSEPARATE
( NONE )
BLOCK ,SEPARATE
PATH ,NOSYM
STMT ,NOSEPARATE
Use TEST to produce object code that enables Debug Tool to perform batch and
interactive debugging. The amount of debugging support available depends on
which TEST suboptions you use. The TEST option also allows you to request that
symbolic variables be included in the formatted dump produced by Language
Environment.
Use NOTEST if you do not want to generate object code with debugging information
and do not want the formatted dump to include symbolic variables.
TEST has three suboptions. You can specify any combination of suboptions (one,
two, or all), but you can specify SEPARATE only when SYM is in effect.
When you invoke the COBOL compiler from JCL or from TSO and you specify
TEST(. . .,SYM,SEPARATE), the symbolic debug information tables are written to
the data set that is specified in the SYSDEBUG DD statement. The SYSDEBUG DD
statement must specify the name of a sequential data set, the name of a PDS or
PDSE member, or an HFS path. The data set LRECL must be greater than or equal
to 80, and less than or equal to 1024. The default LRECL for SYSDEBUG is 1024. The
data set RECFM can be F or FB. You can set the block size by using the BLKSIZE
subparameter of the DCB parameter, or leave it to the system to set the
system-determined default block size.
When you invoke the COBOL compiler from the UNIX shell and you specify
TEST(. . .,SYM,SEPARATE), the symbolic debug information tables are written to
file.dbg in the current directory, where file is the name of the COBOL source file.
Language Environment: The TEST option can improve your formatted dumps from
Language Environment in two ways:
v Use the TEST option (with any suboptions) to have line numbers in the dump
that indicate the failing statement, rather than just an offset.
v Use the SYM suboption of TEST to have the values of the program variables listed
in the dump.
With NOTEST, the dump will not have program variables and will not have a line
number for the failing statement.
SEPARATE suboption and Language Environment: For programs that are compiled
with the SEPARATE suboption of TEST, Language Environment gets the data set
name for the separate file (which is stored in DD SYSDEBUG by the compiler) from
the object program. You cannot change the name of the data set at run time. Use
the same data set name for SYSDEBUG at compile time that you want Language
Environment to use at run time.
RELATED CONCEPTS
Considerations for setting TERMTHDACT options (Language Environment
Debugging Guide)
RELATED TASKS
“Defining the debug data set (SYSDEBUG)” on page 237
Generating a dump (Language Environment Debugging Guide)
Invoking Debug Tool using the run-time TEST option (Debug Tool User’s Guide)
THREAD
NOTHREAD
THREAD
A program that has been compiled with the THREAD option can also be used in a
nonthreaded application. However, when a COBOL program is to be executed in a
threaded application, all the COBOL programs in the Language Environment
enclave must be compiled with the THREAD option.
NOTHREAD indicates that the COBOL program is not to be enabled for execution in
an enclave with multiple POSIX threads or PL/I tasks.
Programs compiled with compilers earlier than Enterprise COBOL are treated as
compiled with NOTHREAD.
When the THREAD option is in effect, the following language elements are not
supported. If encountered, they are diagnosed as errors:
v ALTER statement
v DEBUG-ITEM special register
v GO TO statement without procedure-name
v RERUN
v STOP literal statement
v Segmentation module
v USE FOR DEBUGGING statement
v INITIAL phrase in PROGRAM-ID clause
v Nested programs
v SORT or MERGE statements
Performance: With the THREAD option, you can anticipate some run-time
performance degradation due to the overhead of serialization logic that is
automatically generated.
RELATED TASKS
Chapter 27, “Preparing COBOL programs for multithreading,” on page 437
RELATED REFERENCES
“Conflicting compiler options” on page 269
TRUNC
STD
TRUNC( OPT )
BIN
TRUNC has no effect on COMP-5 data items; COMP-5 items are handled as if
TRUNC(BIN) were in effect regardless of the TRUNC suboption specified.
TRUNC(STD)
Use TRUNC(STD) to control the way arithmetic fields are truncated during
MOVE and arithmetic operations. TRUNC(STD) applies only to USAGE BINARY
receiving fields in MOVE statements and arithmetic expressions. When
TRUNC(STD) is in effect, the final result of an arithmetic expression, or the
sending field in the MOVE statement, is truncated to the number of digits in
the PICTURE clause of the BINARY receiving field.
TRUNC(OPT)
TRUNC(OPT) is a performance option. When TRUNC(OPT) is in effect, the
compiler assumes that data conforms to PICTURE specifications in USAGE
BINARY receiving fields in MOVE statements and arithmetic expressions. The
results are manipulated in the most optimal way, either truncating to the
number of digits in the PICTURE clause, or to the size of the binary field in
storage (halfword, fullword, or doubleword).
Tips:
v Use the TRUNC(OPT) option only if you are sure that the data being
moved into the binary areas will not have a value with larger precision
Large literals in VALUE clauses: When you use the compiler option
TRUNC(BIN), numeric literals specified in VALUE clauses for binary data
items (COMP, COMP-4, or BINARY) can generally contain a value of magnitude
up to the capacity of the native binary representation (2, 4, or 8 bytes)
rather than being limited to the value implied by the number of 9s in the
PICTURE clause.
The following table shows values of the data items after the MOVE:
A halfword of storage is allocated for BIN-VAR. The result of this MOVE statement if
the program is compiled with the TRUNC(STD) option is 51; the field is truncated to
conform to the PICTURE clause.
If you compile the program with TRUNC(BIN), the result of the MOVE statement is
-7621. The reason for the unusual result is that nonzero high-order digits are
truncated. Here, the generated code sequence would merely move the lower
halfword quantity X’E23B’ to the receiver. Because the new truncated value
overflows into the sign bit of the binary halfword, the value becomes a negative
number.
It is better not to compile this MOVE statement with TRUNC(OPT), because 123451 has
greater precision than the PICTURE clause for BIN-VAR. With TRUNC(OPT), the results
are again -7621. This is because the best performance was gained by not doing a
decimal truncation.
TRUNC example 2
01 BIN-VAR PIC 9(6) USAGE BINARY
. . .
MOVE 1234567891 to BIN-VAR
The following table shows values of the data items after the MOVE:
When you specify TRUNC(STD), the sending data is truncated to six integer digits to
conform to the PICTURE clause of the BINARY receiver.
When you specify TRUNC(OPT), the compiler assumes the sending data is not larger
than the PICTURE clause precision of the BINARY receiver. The most efficient code
sequence in this case is truncation as if TRUNC(STD) were in effect.
When you specify TRUNC(BIN), no truncation occurs because all of the sending data
fits into the binary fullword allocated for BIN-VAR.
RELATED TASKS
“Compiling with the CICS option” on page 362
RELATED REFERENCES
VALUE clause (Enterprise COBOL Language Reference)
VBREF
NOVBREF
VBREF
Use VBREF to get a cross-reference among all verb types used in the source program
and the line numbers in which they are used. VBREF also produces a summary of
how many times each verb was used in the program.
WORD
NOWORD
WORD(xxxx)
xxxx specifies the ending characters of the name of the reserved-word table
(IGYCxxxx) to be used in your compilation. IGYC are the first four standard
characters of the name, and xxxx can be one to four characters in length.
RELATED TASKS
“Compiling with the CICS option” on page 362
RELATED REFERENCES
“Conflicting compiler options” on page 269
XREF
XREF
FULL
( SHORT )
NOXREF
You can choose XREF, XREF(FULL), or XREF(SHORT). If you specify XREF without any
suboptions, XREF(FULL) is in effect.
Also included is a section listing all the program-names that are referenced in your
program, and the line number where they are defined. External program-names are
identified.
If you use XREF and SOURCE, cross-reference information is printed on the same line
as the original source in the listing. Line number references or other information
appears on the right-hand side of the listing page. On the right of source lines that
reference an intrinsic function, the letters IFN are printed with the line numbers of
the location where the function arguments are defined. Information included in the
embedded references lets you know if an identifier is undefined or defined more
than once (UND or DUP, respectively), if items are implicitly defined (IMP) (such as
special registers or figurative constants), or if a program-name is external (EXT).
XREF(SHORT) prints only the explicitly referenced data items in the cross-reference
listing. XREF(SHORT) applies to DBCS data-names and procedure-names as well as
to single-byte names.
Usage notes
v Group names used in a MOVE CORRESPONDING statement are in the XREF listing. In
addition, the elementary names in those groups are also listed.
v In the data-name XREF listing, line numbers preceded by the letter M indicate that
the data item is explicitly modified by a statement on that line.
v XREF listings take additional storage.
RELATED CONCEPTS
Chapter 19, “Debugging,” on page 321
RELATED TASKS
“Getting listings” on page 331
RELATED REFERENCES
COBOL compiler options (Language Environment Debugging Guide)
YEARWINDOW
YEARWINDOW(base-year)
Abbreviation is: YW
Use the YEARWINDOW option to specify the first year of the 100-year window (the
century window) to be applied to windowed date field processing by the COBOL
compiler.
base-year represents the first year of the 100-year window, and must be specified as
one of the following:
v An unsigned decimal number between 1900 and 1999.
This specifies the starting year of a fixed window. For example,
YEARWINDOW(1930) indicates a century window of 1930-2029.
v A negative integer from -1 through -99.
This indicates a sliding window, where the first year of the window is calculated
from the current run-time date. The number is subtracted from the current year
to give the starting year of the century window. For example, YEARWINDOW(-80)
indicates that the first year of the century window is 80 years before the current
year at the time the program is run.
Usage notes
ZWB
ZWB
NOZWB
With ZWB, the compiler removes the sign from a signed external decimal (DISPLAY)
field when comparing this field to an alphanumeric elementary field during
execution.
If the external decimal item is a scaled item (contains the symbol P in its PICTURE
character string), its use in comparisons is not affected by ZWB. Such items always
have their sign removed before the comparison is made to the alphanumeric field.
ZWB affects how the program runs; the same COBOL source program can give
different results, depending on the option setting.
Use NOZWB if you want to test input numeric fields for SPACES.
COPY text-name
literal-1 OF library-name
IN literal-2
For example:
COPY INVOICES1Q
COPY “Company-#Employees” IN Personellib
The maximum block size for the copy library depends on the device on
which your data set resides.
When you compile with the cob2 command, copybooks are included from
the HFS. text-name, library-name, and literal are processed as follows:
v User-defined words are folded to uppercase. Literals are not. Because
UNIX is case sensitive, if your file name is lowercase or mixed case, you
must specify it as a literal.
v When text-name is a literal and library-name is omitted, text-name is used
directly: as a file name, a relative path name, or an absolute path name
(if the first character is /). For example:
COPY “MyInc”
COPY “x/MyInc”
COPY “/u/user1/MyInc”
v When text-name is a user-defined word and an environment variable of
that name is defined, the value of the environment variable is used as
the name of the file containing the copybook.
If an environment variable of that name is not defined, the copybook is
searched for as the following names, in the order given:
1. text-name.cpy
2. text-name.CPY
3. text-name.cbl
4. text-name.CBL
5. text-name.cob
6. text-name.COB
7. text-name
v When library-name is a literal, it is treated as the actual path, relative or
absolute, from which to copy file text-name.
v When library-name is a user-defined word, it is treated as an environment
variable. The value of the environment variable is used as the path. If
the environment variable is not set, an error occurs.
v If both library-name and text-name are specified, the compiler forms the
path name for the copybook by concatenating library-name and text-name
with a path separator (/) inserted between the two values. For example,
suppose you have the following setting for COPY MYCOPY OF MYLIB:
export MYCOPY=mystuff/today.cpy
export MYLIB=/u/user1
These settings result in:
/u/user1/mystuff/today.cpy
RELATED TASKS
“Changing the header of a source listing” on page 7
“Eliminating repetitive coding” on page 595
“Specifying compiler options under z/OS” on page 238
“Specifying compiler options under UNIX” on page 250
“Setting environment variables under UNIX” on page 249
If the problem with your program is not easily detected and you do not have a
debugger available, you might need to analyze a storage dump of your program.
For interactive debugging, you can also use Debug Tool, which is available in the
Full Function offering of this compiler.
RELATED TASKS
“Debugging with source language” on page 322
“Debugging using compiler options” on page 325
“Getting listings” on page 331
“Preparing to use the debugger” on page 355
Debug Tool User’s Guide
RELATED REFERENCES
Debug Tool Reference and Messages
Formatting and analyzing system dumps (Language Environment Debugging Guide)
Debugging example COBOL programs (Language Environment Debugging Guide)
RELATED TASKS
“Tracing program logic”
“Finding and handling input-output errors” on page 323
“Validating data” on page 323
“Finding uninitialized data” on page 323
“Generating information about procedures” on page 324
RELATED REFERENCES
Source language debugging (Enterprise COBOL Language Reference)
If you have used explicit scope terminators to end statements in your program, the
logic of your program is more apparent and therefore easier to trace.
To determine whether a particular routine started and finished, you might insert
code like this into your program:
DISPLAY “ENTER CHECK PROCEDURE”
.
. (checking procedure routine)
.
DISPLAY “FINISHED CHECK PROCEDURE”
After you are sure that the routine works correctly, disable the DISPLAY statements
in one of two ways:
v Put an asterisk in column 7 of each DISPLAY statement line to convert it to a
comment line.
v Put a D in column 7 of each DISPLAY statement to convert it to a comment line.
When you want to reactivate these statements, include a WITH DEBUGGING MODE
clause in the ENVIRONMENT DIVISION; the D in column 7 is ignored and the
DISPLAY statements are implemented.
Before you put the program into production, delete or disable the debugging aids
you used and recompile the program. The program will run more efficiently and
use less storage.
RELATED REFERENCES
DISPLAY statement (Enterprise COBOL Language Reference)
To use file status keys in debugging, include a test after each input-output
statement to check for a nonzero value in the status key. If the value is nonzero (as
reported in an error message), you should look at the coding of the input-output
procedures in the program. You can also include procedures to correct the error
based on the value of the status key.
Code each USE AFTER STANDARD ERROR statement in a section immediately after the
DECLARATIVE SECTION keyword of the PROCEDURE DIVISION.
RELATED TASKS
“Coding ERROR declaratives” on page 207
RELATED REFERENCES
Status key values and meanings (Enterprise COBOL Language Reference)
Status key (Enterprise COBOL Language Reference)
Validating data
If you suspect that your program is trying to perform arithmetic on nonnumeric
data or is somehow receiving the wrong type of data on an input record, use the
class test to validate the type of data. The class test checks whether data is
alphabetic, alphabetic-lower, alphabetic-upper, DBCS, KANJI, or numeric.
RELATED REFERENCES
Class condition (Enterprise COBOL Language Reference)
If the problem happens intermittently and not always with the same data, it could
be that a switch is not initialized but generally is set to the right value (0 or 1) by
accident. By including a SET statement to ensure that the switch is initialized, you
can either determine that the uninitialized switch is the problem or remove that as
a possible cause.
RELATED REFERENCES
INITIALIZE statement (Enterprise COBOL Language Reference)
SET statement (Enterprise COBOL Language Reference)
For example, to check how many times a procedure is run, you could include a
debugging procedure in the USE FOR DEBUGGING declarative and use a counter to
keep track of the number of times control passes to that procedure. You can use
the counter technique to check items such as these:
v How many times a PERFORM runs and thus whether a particular routine is being
used and whether the control structure is correct
v How many times a loop routine runs and thus whether the loop is executing
and whether the number for the loop is accurate
You can have debugging lines or debugging statements or both in your program.
Debugging lines
Debugging lines are statements that are identified by a D in column 7. To make
debugging lines in your program active, include the WITH DEBUGGING MODE clause
on the SOURCE-COMPUTER line in the ENVIRONMENT DIVISION. Otherwise debugging
lines are treated as comments.
Debugging statements
Debugging statements are the statements coded in the DECLARATIVES SECTION of the
PROCEDURE DIVISION. Code each USE FOR DEBUGGING declarative in a separate
section. Code the debugging statements as follows:
v Only in a DECLARATIVES SECTION.
v Following the header USE FOR DEBUGGING.
v Only in the outermost program; they are not valid in nested programs.
Debugging statements are also never triggered by procedures contained in
nested programs.
To use debugging statements in your program, you must include the WITH
DEBUGGING MODE clause and use the DEBUG run-time option. However, you cannot
use the USE FOR DEBUGGING declarative in a program that you compile with the
THREAD option.
The WITH DEBUGGING MODE clause and the TEST compiler option (with any suboption
value other than NONE) are mutually exclusive. If both are present, the WITH
DEBUGGING MODE clause takes precedence.
RELATED REFERENCES
Debugging line (Enterprise COBOL Language Reference)
Coding debugging sections (Enterprise COBOL Language Reference)
DEBUGGING declarative (Enterprise COBOL Language Reference)
Main-Program Section.
... (source program statements)
Perform Some-Routine.
... (source program statements)
Stop Run.
Some-Routine.
...(whatever statements you need in this paragraph)
Add 1 To Total.
Some-Routine-End.
In this example the DISPLAY statement in the DECLARATIVES SECTION issues this
message every time the procedure Some-Routine runs:
Trace For Procedure-Name : Some-Routine 22
The number at the end of the message, 22, is the value accumulated in the data
item Total; it shows the number of times Some-Routine has run. The statements in
the debugging declarative are performed before the named procedure runs.
You can also use the DISPLAY statement to trace program execution and show the
flow through the program. You do this by dropping Total from the DISPLAY
statement and changing the USE FOR DEBUGGING declarative in the DECLARATIVES
SECTION to:
USE FOR DEBUGGING ON ALL PROCEDURES.
In addition, you can use certain compiler options to help you find these elements
in your program:
v Error messages and where the errors occurred (FLAG)
You can get a copy of your source (by using the SOURCE compiler option) or a
listing of generated code (by using the LIST compiler option).
There is also a compiler option (TEST) that you need to use to prepare your
program for debugging.
RELATED TASKS
“Selecting the level of error to be diagnosed” on page 328
“Finding coding errors”
“Finding line sequence problems” on page 327
“Checking for valid ranges” on page 327
“Finding program entity definitions and references” on page 329
“Listing data items” on page 330
“Getting listings” on page 331
“Preparing to use the debugger” on page 355
RELATED REFERENCES
“COMPILE” on page 275
“SEQUENCE” on page 301
“SSRANGE” on page 304
“FLAG” on page 284
“XREF” on page 314
“MAP” on page 290
“VBREF” on page 313
“LIST” on page 289
“TEST” on page 306
If you are compiling in the TSO foreground, you can send the messages to your
screen by defining your data set as the SYSTERM data set and using the TERM
option when you compile your program.
The following compiler options are suppressed when you use NOCOMPILE without
parameters: DECK, OFFSET, LIST, OBJECT, OPTIMIZE, SSRANGE, and TEST.
Compiling conditionally
When you use NOCOMPILE(x), where x is one of the severity levels for errors, your
program is compiled if all the errors are of a lower severity than the x level. The
severity levels (from highest to lowest) that you can use are S (severe), E (error),
and W (warning).
RELATED REFERENCES
“COMPILE” on page 275
When you use SEQUENCE, the compiler checks the source statement numbers you
have supplied to see whether they are in ascending sequence. Two asterisks are
placed beside statement numbers that are out of sequence. Also, the total number
of these statements is printed as the first line of the diagnostics after the source
listing.
RELATED REFERENCES
“SEQUENCE” on page 301
When the SSRANGE option is specified, checking is performed at run time when
both of the following are true:
v The COBOL statement containing the indexed, subscripted, variable-length, or
reference-modified data item is performed.
v The CHECK run-time option is ON.
If a check finds that an address is generated outside the address range of the data
item that contains the referenced data, an error message is generated and the
program stops. The error message identifies the table or identifier that was
referenced and the line number where the error occurred. Additional information is
provided depending on the type of reference that caused the error.
If all subscripts, indices, or reference modifiers are literals in a given data reference
and they result in a reference outside the data item, the error is diagnosed at
compile time regardless of the setting of the SSRANGE compiler option.
Specify as the first parameter the lowest severity level of the syntax-error messages
to be issued. Optionally, specify the second parameter as the lowest level of the
syntax-error messages to be embedded in the source listing. This severity level
must be the same or higher than the level for the first parameter. If you specify
both parameters, you must also specify the SOURCE compiler option.
Table 47. Severity levels of compiler messages
Severity level What you get when you specify the corresponding level
U (unrecoverable) U messages only
S (severe) All S and U messages
E (error) All E, S, and U messages
W (warning) All W, E, S, and U messages
I (informational) All messages
When you specify the second parameter, each syntax-error message (except a
U-level message) is embedded in the source listing at the point where the compiler
had enough information to detect the error. All embedded messages (except those
issued by the library compiler phase) directly follow the statement to which they
refer. The number of the statement containing the error is also included with the
message. Embedded messages are repeated with the rest of the diagnostic
messages at the end of the source listing.
When you specify the NOSOURCE compiler option, the syntax-error messages are
included only at the end of the listing. Messages for unrecoverable errors are not
embedded in the source listing, because an error of this severity terminates the
compilation.
RELATED TASKS
“Generating a list of compiler error messages” on page 246
RELATED REFERENCES
“FLAG” on page 284
“Messages and listings for compiler-detected errors” on page 246
“Severity codes for compiler error messages” on page 247
Use both the XREF (with FULL or SHORT) and the SOURCE options to get a modified
cross-reference printed to the right of the source listing. This embedded
cross-reference gives the line number where the data-name or procedure-name was
defined.
If your program contains DBCS user-defined words, these user-defined words are
listed before the alphabetic list of EBCDIC user-defined words.
Group names in a MOVE CORRESPONDING statement are listed in the XREF listing. The
cross-reference listing includes the group names and all the elementary names
involved in the move.
RELATED TASKS
“Getting listings” on page 331
RELATED REFERENCES
“XREF” on page 314
In addition, when you use the MAP option, an embedded MAP summary (which
contains condensed data MAP information) is generated to the right of the COBOL
source data declaration. When both XREF data and an embedded MAP summary are
on the same line, the embedded summary is printed first.
You can select or inhibit parts of the MAP listing and embedded MAP summary by
using *CONTROL MAP or *CONTROL NOMAP statements (*CBL MAP or *CBL NOMAP
statements) throughout the source. For example:
*CONTROL NOMAP *CBL NOMAP
01 A 01 A
02 B 02 B
*CONTROL MAP *CBL MAP
RELATED TASKS
“Getting listings” on page 331
RELATED REFERENCES
“MAP” on page 290
Attention: The listings produced by the compiler are not a programming interface
and are subject to change.
Table 48. Using compiler options to get listings
Use Listing Contents Compiler option
To check diagnostic Short listing Diagnostic messages about NOSOURCE, NOXREF, NOVBREF,
messages about the the compilation1 (page 332); NOMAP, NOOFFSET, NOLIST
compilation, a list of the list of options in effect for
options in effect for the the program; statistics
program, and statistics about the content of the
about the content of the program
program
To aid in testing and Source listing Copy of your source “SOURCE” on page 302
debugging your program;
to have a record after the
program has been
debugged
To find certain data items Map of DATA DIVISION All DATA DIVISION items “MAP” on page 2902
in a storage dump; to see items and all implicitly declared
the final storage allocation items
after reentrancy or
optimization has been Embedded map summary
accounted for; to see where (in the right margin of the
programs are defined and listing for lines in the DATA
check their attributes DIVISION that contain data
declarations)
1. To eliminate messages, turn off the options (such as FLAG) that govern the level of compile diagnostic
information.
2. To use your line numbers in the compiled program, use the NUMBER compiler option. The compiler checks the
sequence of your source statement line numbers in columns 1 through 6 as the statements are read in. When it
finds a line number out of sequence, the compiler assigns to it a number with a value one higher than the line
number of the preceding statement. The new value is flagged with two asterisks. A diagnostic message
indicating an out-of-sequence error is included in the compilation listing.
3. The context of the procedure reference is indicated by the characters preceding the line number.
4. You can control the selective listing of generated object code by placing *CONTROL LIST and *CONTROL NOLIST
statements (*CBL LIST and *CBL NOLIST) in your source. Note that the *CONTROL statement is different from the
PROCESS (or CBL) statement.
The output is generated if:
v You specify the COMPILE option (or the NOCOMPILE(x) option is in effect and an error level x or higher does not
occur).
v You do not specify the OFFSET option. OFFSET and LIST are mutually exclusive options with OFFSET taking
precedence.
RELATED TASKS
“Generating a list of compiler error messages” on page 246
“Reading LIST output” on page 340
Debugging COBOL programs (Language Environment Debugging Guide)
RELATED REFERENCES
“Messages and listings for compiler-detected errors” on page 246
(1) COBOL default page header, including compiler-level information from the
LVLINFO installation-time compiler option.
(2) Message about options passed to the compiler at compiler invocation. This
message does not appear if no options were passed.
LIST Produces an assembler-language expansion of the source code.
DATA VALIDATION AND UPDATE PROGRAM (1) IGYTCARA Date 11/24/2003 Time 12:26:53 Page 22
LineID PL SL ----+-*A-1-B--+----2----+----3----+----4----+----5----+----6----+----7-|--+----8 Cross-Reference (2)
(3) (4) (5)
087000**************************************************************** *
087100*** D O M A I N L O G I C * *
087200*** * *
087300*** Initialization. Read and process update transactions until * *
087400*** EOE. Close files and stop run. * *
087500**************************************************************** *
087600 procedure division.
087700 000-do-main-logic.
087800 display "PROGRAM IGYTCARA - Beginning"
087900 perform 050-create-vsam-master-file. 90633
088150 display "perform 050-create-vsam-master finished".
088151** 088125 perform 100-initialize-paragraph 90677
088200 display "perform 100-initialize-paragraph finished"
088300 read update-transaction-file into ws-transaction-record 204 331
088400 at end
1 088500 set transaction-eof to true 254
088600 end-read
088700 display "READ completed"
088800 perform until transaction-eof 254
1 088900 display "inside perform until loop"
1 089000 perform 200-edit-update-transaction 90733
1 089100 display "After perform 200-edit "
1 089200 if no-errors 365
2 089300 perform 300-update-commuter-record 90842
2 089400 display "After perform 300-update "
1 089650 else
089651** 2 089600 perform 400-print-transaction-errors 90995
2 089700 display "After perform 400-errors "
1 089800 end-if
1 089900 perform 410-re-initialize-fields 91056
1 090000 display "After perform 410-reinitialize"
1 090100 read update-transaction-file into ws-transaction-record 204 331
1 090200 at end
2 090300 set transaction-eof to true 254
1 090400 end-read
1 090500 display "After '2nd READ' "
090600 end-perform
(1) Customized page header resulting from the COBOL program TITLE
statement
(2) Scale line, which labels Area A, Area B, and source code column numbers
(3) Source code line number assigned by the compiler
(4) Program (PL) and statement (SL) nesting level
(5) Columns 1 through 6 of program (the sequence number area)
(1)
Data Definition Attribute codes (rightmost column) have the following meanings:
D = Object of OCCURS DEPENDING G = GLOBAL S = Spanned file
E = EXTERNAL O = Has OCCURS clause U = Undefined format file
F = Fixed-length file OG= Group has own length definition V = Variable-length file
FB= Fixed-length blocked file R = REDEFINES VB= Variable-length blocked file
RELATED REFERENCES
“Terms used in MAP output” on page 338
“Symbols used in LIST and MAP output” on page 338
1. n is the size in bytes for fixed-length groups and the maximum size in bytes for variable-length groups.
2. If the SYNCHRONIZED clause appears, these fields are used.
1. n is the number of the entry. For base locators, it can also be XXXXX, indicating a data item that was deleted by
OPTIMIZE(FULL) processing.
2. (hhhhh) is the program offset in hexadecimal.
3. nnnn is the offset in decimal from the beginning of the entry.
4. Alphanumeric temporaries are temporary data values used in processing alphanumeric intrinsic function and
alphanumeric EVALUATE statement subjects.
RELATED TASKS
Interpret a particular instruction (Principles of Operation)
RELATED REFERENCES
Stack storage overview (Language Environment Programming Guide)
RELATED REFERENCES
“Signature information bytes: compiler options”
“Signature information bytes: DATA DIVISION” on page 345
“Signature information bytes: ENVIRONMENT DIVISION” on page 346
“Signature information bytes: PROCEDURE DIVISION verbs” on page 346
“Signature information bytes: more PROCEDURE DIVISION items” on page 348
RELATED REFERENCES
“LIST” on page 289
RELATED REFERENCES
“LIST” on page 289
RELATED REFERENCES
“Symbols used in LIST and MAP output” on page 338
RELATED CONCEPTS
“Storage and its addressability” on page 34
264 ABEND-ITEM1
265 ABEND-ITEM2
347 ADD-CODE . . . . . . . . . . . 1126 1192
381 ADDRESS-ERROR. . . . . . . . . M1156
280 AREA-CODE. . . . . . . . . . . 1266 1291 1354 1375
382 CITY-ERROR . . . . . . . . . . M1159
(4)
Context usage is indicated by the letter preceding a procedure-name
reference. These letters and their meanings are:
A = ALTER (procedure-name)
D = GO TO (procedure-name) DEPENDING ON
E = End of range of (PERFORM) through (procedure-name)
G = GO TO (procedure-name)
P = PERFORM (procedure-name)
T = (ALTER) TO PROCEED TO (procedure-name)
U = USE FOR DEBUGGING (procedure-name)
877 000-DO-MAIN-LOGIC
943 050-CREATE-STL-MASTER-FILE . . P879
995 100-INITIALIZE-PARAGRAPH . . . P881
1471 1100-PRINT-I-F-HEADINGS. . . . P926
1511 1200-PRINT-I-F-DATA. . . . . . P928
1573 1210-GET-MILES-TIME. . . . . . P1540
1666 1220-STORE-MILES-TIME. . . . . P1541
1682 1230-PRINT-SUB-I-F-DATA. . . . P1562
1706 1240-COMPUTE-SUMMARY . . . . . P1563
1052 200-EDIT-UPDATE-TRANSACTION. . P890
Cross-reference of data-names:
(1) Line number where the name was defined.
(2) Data-name.
(3) Line numbers where the name was used. If M precedes the line number, the
data item was explicitly modified at the location.
EXTERNAL EXTERNAL1. . . . . . . . . . . 25
2 X. . . . . . . . . . . . . . . 41
12 X1 . . . . . . . . . . . . . . 33 7
20 X11. . . . . . . . . . . . . . 25 16
27 X12. . . . . . . . . . . . . . 32 17
35 X2 . . . . . . . . . . . . . . 40 8
(1) Line number where the program name was defined. If the program is
external, the word EXTERNAL is displayed instead of a definition line
number.
(2) Program name.
(3) Line numbers where the program is referenced.
RELATED REFERENCES
“OFFSET” on page 294
You can specify the TEST suboption SEPARATE to have the symbolic information
tables for Debug Tool generated in a data set separate from your object module.
Also, you can enable your COBOL program for debugging using overlay hooks
(production debugging), rather than compiled-in hooks, which have some
performance degradation even when the run-time TEST option is off. To use this
function, compile with TEST(NONE,SYM).
RELATED TASKS
Preparing your program for debugging (Debug Tool User’s Guide)
RELATED REFERENCES
“TEST” on page 306
When you use the CICS compiler option, the Enterprise COBOL compiler handles
both native COBOL and embedded CICS statements in the source program.
Compilers before COBOL for OS/390 & VM Version 2 Release 2 require a separate
translation step to convert EXEC CICS commands to COBOL code. You can still
translate embedded CICS statements separately, but use of the integrated CICS
translator is recommended.
After you compile and link-edit your program, you need to do some other steps
such as updating CICS tables before you can run the COBOL program under CICS.
However, these CICS topics are beyond the scope of this COBOL information. See
the related references for further information about CICS.
You can determine how run-time errors are handled by setting the CBLPSHPOP
run-time option. See the related tasks for information about CICS HANDLE and
CBLPSHPOP.
RELATED CONCEPTS
“Integrated CICS translator” on page 364
RELATED TASKS
“Coding COBOL programs to run under CICS”
“Compiling with the CICS option” on page 362
“Using the separate CICS translator” on page 365
“Handling errors by using CICS HANDLE” on page 367
Using the CBLPSHPOP run-time option under CICS (Language Environment
Programming Guide)
RELATED REFERENCES
“CICS” on page 273
CICS Application Programming Guide
Within EXEC commands, use the space as a word separator; do not use a comma or
a semicolon.
If you plan to use the separate CICS translator, you must put any REPLACE
statements that contain EXEC commands after the PROCEDURE DIVISION statement for
the program, or they will not be translated.
You can use these format-2 ACCEPT statements in the CICS environment to get the
system date:
v ACCEPT identifier-2 FROM DATE
v ACCEPT identifier-2 FROM DATE YYYYMMDD
v ACCEPT identifier-2 FROM DAY
v ACCEPT identifier-2 FROM DAY YYYYDDD
v ACCEPT identifier-2 FROM DAY-OF-WEEK
You can use this format-2 ACCEPT statement in the CICS environment to get the
system time:
v ACCEPT identifier-2 FROM TIME
DISPLAY . . . UPON CONSOLE and DISPLAY . . . UPON SYSPUNCH, however, are not
allowed.
You can use CALL identifier with the NODYNAM compiler option to dynamically call a
program. Called programs can contain any function supported by CICS for the
language. You must define dynamically called programs in the CICS program
| processing table (PPT) if you are not using CICS autoinstall. Under CICS, COBOL
| programs do not support dynamic calls to subprograms that have the RELOAD=YES
| option coded in their CICS PROGRAM definition. Dynamic calls to programs that are
| defined with RELOAD=YES can cause a storage shortage. Use the RELOAD=NO option
| for programs that are to be dynamically called by COBOL.
The following table shows the calling relationship between COBOL and assembler
programs. In the table, assembler programs that conform to the interface described
in the Language Environment Programming Guide are called Language
Environment-conforming assembler programs. Those that do not conform to the
interface are non-Language Environment-conforming assembler programs.
Table 56. Calls between COBOL and assembler under CICS
Language Non-Language
Calls between COBOL and Environment-conforming Environment-conforming
assembler programs assembler program assembler program
From an Enterprise COBOL Yes Yes
program to the assembler
program?
From the assembler program Yes, if the assembler program No
to an Enterprise COBOL is not a main program
program?
When you code nested programs and you plan to use the separate CICS translator,
pass DFHEIBLK and DFHCOMMAREA as parameters to the nested programs that contain
EXEC commands or references to the EIB (EXEC interface block). You must pass the
same parameters also to any program that forms part of the control hierarchy
between such a program and its top-level program.
To make the job return code reflect the status of the last call to CICS, set the
RETURN-CODE special register based on the response codes from the last call to the
external CICS interface.
RELATED TASKS
“Handling errors when calling programs” on page 213
ILC under CICS (Language Environment Writing ILC Applications)
RELATED REFERENCES
CICS External Interfaces Guide
You can specify the CICS option in any of the compiler option sources: compiler
invocation, PROCESS or CBL statements, or installation default. When the CICS option
is the COBOL installation default, you cannot specify CICS suboptions. However,
All CBL or PROCESS statements must precede any comment lines, in accordance with
the rules for Enterprise COBOL.
The CICS suboption string that you provide on the CICS compiler option is made
available to the integrated CICS translator. Only that translator views the contents
of the string.
When you use the integrated CICS translator, you must compile with these
options:
Table 57. Compiler options required for the integrated CICS translator
Compiler option Comment
CICS If you specify NOLIB, DYNAM, or NORENT, the compiler forces on
LIB, NODYNAM, and RENT.
LIB Must be in effect with CICS
NODYNAM Must be in effect with CICS
RENT Must be in effect with CICS
SIZE(xxx) xxx must be a size value (not MAX) that leaves enough storage
in your user region for the integrated CICS translation process.
In addition, IBM recommends that you use the compiler option WORD(CICS) to have
the compiler flag language elements that are not supported under CICS.
You can use the standard JCL procedural statements that are supplied with
COBOL to compile your program with the integrated CICS translator. In addition
to specifying the above compiler options, you must change your JCL to specify the
STEPLIB override for the COBOL step and to add the data set that contains the
integrated CICS translator services, unless these services are in the linklist. The
default name of the data set for CICS Transaction Server V2R2 is
CICSTS22.CICS.SDFHLOAD, but your installation might have changed the name.
For example, you might have the following line in your JCL:
//STEPLIB DD DSN=CICSTS22.CICS.SDFHLOAD,DISP=SHR
The COBOL compiler listing includes the error diagnostics (such as syntax errors
in the CICS statements) that the integrated CICS translator generates. The listing
reflects the input source; it does not include the COBOL statements that the
integrated CICS translator generates.
The CICS suboptions that you include in the suboption string are cumulative. The
compiler concatenates these suboptions from multiple sources in the order that
they are specified. For example, suppose that your JCL file has the following code:
//STEP1 EXEC IGYWC, . . .
//PARM.COBOL=“CICS(”FLAG(I)“)”
//COBOL.SYSIN DD *
CBL CICS(“DEBUG”)
CBL CICS(“LINKAGE”)
IDENTIFICATION DIVISION.
PROGRAM-ID. COBOL1.
During compilation, the compiler passes the following suboption string to the
integrated CICS translator:
“FLAG(I) DEBUG LINKAGE”
The concatenated strings are delimited with single spaces and with a quotation
mark or single quotation mark around the group. When the compiler finds
multiple instances of the same CICS suboption, the last specification of the
suboption in the concatenated string takes effect. The compiler limits the length of
the concatenated CICS suboption string to 4 KB.
RELATED CONCEPTS
“Integrated CICS translator”
RELATED TASKS
“Coding COBOL programs to run under CICS” on page 359
RELATED REFERENCES
“CICS” on page 273
CICS Application Programming Guide
Although the use of the separate CICS translator continues to be supported, use of
the integrated CICS translator is recommended. Certain restrictions that apply
when you use the separate translator do not apply when you use the integrated
translator:
v You can use Debug Tool to debug the original source, instead of the expanded
source that the separate CICS translator provides.
v You do not need to translate separately the EXEC CICS or EXEC DLI statements
that are in copybooks.
RELATED TASKS
“Coding COBOL programs to run under CICS” on page 359
“Compiling with the CICS option” on page 362
RELATED REFERENCES
“TRUNC” on page 310
To translate CICS statements separately, use the COBOL3 translator option. This
option causes the following line to be inserted:
CBL RENT,NODYNAM,LIB
You can suppress the insertion of a CBL statement by using the CICS translator
option NOCBLCARD.
CICS provides the translator option ANSI85, which supports these language
features (introduced by the COBOL 85 Standard):
v Blank lines intervening in literals
v Sequence numbers containing any character
v Lowercase characters supported in all COBOL words
v REPLACE statement
v Batch compilation
v Nested programs
v Reference modification
v GLOBAL variables
v Interchangeability of comma, semicolon, and space
v Symbolic character definition
After you use the separate CICS translator, use the following compiler options
when you compile the program:
In addition, IBM recommends that you use the compiler option WORD(CICS)to have
the compiler flag language elements that are not supported under CICS.
For example, if you use the separate CICS translator and have a data item defined
as PIC S9(8) BINARY that might receive a value greater than eight digits, use the
TRUNC(BIN) compiler option, change the item to USAGE COMP-5, or change the
PICTURE clause.
You might also want to avoid using options that have no effect:
v ADV
v FASTSRT
v OUTDD
The input data set for the compiler is the data set that you received as a result of
translation, which is SYSPUNCH by default.
RELATED CONCEPTS
“Integrated CICS translator” on page 364
RELATED TASKS
“Compiling with the CICS option” on page 362
If you intend to use the SORT statement under CICS (COBOL supports an interface
for the SORT statement under CICS), you must change the CICS reserved-word
table before using it. You must remove the words in bold above from the list of
words marked as restricted, because they are required for the SORT function.
RELATED TASKS
“Compiling with the CICS option” on page 362
RELATED REFERENCES
“WORD” on page 313
When CBLPSHPOP is OFF, the run time does not perform CICS PUSH or POP on a CALL
to any COBOL subprogram. If the subprograms do not use any of the EXEC CICS
condition-handling commands, you can run with CBLPSHPOP(OFF), eliminating the
overhead of the PUSH HANDLE and POP HANDLE commands. As a result, performance
can be improved compared to running with CBLPSHPOP(ON).
If you are migrating an application from the VS COBOL II run time to the
Language Environment run time, see the related reference for information about
the CBLPSHPOP option for additional considerations.
If you use the CICS HANDLE CONDITION or CICS HANDLE AID commands, the LABEL
specified for the CICS HANDLE command must be in the same PROCEDURE DIVISION
as the CICS command that causes branching to the CICS HANDLE label. You cannot
use the CICS HANDLE commands with the LABEL option to handle conditions, aids,
or abends that were caused by another program invoked with the COBOL CALL
statement. Attempts to perform cross-program branching by using the CICS HANDLE
command with the LABEL option result in a transaction abend.
If a condition, aid, or abend occurs in a nested program, the LABEL for the
condition, aid, or abend must be in the same nested program; otherwise
unpredictable results will occur.
RELATED REFERENCES
CBLPSHPOP run-time option (Enterprise COBOL Compiler and Run-Time Migration
Guide)
IBM Enterprise COBOL Version 3 Release 1 Performance Tuning
(www.ibm.com/software/awdtools/cobol/zos/pdf/cobpf310.pdf)
RELATED CONCEPTS
“DB2 coprocessor” on page 375
RELATED TASKS
“Coding SQL statements”
“Compiling with the SQL option” on page 373
Coding SQL statements in a COBOL application (IBM DB2 Application Programming
and SQL Guide)
RELATED REFERENCES
IBM DB2 SQL Reference
The library search order for SQL INCLUDE statements is the same SYSLIB
concatenation as the compiler uses to resolve COBOL COPY statements that do not
specify a library-name.
When you use the stand-alone DB2 preprocessor, you must specify the code page
(CCSID) in EXEC SQL DECLARE statements for host variables declared with USAGE
NATIONAL. You must specify the code page for host variables declared with USAGE
DISPLAY or DISPLAY-1 only if the CCSID in effect for the COBOL CODEPAGE compiler
option and the CCSIDs used by DB2 for character and graphic data do not match.
For example:
CBL CODEPAGE(1140) NSYMBOL(NATIONAL)
. . .
WORKING-STORAGE SECTION.
EXEC SQL INCLUDE SQLCA END-EXEC.
EXEC SQL BEGIN DECLARE SECTION END-EXEC.
01 ID PIC S9(4) USAGE COMP.
01 C1140.
49 C1140-LEN PIC S9(4) USAGE COMP.
49 C1140-TEXT PIC X(50).
EXEC SQL DECLARE :C1140 VARIABLE CCSID 1140 END-EXEC.
01 G1200.
49 G1200-LEN PIC S9(4) USAGE COMP.
49 G1200-TEXT PIC N(50) USAGE NATIONAL.
EXEC SQL DECLARE :G1200 VARIABLE CCSID 1200 END-EXEC.
EXEC SQL END DECLARE SECTION END-EXEC.
. . .
EXEC SQL FETCH C1 INTO :ID, :C1140, :G1200 END-EXEC.
When you use the integrated DB2 coprocessor, the statements EXEC SQL DECLARE
:C1140 VARIABLE CCSID 1140 END-EXEC and EXEC SQL DECLARE :G1200 VARIABLE
CCSID 1200 END-EXEC coded above are not necessary because the code-page
information is handled implicitly.
If you specify EXEC SQL DECLARE variable-name VARIABLE CCSID nnnn END-EXEC, that
specification overrides the implied CCSID. For example, the following code would
cause DB2 to treat C1208-TEXT as encoded in UTF-8 (CCSID 1208) rather than
encoded in the CCSID in effect for the COBOL CODEPAGE compiler option:
01 C1208.
49 C1208-LEN PIC S9(4) USAGE COMP.
49 C1208-TEXT PIC X(50).
EXEC SQL DECLARE :C1208 VARIABLE CCSID 1208 END-EXEC.
The NSYMBOL compiler option has no effect on a character literal inside an EXEC SQL
statement. Character literals in an EXEC SQL statement follow the SQL rules for
character constants.
If you specify a USAGE BINARY, COMP, or COMP-4 item when option TRUNC(OPT) or
TRUNC(STD) or both are in effect, the compiler accepts the item but the data might
not be valid because of the decimal truncation rules. You need to ensure that
truncation does not affect the validity of the data.
The exception occurs when a program runs under DSN from one of the alternate
entry points of the TSO batch mode module IKJEFT01 (IKJEFT1A or IKJEFT1B). In
this case, the return code is passed in register 15.
After execution of SQL statements, the content of the RETURN-CODE special register
might not be valid. Therefore, even if your COBOL program terminates normally
after successfully using the SQL statements, the job step could end with an
undefined return code. To ensure that a meaningful return code is given at
termination, set the RETURN-CODE special register before terminating your program.
RELATED CONCEPTS
“Formats for numeric data” on page 40
RELATED REFERENCES
“CODEPAGE” on page 274
You can specify the SQL option in any of the compiler option sources: compiler
invocation, PROCESS or CBL statements, or installation default. You cannot specify
DB2 suboptions when the SQL option is the COBOL installation default, but you
can specify default DB2 suboptions by customizing the DB2 product installation
defaults.
The DB2 suboption string that you provide on the SQL compiler option is made
available to the DB2 coprocessor. Only the DB2 coprocessor views the contents of
the string.
When you use the DB2 coprocessor, you must compile with these options:
You can use standard JCL procedural statements to compile your program with the
DB2 coprocessor. In addition to specifying the above compiler options, specify the
following items in your JCL:
v DBRMLIB DD statement with the location for the generated database request
module (DBRM).
v STEPLIB override for the COBOL step, adding the data set that contains the DB2
coprocessor services, unless these services are in the LNKLST. Typically, this data
set is DSN710.SDSNLOAD, but your installation might have changed the name.
For example, you might have the following lines in your JCL:
//DBRMLIB DD DSN=PAYROLL.MONTHLY.DBRMLIB.DATA(MASTER),DISP=SHR
//STEPLIB DD DSN=DSN710.SDSNLOAD,DISP=SHR
Compiling in batch
When you use the SQL option to compile a source file that contains a sequence of
COBOL programs (a batch compile sequence), the option must be in effect for the
first program of the batch sequence. If the SQL option is specified on CBL or PROCESS
cards, the CBL or PROCESS cards must precede the first program in the batch
compile sequence.
The DB2 suboptions that you include in the suboption string are cumulative. The
compiler concatenates these suboptions from multiple sources in the order that
they are specified. For example, suppose that your source file has the following
code:
//STEP1 EXEC IGYWC, . . .
| // PARM.COBOL=’SQL(“string1”)’
//COBOL.SYSIN DD *
| CBL SQL(“string2”)
| CBL SQL(“string3”)
IDENTIFICATION DIVISION.
PROGRAM-ID. DRIVER1.
During compilation, the compiler passes the following suboption string to the DB2
coprocessor:
| “string1 string2 string3”
The concatenated strings are delimited with single spaces. When the compiler finds
multiple instances of the same DB2 suboption, the last specification of the
suboption in the concatenated string will be in effect. The compiler limits the
length of the concatenated DB2 suboption string to 4 KB.
RELATED REFERENCES
“SQL” on page 303
IBM DB2 Command Reference
DB2 coprocessor
When you use the DB2 coprocessor (called SQL statement coprocessor by DB2), the
compiler handles your source program containing embedded SQL statements
without your having to use a separate precompile step. When the compiler
encounters SQL statements at significant points in the source program, it interfaces
with the DB2 coprocessor. This coprocessor takes appropriate actions on the SQL
statements and indicates to the compiler what native COBOL statements to
generate for them.
Compiling with the DB2 coprocessor generates a DB2 database request module
(DBRM) along with the usual COBOL compiler outputs such as object module and
listing. The DBRM writes to the data set that you specified on the DBRMLIBB DD
statement in the JCL for the COBOL compile step. As input to the DB2 bind
process, the DBRM data set contains information about the SQL statements and
host variables in the program.
The COBOL compiler listing includes the error diagnostics (such as syntax errors
in the SQL statements) that the DB2 coprocessor generates.
Certain restrictions on the use of COBOL language that apply when you use the
precompile step do not apply when you use the DB2 coprocessor:
v You can use SQL statements in any nested program. (With the precompiler, SQL
statements are restricted to the outermost program.)
v You can use SQL statements in copybooks.
v REPLACE statements work on SQL statements.
RELATED TASKS
“Compiling with the SQL option” on page 373
In COBOL, IMS message processing programs (MPPs) do not use non-IMS input or
output statements such as READ, WRITE, REWRITE, OPEN, and CLOSE.
With Enterprise COBOL, you can invoke IMS facilities using the following
interfaces:
v CBLTDLI call
v Language Environment callable service CEETDLI
You code calls to CEETDLI the same way as calls to CBLTDLI. CEETDLI behaves
essentially the same way as CBLTDLI.
You can also run object-oriented COBOL programs in an IMS Java dependent
region. You can mix the object-oriented COBOL and Java languages in a single
application.
RELATED TASKS
“Compiling and linking COBOL programs for running under IMS”
“Using object-oriented COBOL and Java under IMS” on page 378
“Calling a COBOL method from an IMS Java application” on page 378
“Building a mixed COBOL and Java application that starts with COBOL” on page
379
“Writing mixed-language applications” on page 380
You must use the RENT compiler option to compile a program that is to be run
preloaded or as both preloaded and nonpreloaded. When you preload a load
module that contains COBOL programs, all of the COBOL programs in that load
module must be compiled with the RENT option.
You can place programs compiled with the RENT option in the z/OS link pack area.
There they can be shared among the IMS dependent regions.
To run above the 16-MB line, your application program must be compiled with
either RENT or NORENT RMODE(ANY).
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
Coordinated condition handling under IMS (Language Environment Programming
Guide)
RELATED REFERENCES
“DATA” on page 277
“RENT” on page 299
IMS considerations (Enterprise COBOL Compiler and Run-Time Migration Guide)
You must run these applications in either a Java message processing (JMP)
dependent region or a Java batch processing (JBP) dependent region. A program
that reads from the message queue (regardless of the language) must run in a JMP
dependent region.
RELATED TASKS
“Defining a factory section” on page 514
Chapter 30, “Writing object-oriented programs,” on page 485
Chapter 31, “Communicating with Java methods,” on page 527
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
IMS Java User’s Guide
You can then create an instance and invoke the methods of this class from an IMS
Java program that runs in an IMS Java dependent region, just as you would use
any other class.
When you write the initial routine of a mixed-language application in Java, you
must implement a class that is derived from the IMS Java IMSApplication class.
A Java program cannot call procedural COBOL programs directly. To reuse existing
COBOL IMS code, you can use one of the following techniques:
v Restructure the COBOL code as a method in a COBOL class.
v Write a COBOL class definition and method that serves as a wrapper for the
existing procedural code. The wrapper code can use COBOL CALL statements to
access procedural COBOL programs.
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
“Structuring OO applications” on page 524
“Wrapping procedure-oriented COBOL programs” on page 523
IMS Java User’s Guide
An application that runs in an IMS Java dependent region must start with the main
method of a class. A COBOL class definition with a main factory method meets this
requirement; therefore, you can use it as the first routine of a mixed COBOL and
Java IMS application. (See the related tasks for details about how you can structure
OO applications.) Enterprise COBOL generates a Java class with a main method
that the IMS Java dependent region can find, instantiate, and invoke in the same
way that the region does for the main method of an IMS Java IMSApplication
subclass. Although you can code the entire application in COBOL, you would
probably build this type of application to call a Java routine. When COBOL
run-time support runs within the JVM of an IMS Java dependent region, it
automatically finds and uses this JVM to invoke methods on Java classes.
When the main factory method of a COBOL class is the initial routine of a
mixed-language application in an IMS Java dependent region, the program is
subject to the same requirements as a Java program that runs in the dependent
region. That is, the program must explicitly commit resources before it reads
However, the COBOL application is not derived from the IMSApplication class,
and it should not use the IMS Java classes for processing messages or
synchronizing transactions. Instead, it should use DL/I calls in COBOL for
processing messages (GU and GN) and synchronizing transactions (CHKP). A CHKP call
in an IMS Java dependent region does not result in the automatic retrieval of a
message from the message queue, unlike a CHKP call in a non-IMS Java region.
RELATED TASKS
“Structuring OO applications” on page 524
IMS Java User’s Guide
New IBM Technology featuring Persistent Reusable Java Virtual Machines
Accessing databases
Limitation: EXEC SQL statements for DB2 database access are not currently
supported in COBOL routines that run in IMS Java dependent regions.
You can use either Java, COBOL, or a mixture of the two languages for accessing
IMS databases.
Suppose that a Java component of a mixed application builds an SQL SELECT clause
and uses Java Database Connectivity (JDBC) to query and retrieve results from an
IMS database. The IMS Java class library constructs the appropriate request to IMS
to establish the correct position in the database. If you then invoke a COBOL
method that builds a segment search argument (SSA) and issues a GU (Get Unique)
request to IMS against the same database PCB, the request has probably altered the
To use the AIB interface, specify the PCB requested for the call by placing the PCB
name (which must be defined as part of the PSBGEN) in the resource name field of
the AIB. You do not specify the PCB address directly, and your application does
not need to know the relative PCB position in the PCB list. At the completion of
the call, the AIB returns the PCB address that corresponds to the PCB name that
the application passed.
For example:
Local-storage section.
copy AIB.
. . .
Linkage section.
01 IOPCB.
05 logtterm pic x(08).
05 pic x(02).
05 tpstat pic x(02).
05 iodate pic x(04).
05 iotime pic x(04).
05 pic x(02).
05 seqnum pic x(02).
05 mod pic x(08).
Procedure division.
Move spaces to input-area
Move spaces to AIB
Move “DFSAIB” to AIBRID
Move length of AIB to AIBRLEN
Move “IOPCB” to AIBRSNM1
Move length of input-area to AIBOALEN
Call “CEETDLI” using GU, AIB, input-area
Set address of IOPCB to AIBRESA1
If tpstat = spaces
* . . process input message
RELATED TASKS
IMS Java User’s Guide
IMS Application Programming: Transaction Manager
| You can use Debug Tool to debug Unix System Services programs in remote debug
| mode, for example, by using the Debug Perspective of WebSphere Studio
| Enterprise Developer, or in full-screen mode (MFI) using a VTAM terminal.
RELATED TASKS
Chapter 15, “Compiling under UNIX,” on page 249
“Running OO applications under UNIX” on page 259
“Running in UNIX environments”
“Setting and accessing environment variables” on page 384
“Calling UNIX/POSIX APIs” on page 386
“Accessing main program parameters” on page 388
Language Environment Programming Guide
RELATED REFERENCES
“RENT” on page 299
RELATED TASKS
“Running OO applications under UNIX” on page 259
“Setting and accessing environment variables”
“Calling UNIX/POSIX APIs” on page 386
“Accessing main program parameters” on page 388
“Defining and allocating QSAM files” on page 134
“Defining and allocating line-sequential files” on page 177
“Allocating VSAM files” on page 169
“Displaying values on a screen or in a file (DISPLAY)” on page 30
Running POSIX-enabled programs using a UNIX shell (Language Environment
Programming Guide)
Running POSIX-enabled programs outside the UNIX shells (Language Environment
Programming Guide)
RELATED REFERENCES
“TEST” on page 306
The BPXBATCH utility (UNIX System Services User’s Guide)
Language Environment Programming Reference
Although setting and resetting environment variables from the shell before you
begin to run a program is probably a typical procedure, you can set, reset, and
access environment variables from the program while it is running.
If you are running a program with BPXBATCH, you can set environment variables
by using an STDENV DD statement.
Call POSIX functions setenv() and putenv() to set environment variables from the
program.
To access the value of an environment variable from a COBOL program, call the
getenv() function.
RELATED TASKS
“Running in UNIX environments” on page 383
“Calling UNIX/POSIX APIs” on page 386
“Accessing main program parameters” on page 388
“Running OO applications under UNIX” on page 259
“Displaying values on a screen or in a file (DISPLAY)” on page 30
RELATED REFERENCES
_CEE_ENVFILE (C/C++ Programming Guide)
Language Environment Programming Reference
MVS JCL Reference
Because these are C functions, you must pass arguments BY VALUE. Pass character
strings as BY VALUE pointers that point to null-terminated strings. You must use the
compiler options NODYNAM and PGMNAME(LONGMIXED) when you compile programs
that call these functions.
The exec() and spawn() functions start a new Language Environment enclave in
the new UNIX process. Therefore the target program of the exec() or spawn() is a
main program, and all COBOL programs in the process start in initial state with all
files closed.
Samples
Sample code for calling some of the POSIX routines is provided with the product.
The sample source code is in the SIGYSAMP data set.
Table 61. Samples with POSIX function calls
Purpose Sample Functions used
Shows how to use some of the file IGYTFL1 getcwd()
and directory routines mkdir()
rmdir()
access()
Shows how to use the iconv IGYTCNV iconv_open()
routines to convert data iconv()
iconv_close()
Shows the use of the exec() routine IGYTEXC fork()
to run a new program along with IGYTEXC1 getpid()
other process-related routines getppid()
execl()
perror()
wait()
Shows how to get the errno value IGYTERNO perror()
IGYTGETE fopen()
Shows the use of the interprocess IGYTMSQ ftok()
communication message routines IGYTMSQ2 msgget()
msgsndd()
perror()
fopen()
fclose()
msgrcv()
msgctl()
perror()
RELATED TASKS
“Running in UNIX environments” on page 383
“Setting and accessing environment variables” on page 384
“Accessing main program parameters” on page 388
Language Environment Programming Guide
RELATED TASKS
“Running in UNIX environments” on page 383
“Setting and accessing environment variables” on page 384
“Calling UNIX/POSIX APIs” on page 386
Name prefix alert: Do not use program names that start with prefixes used by IBM
products. If you try to use programs whose names start with any of the following,
your CALL statements might resolve to IBM library or compiler routines rather than
to your intended program:
RELATED CONCEPTS
“Main programs, subprograms, and calls” on page 394
RELATED TASKS
“Ending and reentering main programs or subprograms” on page 394
“Transferring control to another program” on page 396
“Making recursive calls” on page 407
“Calling to and from object-oriented programs” on page 407
“Using procedure and function pointers” on page 407
RELATED REFERENCES
Register conventions (Language Environment Programming Guide)
In the PROCEDURE DIVISION, a program can call another program (generally called a
subprogram), and this called program can itself call other programs. The program
that calls another program is referred to as the calling program, and the program it
calls is referred to as the called program. When the processing of the called
program is completed, the called program can either transfer control back to the
calling program or end the run unit.
The called COBOL program starts running at the top of the PROCEDURE DIVISION.
RELATED TASKS
“Ending and reentering main programs or subprograms”
“Making recursive calls” on page 407
“Transferring control to another program” on page 396
RELATED REFERENCES
Language Environment Programming Guide
1. If the main program is called by a program written in another language that does not
follow Language Environment linkage conventions, return is to this calling program.
2. If the thread is the initial thread of execution in an enclave, the enclave is terminated.
A subprogram is usually left in its last-used state when it terminates with EXIT
PROGRAM or GOBACK. The next time the subprogram is called in the run unit, its
internal values will be as they were left, except that return values for PERFORM
statements will be reset to their initial values. (In contrast, a main program is
initialized each time it is called.)
There are some cases where programs will be in their initial state:
v A subprogram that is dynamically called and then canceled will be in the initial
state the next time it is called.
v A program with the INITIAL attribute will be in the initial state each time it is
called.
v Data items defined in the LOCAL-STORAGE SECTION will be reset to the initial state
specified by their VALUE clauses each time the program is called.
RELATED CONCEPTS
“Comparison of WORKING-STORAGE and LOCAL-STORAGE” on page 15
Thread termination (Language Environment Programming Guide)
In addition to making calls between Enterprise COBOL programs, you can also
make static and dynamic calls between Enterprise COBOL and programs compiled
with older compilers in all environments including CICS.
When you want to use OS/VS COBOL with Enterprise COBOL, there are
differences in support between non-CICS and CICS:
In a non-CICS environment
You can make static and dynamic calls between Enterprise COBOL and
other COBOL programs.
Exception: You cannot call VS COBOL II or OS/VS COBOL programs in
the UNIX environment.
In a CICS environment
You cannot call OS/VS COBOL programs in the CICS environment. You
must use EXEC CICS LINK to transfer control between OS/VS COBOL
programs and other COBOL programs.
Calls to dynamic link libraries (DLLs) are an alternative to COBOL dynamic CALL,
and are well suited to object-oriented COBOL applications, UNIX programs, and
applications that interoperate with C/C++.
Under z/OS, linking two load modules together results logically in a single
program with a primary entry point and an alternate entry point, each with its
own name. Each name by which a subprogram is to be dynamically called must be
known to the system. You must specify each such name in linkage-editor or binder
control statements as either a NAME or an ALIAS of the load module that contains the
subprogram.
RELATED CONCEPTS
“Nested programs” on page 404
RELATED TASKS
“Making static calls” on page 397
“Making dynamic calls” on page 397
“Making both static and dynamic calls” on page 401
“Calling nested COBOL programs” on page 403
In the static CALL statement, the COBOL program and all called programs are part
of the same load module. When control is transferred, the called program already
resides in storage, and a branch to it takes place. Subsequent executions of the CALL
statement make the called program available in its last-used state, unless the called
program has the INITIAL attribute. In that case, the called program and each
program directly or indirectly contained within it are placed into its initial state
every time the called program is called within a run unit.
If you specify alternate entry points, a static CALL statement can use any alternate
entry point to enter the called subprogram.
RELATED CONCEPTS
“Performance considerations of static and dynamic calls” on page 401
RELATED TASKS
“Calling to and from object-oriented programs” on page 407
“Making dynamic calls”
“Making both static and dynamic calls” on page 401
RELATED REFERENCES
“DYNAM” on page 282
“DLL” on page 281
CALL statement (Enterprise COBOL Language Reference)
In this form of the CALL statement, the called COBOL subprogram is not link-edited
with the main program, but is instead link-edited into a separate load module, and
is loaded at run time only when it is required (that is, when called).
Each subprogram that you call with a dynamic CALL statement can be part of a
different load module that is a member of either the system link library or a
private library that you supply. In either case it must be in an MVS load library; it
cannot reside in the hierarchical file system. When a dynamic CALL statement calls
a subprogram that is not resident in storage, the subprogram is loaded from
secondary storage into the region or partition containing the main program and a
branch to the subprogram is performed.
The first dynamic call to a subprogram within a run unit obtains a fresh copy of
the subprogram. Subsequent calls to the same subprogram (by either the original
caller or any other subprogram within the same run unit) result in a branch to the
If you call the same COBOL program under different run units, a separate copy of
working storage is allocated for each run unit.
Canceling a subprogram
When you issue a CANCEL statement for a subprogram, the storage occupied by the
subprogram is freed, and a subsequent call to the subprogram functions as though
it were the first call. You can cancel a subprogram from a program other than the
original caller.
If the called subprogram has more than one entry point, ensure an intervening
CANCEL statement is issued before you specify different entry points in the dynamic
CALL statement.
RELATED CONCEPTS
“Performance considerations of static and dynamic calls” on page 401
“AMODE switching”
RELATED TASKS
“Making both static and dynamic calls” on page 401
RELATED REFERENCES
“DYNAM” on page 282
CALL statement (Enterprise COBOL Language Reference)
ENTRY statement (Enterprise COBOL Language Reference)
Language Environment Programming Reference
AMODE switching
| When you have an application that has COBOL subprograms, some of the COBOL
| subprograms can be AMODE 31 and some can be AMODE 24. If your application
| consists of only COBOL programs, and you are using only static and dynamic
| calls, each COBOL subprogram will always be entered in the proper AMODE. For
| example, if you are using a COBOL dynamic call from an AMODE 31 COBOL
| program to an AMODE 24 COBOL program, the AMODE is automatically switched.
| The following scenario shows that AMODE problems can arise when procedure
| pointers are used to call COBOL subprograms. This scenario is not supported
| because the COBOL program COBOLY is not entered in the same AMODE each time
| that it is called.
| The following scenario uses a mix of COBOL and assembler language. This
| scenario is not supported because the COBOL program COBOLB is not entered in
| the same AMODE each time that it is called.
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
“Making dynamic calls” on page 397
RELATED REFERENCES
ALL31 (Language Environment Programming Reference)
Statically called programs cannot be deleted (using CANCEL), so static calls might
take more main storage. If storage is a concern, think about using dynamic calls.
Storage usage of calls depends on whether:
v The subprogram is called only a few times. Regardless of whether it is called, a
statically called program is loaded into storage; a dynamically called program is
loaded only when it is called.
v You subsequently delete the dynamically called subprogram with a CANCEL
statement.
You cannot delete a statically called program, but you can delete a dynamically
called program. Using a dynamic call and then a CANCEL statement to delete the
dynamically called program after it is no longer needed in the application (and
not after each call to it) might require less storage than using a static call.
RELATED TASKS
“Making static calls” on page 397
“Making dynamic calls” on page 397
When a dynamic CALL statement and a static CALL statement to the same
subprogram are issued within one program, a second copy of the subprogram is
loaded into storage. Because this arrangement does not guarantee that the
subprogram will be left in its last-used state, results can be unpredictable.
RELATED REFERENCES
“DYNAM” on page 282
The following example shows how you would code static calls:
PROCESS NODYNAM NODLL
IDENTIFICATION DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 RECORD-2 PIC X. (6)
01 RECORD-1. (2)
05 PAY PICTURE S9(5)V99.
05 HOURLY-RATE PICTURE S9V99.
05 HOURS PICTURE S99V9.
. . .
PROCEDURE DIVISION.
CALL “SUBPROG” USING RECORD-1. (1)
CALL “PAYMASTR” USING RECORD-1 RECORD-2. (5)
STOP RUN.
The following example shows how you would code dynamic calls:
DATA DIVISION.
WORKING-STORAGE SECTION.
77 PGM-NAME PICTURE X(8).
01 RECORD-2 PIC x. (6)
01 RECORD-1. (2)
05 PAY PICTURE S9(5)V99.
05 HOURLY-RATE PICTURE S9V99.
05 HOURS PICTURE S99V9.
. . .
PROCEDURE DIVISION.
. . .
MOVE “SUBPROG” TO PGM-NAME.
CALL PGM-NAME USING RECORD-1. (1)
CANCEL PGM-NAME.
MOVE “PAYMASTR” TO PGM-NAME. (4)
CALL PGM-NAME USING RECORD-1 RECORD-2. (5)
STOP RUN.
The following example shows a called subprogram that is called by each of the
two preceding calling programs:
IDENTIFICATION DIVISION.
PROGRAM-ID. SUBPROG.
DATA DIVISION.
LINKAGE SECTION.
01 PAYREC. (2)
10 PAY PICTURE S9(5)V99.
10 HOURLY-RATE PICTURE S9V99.
10 HOURS PICTURE S99V9.
77 PAY-CODE PICTURE 9. (6)
PROCEDURE DIVISION USING PAYREC. (1)
. . .
EXIT PROGRAM. (3)
ENTRY “PAYMASTR” USING PAYREC PAY-CODE. (5)
. . .
GOBACK. (7)
(1) Processing begins in the calling program. When the first CALL statement is
executed, control is transferred to the first statement of the PROCEDURE
DIVISION in SUBPROG, which is the called program.
In any given execution of the called program and either of the two calling
programs, if the values within RECORD-1 are changed between the time of the first
CALL and the second, the values passed at the time of the second CALL statement
will be the changed, not the original, values. If you want to use the original values,
you must save them.
Use either the CALL literal or CALL identifier statement to make calls to nested
programs.
You can call a contained program only from its directly containing program, unless
you identify the contained program as COMMON in its PROGRAM-ID clause. In that case,
you can call the common program from any program that is contained (directly or
indirectly) in the same program as the common program. Only contained
programs can be identified as COMMON. Recursive calls are not allowed.
You cannot use the THREAD option when compiling programs that contain nested
programs.
RELATED CONCEPTS
“Nested programs”
RELATED REFERENCES
“Scope of names” on page 406
CALL statement (Enterprise COBOL Language Reference)
Nested programs
A COBOL program can nest, or contain, other COBOL programs. The nested
programs can themselves contain other programs. A nested program can be
directly or indirectly contained in a program.
The following example describes a nested program structure with directly and
indirectly contained programs:
RELATED TASKS
“Calling nested COBOL programs” on page 403
RELATED REFERENCES
“Scope of names” on page 406
Note that:
v A2 cannot call A1 because A1 is not common and is not contained in A2.
v A1 can call A2 because A2 is common.
Scope of names
Names in nested structures are divided into two classes: local and global. The class
determines whether a name is known beyond the scope of the program that
declares it. A specific search sequence locates the declaration of a name after it is
referenced in a program.
Local names: Names (except the program-name) are local unless declared to be
otherwise. Local names are visible or accessible only within the program in which
they were declared. They are not visible or accessible to contained and containing
programs.
Global names: A name that is global (indicated using the GLOBAL clause) is visible
and accessible to the program in which it is declared and to all the programs that
are directly and indirectly contained in that program. Therefore, the contained
programs can share common data and files from the containing program simply by
referencing the name of the item.
You can declare the same name with the GLOBAL clause more than one time,
providing that each declaration occurs in a different program. Be aware that you
can mask, or hide, a name in a nested structure by having the same name occur in
different programs of the same containing structure. However, this masking could
cause problems during a search for a name declaration.
The search is for a global name, not for a particular type of object associated with
the name such as a data item or file connector. The search stops when any match is
found, regardless of the type of object. If the object declared is of a different type
than that expected, an error condition exists.
To make a recursive call, you must code the RECURSIVE clause on the PROGRAM-ID
paragraph of the recursively called program. If you try to recursively call a
COBOL program that does not have the RECURSIVE clause coded on its PROGRAM-ID
paragraph, a condition is signaled. If the condition remains unhandled, the run
unit will end.
RELATED TASKS
“Identifying a program as recursive” on page 6
RELATED REFERENCES
RECURSIVE attribute (Enterprise COBOL Language Reference)
“THREAD” on page 309
If you must call a COBOL DLL program from a COBOL non-DLL program, other
means that ensure that the DLL linkage mechanism is followed are available.
You can set procedure-pointer and function-pointer data items only by using
format 6 of the SET statement. The SET statement sets the pointer to refer either to
an entry point in the same load module as your program, to a separate load
module, or to an entry point exported from a DLL, depending on the
DYNAM|NODYNAM and DLL|NODLL compiler options. Therefore, consider these factors
when using these pointer data items:
v If you compile your program with the NODYNAM and NODLL options and set your
pointer item to a literal value (to an actual name of an entry point), the value
must refer to an entry point in the same load module as your program.
Otherwise the reference cannot be resolved.
v If you compile your program with the NODLL option and either set your pointer
item to an identifier that will contain the name of the entry point at run time or
set your pointer item to a literal and compile with the DYNAM option, then your
pointer item, whether a literal or variable, must point to an entry point in a
separate load module. The entry point can be either the primary entry point or
an alternate entry point named in an ALIAS linkage-editor or binder statement.
v If you compile with the NODYNAM and DLL options and set your pointer item to a
literal value (the actual name of an entry point), the value must refer to an entry
point in the same load module as your program. or to an entry point name that
is exported from a DLL module. In the latter case you must include the DLL
side file for the target DLL module in the link edit of your program load
module.
v If you compile with the NODYNAM and DLL options and set your pointer item to an
identifier (a data item that contains the entry point name at run time), the
identifier value must refer to the entry point name that is exported from a DLL
module. In this case the DLL module name must match the name of the
exported entry point.
If you set your pointer item to an entry address in a dynamically called load
module, and your program subsequently cancels that dynamically called module,
then your pointer item becomes undefined. Reference to it thereafter is not reliable.
RELATED TASKS
“Using procedure or function pointers with DLLs” on page 431
“Accessing JNI services” on page 527
RELATED REFERENCES
“DLL” on page 281
“DYNAM” on page 282
“NAME” on page 291
CANCEL statement (Enterprise COBOL Language Reference)
Procedure pointer (Enterprise COBOL Language Reference)
Function pointer (Enterprise COBOL Language Reference)
ENTRY statement (Enterprise COBOL Language Reference)
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
“Compiling programs to create DLLs” on page 426
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
RELATED REFERENCES
“RENT” on page 299
“DATA” on page 277
ALL31 run-time option (Language Environment Programming Reference)
HEAP run-time option (Language Environment Programming Reference)
This material describes how you can write programs that can share data with other
programs. For the purposes of this discussion, a subprogram is any program called
by another program.
RELATED TASKS
“Passing data”
“Coding the LINKAGE SECTION” on page 414
“Coding the PROCEDURE DIVISION for passing arguments” on page 415
“Passing return code information” on page 419
“Specifying CALL . . . RETURNING” on page 420
“Sharing data by using the EXTERNAL clause” on page 420
“Sharing files between programs (external files)” on page 421
Passing data
You can choose among three ways of passing data between programs:
BY REFERENCE
The subprogram refers to and processes the data items in storage of the
calling program rather than working on a copy of the data.
BY CONTENT
The calling program passes only the contents of the literal or identifier. With
a CALL . . . BY CONTENT, the called program cannot change the value of
the literal or identifier in the calling program, even if it modifies the data
item in which it received the literal or identifier.
BY VALUE
The calling program or method passes the value of the literal or identifier,
not a reference to the sending data item.
The called program or invoked method can change the parameter in the
called program or invoked method. However, because the subprogram or
method has access only to a temporary copy of the sending data item,
these changes do not affect the argument in the calling program.
1. File-names as CALL operands are allowed as an IBM extension to COBOL. Any use of the extension generally
depends on the specific internal implementation of the compiler. Control block field settings might change in
future releases. Any changes made to the control block are the user’s responsibility and not supported by IBM.
Storage for arguments is allocated only in the highest outermost program. For
example, program A calls program B, which calls program C. Data items are
allocated in program A and are described in the LINKAGE SECTION of programs B
and C, making the one set of data available to all three programs.
If you reference data in a file, the file must be open when the data is referenced.
Code the USING phrase of the CALL statement to pass the arguments.
Do not pass parameters allocated in storage above the 16-MB line to AMODE 24
subprograms. Use the DATA(24) option if the RENT option is in effect, or the
RMODE(24) option if the NORENT option is in effect.
Code the USING phrase after the PROCEDURE DIVISION header to receive the
parameters.
| When arguments are passed to the subprogram BY REFERENCE, it is invalid for the
| subprogram to specify any relationship between its parameters and any fields
| other than those that are passed that are defined in the main program. The
| subprogram must not:
| v Define a parameter to be larger in bytes than the corresponding argument.
| v Use subscript references to refer to elements beyond the limits of tables that are
| passed as arguments by the calling program.
| v Use reference modification to access data beyond the length of defined
| parameters.
| v Manipulate the address of a parameter in order to access other data items that
| are defined in the calling program.
| If any of these rules are violated, unexpected results might occur when the calling
| program is compiled with the OPTIMIZE compiler option.
The arguments in the USING phrase of the CALL statement must match the
parameters of the called program in number and position.
In a called program, you can test whether an argument was passed as OMITTED by
comparing the address of the corresponding parameter to NULL. For example:
Program-ID. sub1.
. . .
Procedure Division Using RPARM1, RPARM2, RPARM3.
If Address Of RPARM2 = Null Then
Display ’No 2nd argument was passed this time’
Else
Perform Process-Parm-2
End-If
RELATED CONCEPTS
“Storage and its addressability” on page 34
RELATED TASKS
“Specifying CALL . . . RETURNING” on page 420
“Sharing data by using the EXTERNAL clause” on page 420
“Sharing files between programs (external files)” on page 421
RELATED REFERENCES
CALL statement (Enterprise COBOL Language Reference)
INVOKE statement (Enterprise COBOL Language Reference)
You will introduce errors if the number of data-names in the identifier list of a
called program is greater than the number of data-names in the identifier list of the
calling program. The compiler does not try to match arguments and parameters.
The following figure shows a data item being passed from one program to another.
RELATED REFERENCES
The procedure division header (Enterprise COBOL Language Reference)
To make the possibility of mismatched records even smaller, put the level-01 record
into a copy library and copy it in both programs. That is, copy it in the
WORKING-STORAGE SECTION of the calling program and in the LINKAGE SECTION of the
called program.
RELATED TASKS
“Coding the LINKAGE SECTION” on page 414
To determine the length of a null-terminated string and then display the value of
the string:
Inspect N tallying N-length for characters before initial X’00’
Display ’N: ’ N(1:N-length) ’ Length: ’ N-length
RELATED TASKS
“Manipulating null-terminated strings” on page 91
RELATED REFERENCES
Null-terminated alphanumeric literals (Enterprise COBOL Language Reference)
When you pass addresses between programs in a chained list, you can use NULL to
assign the value of an address that is not valid (nonnumeric 0) to pointer items.
You can assign the value NULL to a pointer data item in two ways:
v Use a VALUE IS NULL clause in its data definition.
v Use NULL as the sending field in a SET statement.
In the case of a chained list in which the pointer data item in the last record
contains a null value, the code to check for the end of the list is as follows:
IF PTR-NEXT-REC = NULL
. . .
(logic for end of chain)
The data passed from a calling program might contain header information that you
want to ignore. Because pointer data items are not numeric, you cannot directly
perform arithmetic on them. However, to bypass header information, you can use
the SET statement to increment the passed address.
RELATED TASKS
“Coding the LINKAGE SECTION” on page 414
“Coding the PROCEDURE DIVISION for passing arguments” on page 415
RELATED REFERENCES
SET statement (Enterprise COBOL Language Reference)
The first item in each record points to the next record, except for the last record.
The first item in the last record contains a null value instead of an address, to
indicate that it is the last record.
The high-level logic of an application that processes these records might look as
follows:
OBTAIN ADDRESS OF FIRST RECORD IN CHAINED LIST FROM ROUTINE
CHECK FOR END OF THE CHAINED LIST
DO UNTIL END OF THE CHAINED LIST
PROCESS RECORD
GO ON TO THE NEXT RECORD
END
The following code contains an outline of the calling program, LISTS, used in this
example of processing a chained list.
IDENTIFICATION DIVISION.
PROGRAM-ID. LISTS.
ENVIRONMENT DIVISION.
DATA DIVISION.
******
WORKING-STORAGE SECTION.
77 PTR-FIRST POINTER VALUE IS NULL. (1)
77 DEPT-TOTAL PIC 9(4) VALUE IS 0.
******
LINKAGE SECTION.
01 SALARY-REC.
02 PTR-NEXT-REC POINTER. (2)
IF DEPT = DEPT-X
THEN ADD SALARY TO DEPT-TOTAL
ELSE CONTINUE
END-IF
SET ADDRESS OF SALARY-REC TO PTR-NEXT-REC (6)
END-PERFORM
******
DISPLAY DEPT-TOTAL
GOBACK.
(1) PTR-FIRST is defined as a pointer data item with an initial value of NULL.
On a successful return from the call to CHAIN-ANCH, PTR-FIRST contains the
address of the first record in the chained list. If something goes wrong
with the call, however, and PTR-FIRST never receives the value of the
address of the first record in the chain, a null value remains in PTR-FIRST
and, according to the logic of the program, the records will not be
processed.
(2) The LINKAGE SECTION of the calling program contains the description of the
records in the chained list. It also contains the description of the
department code that is passed, using the USING clause of the CALL
statement.
(3) To obtain the address of the first SALARY-REC record area, the LISTS
program calls the program CHAIN-ANCH:
(4) The SET statement bases the record description SALARY-REC on the address
contained in PTR-FIRST.
(5) The chained list in this example is set up so that the last record contains an
address that is not valid. This check for the end of the chained list is
accomplished with a do-while structure where the value NULL is assigned
to the pointer data item in the last record.
(6) The address of the record in the LINKAGE-SECTION is set equal to the
address of the next record by means of the pointer data item sent as the
first field in SALARY-REC. The record-processing routine repeats, processing
the next record in the chained list.
To increment addresses received from another program, you could set up the
LINKAGE SECTION and PROCEDURE DIVISION like this:
RELATED TASKS
“Using pointers to process a chained list” on page 416
You can also use the RETURNING phrase on the PROCEDURE DIVISION header in your
method to return information to an invoking program or method. If you use
PROCEDURE DIVISION . . . RETURNING with CALL . . . RETURNING, the RETURN-CODE
register will not be set.
You might need to think about this handling of the RETURN-CODE when control is
returned to a COBOL program from a non-COBOL program. If the non-COBOL
program does not use register 15 to pass back the return code, then the
RETURN-CODE special register of the COBOL program might be updated with a
value that is not valid. Unless you set this special register to a meaningful value
before your Enterprise COBOL program returns to the operating system, a return
code that is not valid will be passed back to the system.
For equivalent function between COBOL and C programs, have your COBOL
program call the C program with the RETURNING option. If the C program (function)
correctly declares a function value, the RETURNING value of the calling COBOL
program will be set.
You cannot set the RETURN-CODE special register by using the INVOKE statement.
When the called program successfully returns to its caller, the value in dataname2 is
stored into the identifier that you specified in the RETURNING phrase of the CALL
statement:
CALL . . . RETURNING dataname2
You must define dataname2 in the DATA DIVISION of the calling COBOL program.
The data type of the return value that is declared in the target function must be
identical to the data type of dataname2.
In the run unit, any COBOL program or method that has the same data description
for the item as the program containing the item can access and process the data
item. For example, suppose program A has the following data description:
01 EXT-ITEM1 EXTERNAL PIC 99.
Program B could access that data item by having the identical data description in
its WORKING-STORAGE SECTION.
Remember, any program that has access to an EXTERNAL data item can change its
value. Do not use this clause for data items that you need to protect.
RELATED REFERENCES
EXTERNAL clause (Enterprise COBOL Language Reference)
Name Function
ef1 The main program, which calls all the subprograms and then verifies the
contents of a record area
ef1openo Opens the external file for output and checks the file status code
ef1write Writes a record to the external file and checks the file status code
ef1openi Opens the external file for input and checks the file status code
ef1read Reads a record from the external file and checks the file status code
ef1close Closes the external file and checks the file status code
Each program in the example declares a data item with the EXTERNAL clause in its
WORKING-STORAGE SECTION. This item is used for checking file status codes and is
also placed using the COPY statement.
Depending on whether you want a DLL load module or a load module that
references a separate DLL, you need to use slightly different compiler and
linkage-editor or binder options.
RELATED CONCEPTS
“Dynamic link libraries (DLLs)”
RELATED TASKS
“Using CALL identifier with DLLs” on page 429
“Using DLL linkage and dynamic calls together” on page 430
“Using COBOL DLLs with C/C++ programs” on page 434
“Using DLLs in OO COBOL applications” on page 434
“Compiling programs to create DLLs” on page 426
“Linking DLLs” on page 427
“Using procedure and function pointers” on page 407
Although some functions of z/OS DLLs overlap the functions provided by COBOL
dynamic CALL statements, DLLs have several advantages over regular z/OS load
modules and dynamic calls:
v DLLs are common across COBOL and C/C++, thus providing better
interoperation for applications that use multiple programming languages.
Reentrant COBOL and C/C++ DLLs can also interoperate smoothly.
v You can make calls to programs in separate DLL modules that have long
program names. (Dynamic call resolution truncates program names to eight
characters.) Using the COBOL option PGMNAME(LONGUPPER) or PGMNAME(LONGMIXED)
and the COBOL DLL support, you can make calls between load modules with
names of up to 160 characters.
RELATED REFERENCES
“PGMNAME” on page 297
Binder support for DLLs (z/OS DFSMS: Program Management)
In an application with DLL support, use the following compiler options depending
on where the programs or classes are:
Table 64. Compiler options for DLL applications
Programs or classes in: Compile with:
Root load module DLL, RENT, NOEXPORTALL
DLL load modules used by other load modules DLL, RENT, EXPORTALL
RELATED TASKS
“Linking DLLs”
“Prelinking certain DLLs” on page 429
Chapter 26, “Creating a DLL or a DLL application,” on page 425
RELATED REFERENCES
“DLL” on page 281
“EXPORTALL” on page 283
“RENT” on page 299
Linking DLLs
You can link your DLL-enabled object modules into separate DLL load modules, or
you can link them together statically. You can decide whether to package the
application as one module or as several DLL modules at link time.
Use of the DLL support in the DFSMS binder is recommended for linking DLL
applications. The DFSMS binder can directly receive the output of the COBOL
compilers, thus eliminating the prelink step. However, you must use the Language
Environment prelinker before standard linkage editing if your DLL must reside in
a PDS load library.
A binder-based DLL must reside in a PDSE or in an HFS file rather than in a PDS.
When linking a DLL application by using the DFSMS binder, use the following
binder options:
Table 65. Binder options for DLL applications
Type of code Link using binder parameters:
DLL applications DYNAM(DLL), RENT, COMPAT(PM3) or
COMPAT(CURRENT)
Applications that use mixed-case exported CASE(MIXED)
program names
You must specify a SYSDEFSD DD statement to indicate the data set where the binder
should create a DLL definition side file. This side file contains IMPORT control
statements for each symbol exported by a DLL. The binder SYSLIN input (the
binding code that references the DLL code) must include the DLL definition side
files for the DLLs that are to be referenced from the module being linked.
If there are programs in the module that you do not want to make available with
DLL linkage, you can edit the definition side file to remove these programs.
RELATED REFERENCES
Binder support for DLLs (z/OS DFSMS: Program Management)
After compiling your source DLL, prelink the object modules to form a single
object module:
1. Specify a SYSDEFSD DD statement for the prelink step to indicate the data set
where the prelinker should create a DLL definition side file for the DLL. This
side file contains IMPORT prelinker control statements for each symbol exported
by the DLL. The prelinker uses this side file to prelink other modules that
reference the new DLL.
2. Specify the DLLNAME(xxx) prelinker option to indicate the DLL load module
name for the prelinker to use in constructing the IMPORT control statements in
the side file. Alternatively, the prelinker can obtain the DLL load module name
from the NAME prelinker control statement or from the PDS member name in the
SYSMOD DD statement for the prelink step.
3. If this DLL references any other DLLs, include the definition side files for these
DLLs together with the object decks that are input to this prelink step. These
side files instruct the prelinker to resolve the symbolic references in the current
module to the symbols exported from the other DLLs.
Use the linkage editor or binder as usual to create the DLL load module from the
object module produced by the prelinker. Specify the RENT option of the linkage
editor or binder.
RELATED TASKS
“Compiling programs to create DLLs” on page 426
“Linking DLLs” on page 427
For the contents of the identifier or for the literal in the CALL statement, use the
name of either of the following programs:
v A nested program in the same compilation unit as is eligible to be called from
the program containing the CALL identifier statement.
v A program in a separately bound DLL module. The target program name must
be exported from the DLL, and the DLL module name must match the exported
name of the target program.
In the nonnested case, the run-time environment interprets the program name in
the identifier according to the setting of the PGMNAME compiler option of the program
containing the CALL statement, and interprets the program name that is exported
from the target DLL according to the setting of the PGMNAME option used when the
target program was compiled.
The search for the target DLL in the hierarchical file system (HFS) is case sensitive.
If the target DLL is a PDS or PDSE member, then the DLL member name must be
eight characters or less. For the purpose of the search for the DLL as a PDS or
PDSE member, the run time automatically converts the name to uppercase.
Chapter 26. Creating a DLL or a DLL application 429
If the run-time environment cannot resolve the CALL statement in either of these
cases, control is transferred to the ON EXCEPTION or ON OVERFLOW phrase of the CALL
statement. If the CALL statement does not specify one of these phrases in this
situation, Language Environment raises a severity-3 condition.
RELATED TASKS
“Using DLL linkage and dynamic calls together”
“Compiling programs to create DLLs” on page 426
“Linking DLLs” on page 427
RELATED REFERENCES
“DLL” on page 281
“PGMNAME” on page 297
CALL statement (Enterprise COBOL Language Reference)
“Search order for DLLs in HFS”
If the POSIX run-time option is set to ON, the search order is as follows:
1. The run-time environment looks for the DLL in the HFS. If the LIBPATH
environment variable is set, the run time searches each directory listed.
Otherwise, it searches just the current directory. The search for the DLL in the
HFS is case sensitive.
2. If the run-time environment does not find the DLL in the HFS, it tries to load
the DLL from the MVS load library search order of the caller. In this case, the
DLL name must be eight characters or less. The run time automatically
converts the DLL name to uppercase for this search.
If the POSIX run-time option is set to OFF, the search order is reversed:
1. The run-time environment tries to load the DLL from the search order for the
load library of the caller.
2. If the run-time environment cannot load the DLL from this load library, it tries
to load the DLL from the HFS.
RELATED TASKS
“Using CALL identifier with DLLs” on page 429
RELATED REFERENCES
POSIX (Language Environment Programming Reference)
If a program contains a CALL statement for a separately compiled program and you
compile one program with the DLL compiler option and the other program with
NODLL, then the call is supported only if you bind the two programs together in the
same module.
The following diagram shows several separately bound modules that mix dynamic
calls and DLL linkage:
You cannot cancel programs that are called using DLL linkage.
All components of a DLL application must have the same AMODE. The automatic
AMODE switching normally provided by COBOL dynamic calls is not available
for DLL linkages.
If you compile with the NODYNAM and DLL options and entry-name is an identifier, the
identifier value must refer to the entry point name that is exported from a DLL
RELATED CONCEPTS
“Dynamic link libraries (DLLs)” on page 425
RELATED TASKS
“Using CALL identifier with DLLs” on page 429
“Using procedure and function pointers” on page 407
“Compiling programs to create DLLs” on page 426
“Linking DLLs” on page 427
RELATED REFERENCES
“DLL” on page 281
“EXPORTALL” on page 283
PROCEDURE DIVISION.
IF DLL-NOT-LOADED
THEN
* Move the names in. They must be null terminated.
MOVE Z’OOC05R’ TO DLL-LOADMOD-NAME
MOVE Z’ooc05r’ TO DLL-PROGRAM-NAME
GOBACK.
#include <stdio.h>
#include <dll.h>
#pragma linkage (A1CCDLGT,COBOL)
In particular, COBOL applications can call functions that are exported from C/C++
DLLs. Similarly, C/C++ applications can call COBOL programs that are exported
from COBOL DLLs.
The COBOL options DLL, RENT, and EXPORTALL work much the same way as the DLL,
RENT, and EXPORTALL options in C/C++. However, the C/C++ compiler produces
DLL-enabled code by default. The DLL option applies only to C.
You can pass a C/C++ DLL function pointer to COBOL and use it within COBOL,
receiving the C/C++ function pointer as a COBOL function-pointer data item.
The following example shows a COBOL call to a C function that returns a function
pointer to a service, followed by a COBOL call to the service.
Identification Division.
Program-id. Demo.
Data Division.
Working-Storage section.
01 fp usage function-pointer.
Procedure Division.
Call “c-function” returning fp.
Call fp.
RELATED TASKS
“Compiling programs to create DLLs” on page 426
“Linking DLLs” on page 427
RELATED REFERENCES
“DLL” on page 281
“EXPORTALL” on page 283
“RENT” on page 299
EXTERNAL (Enterprise COBOL Language Reference)
RELATED REFERENCES
“DLL” on page 281
“THREAD” on page 309
“RENT” on page 299
“DBCS” on page 279
COBOL does not directly support managing program threads. However, you can
run COBOL programs that you compile with the THREAD compiler option in
multithreaded application servers, in applications that use a C/C++ driver
program to create the threads, in programs that interoperate with Java and use
Java threads, and in applications that use PL/I tasking. In other words, other
programs can call COBOL programs in such a way that the COBOL programs run
in multiple threads within a process or as multiple program invocation instances
within a thread. Your threaded application must run within a single Language
Environment enclave.
For the data that you want to isolate to an individual program invocation instance,
define the data in the LOCAL-STORAGE SECTION. In general, this choice is appropriate
for working data in threaded programs. If you declare data in WORKING-STORAGE
and your program changes the contents of the data, you must take one of the
following actions:
v Structure your application so that you do not access data in WORKING-STORAGE
simultaneously from multiple threads.
v If you do access data simultaneously from separate threads, write appropriate
serialization code.
RELATED CONCEPTS
“Multithreading”
RELATED TASKS
“Choosing THREAD to support multithreading” on page 439
“Transferring control with multithreading” on page 439
“Processing files with multithreading” on page 440
“Handling COBOL limitations with multithreading” on page 442
RELATED REFERENCES
“THREAD” on page 309
PROGRAM-ID paragraph (Enterprise COBOL Language Reference)
Multithreading
To use COBOL support for multithreading, you need to understand how processes,
threads, run units, and program invocation instances relate to each other.
Within a process, an application can initiate one or more threads, each of which is a
stream of computer instructions that controls that thread. A multithreaded process
begins with one stream of instructions (one thread) and can later create other
instruction streams to perform tasks. These multiple threads can run concurrently.
Within a thread, control is transferred between executing programs.
RELATED CONCEPTS
Program Management Model (Language Environment Programming Guide)
Threads (Language Environment Programming Guide)
RELATED TASKS
“Choosing THREAD to support multithreading” on page 439
“Transferring control with multithreading” on page 439
“Processing files with multithreading” on page 440
“Handling COBOL limitations with multithreading” on page 442
In order to run COBOL programs in more than one thread, you must compile all
of the COBOL programs in the run unit with the THREAD option. You must also
compile them with the RENT option and link them with the RENT option of the
binder or linkage editor.
Language restrictions: When you use the THREAD option, you cannot use certain
language elements, as documented in the discussion of the THREAD option.
Recursion: Before you compile a program with the THREAD compiler option, you
must specify the RECURSIVE phrase in the PROGRAM-ID paragraph. If you do not, you
will get an error.
RELATED TASKS
“Sharing data in recursive or multithreaded programs” on page 17
RELATED REFERENCES
“THREAD” on page 309
Ending a program
Use GOBACK to return to the caller of the program. When you use GOBACK from the
first program in a thread, the thread is terminated. If that thread is the initial
thread in an enclave, the entire enclave is terminated.
Use EXIT PROGRAM as you would GOBACK, except from a main program where it has
no effect.
Use STOP RUN to terminate the entire Language Environment enclave and to return
control to the caller of the main program (which might be the operating system).
All threads that are executing within the enclave are terminated.
RELATED CONCEPTS
Enclave termination (Language Environment Programming Guide)
RELATED TASKS
“Ending and reentering main programs or subprograms” on page 394
Automatic serialization also occurs for the implicit MOVE that is associated with the
following statements:
WRITE recordname FROM identifier
READ file-name INTO identifier
With other usage patterns, you must take one of the following actions:
v Verify the safety of your application logic. Ensure that two instances of the
program are never simultaneously active on different threads.
v Code explicit serialization logic by using calls to POSIX services.
To avoid serialization problems when you access a file from multiple threads,
define the data items that are associated with the file (such as file-status data items
and key arguments) in the LOCAL-STORAGE SECTION.
RELATED TASKS
“Closing QSAM files” on page 132
“Closing VSAM files” on page 163
“Coding ERROR declaratives” on page 207
“Calling UNIX/POSIX APIs” on page 386
Example 1
READ F1
. . .
REWRITE R1
The second thread might execute the READ statement after the READ statement is
executed on the first thread but before the REWRITE statement is executed on the
first thread. The REWRITE statement might not update the record that you intended.
To ensure the results that you want, write explicit serialization logic.
Example 2
READ F1
. . .
* Process the data in the FD record description entry for F1
. . .
The second thread might execute the READ statement while the first thread is still
processing a record in the FD record description entry. The second READ statement
would overlay the record that the first thread is still processing. To avoid this
problem, use the recommended technique of READ F1 INTO local-storage-item.
Other cases: You must give similar consideration to other usage patterns that
involve a sequence of related input and output operations, such as START followed
by READ NEXT, or READ followed by DELETE. Take appropriate steps to ensure the
correct processing of file input and output.
In general, you must synchronize access to resources that are visible to the
application within a run unit. Exceptions to this requirement are DISPLAY and
ACCEPT, which you can use from multiple threads and supported COBOL file I/O
statements with the recommended usage pattern; all synchronization is provided
by the run-time environment.
CICS: You cannot run multithreaded applications in the CICS environment. You
can run in the CICS environment a COBOL program that has been compiled with
the THREAD option and that is part of an application that has no multiple threads or
PL/I tasks.
Reentrancy: You must compile your multithreading programs with the RENT
compiler option and link them with the RENT option of the binder or linkage editor.
POSIX and PL/I: If you use POSIX threads in your multithreaded application, you
must specify the Language Environment run-time option POSIX(ON). If the
AMODE: You must run your multithreaded applications with AMODE 31. You can
run a COBOL program that has been compiled with the THREAD option with AMODE
24 as part of an application that does not have multiple threads or PL/I tasks.
IGZBRDGE, IGZETUN, and IGZEOPT: Do not use IGZBRDGE, the macro for
converting static calls to dynamic calls, with programs that have been compiled
with the THREAD option; this macro is not supported. Do not use the modules
IGZETUN (for storage tuning) or IGZEOPT (for run-time options) for applications
where the main program has been compiled with the THREAD option; these CSECTs
are ignored.
UPSI switches: All programs and all threads in an application share a single copy
of UPSI switches. If you modify switches in a threaded application, you must code
appropriate serialization logic.
RELATED TASKS
“Making recursive calls” on page 407
“Processing files with multithreading” on page 440
RELATED CONCEPTS
“XML parser in COBOL”
RELATED TASKS
“Accessing XML documents” on page 449
“Parsing XML documents” on page 449
“Processing XML events” on page 450
“Handling errors in parsing XML documents” on page 465
“Understanding the encoding of XML documents” on page 462
RELATED REFERENCES
Appendix D, “XML reference material,” on page 625
XML specification (www.w3c.org/XML/)
You start this exchange with the parser by using the XML PARSE statement, in which
you designate your processing procedure. Execution of this XML PARSE statement
begins the parsing and establishes your processing procedure with the parser. Each
execution of your procedure causes the XML parser to continue analyzing the XML
document and report the next event, passing back to your procedure the fragment
This figure gives a high-level overview of the basic exchange of control between
the parser and your program:
Normally, parsing continues until the entire XML document has been parsed.
When the XML parser parses XML documents, it checks them for most aspects of
well formedness as defined in the XML specification. A document is well formed if
it adheres to the XML syntax and follows some additional rules such as proper use
of end tags and uniqueness of attribute names.
RELATED TASKS
“Accessing XML documents” on page 449
“Parsing XML documents” on page 449
“Writing procedures to process XML” on page 456
“Handling errors in parsing XML documents” on page 465
“Understanding the encoding of XML documents” on page 462
RELATED REFERENCES
XML specification (www.w3c.org/XML/)
“XML conformance” on page 631
If the XML document that you want to parse is held in a file, use ordinary COBOL
facilities to place the document into a data item in your program:
v A FILE-CONTROL entry to define the file to your program
v The OPEN statement to open the file
v The READ statement to read all the records from the file into an alphanumeric or
national data item that is defined in the WORKING-STORAGE SECTION or
LOCAL-STORAGE SECTION of your program
v Optionally the STRING statement to string all of the separate records together into
one continuous stream, to remove extraneous blanks, and to handle
variable-length records
RELATED TASKS
“Coding COBOL programs to run under CICS” on page 359
Chapter 22, “Developing COBOL programs for IMS,” on page 377
In the XML PARSE statement you first identify the data item (XMLDOCUMENT in the
example) that contains the XML document character stream. In the DATA DIVISION,
you can declare the identifier as a national data item or as an alphanumeric data
item. If it is a national data item, its content must be encoded in Unicode
| UTF-16BE, CCSID 1200. If it is alphanumeric, its content must be encoded with one
of the supported single-byte character sets. (See the related reference below about
coded characters sets for further details.)
| If the identifier is alphanumeric and the XML document does not contain an
encoding declaration, the document is parsed with the code page that is specified
by the CODEPAGE compiler option in effect.
| XML declaration: If the document that you are parsing contains an XML
| declaration, the declaration must begin in the first byte of the document. If the
| string <?xml starts after the first byte of the document, the parser generates an
| exception code. The attribute names that are coded in the XML declaration must all
| be in lowercase characters.
Next you specify the name of the procedure (XMLEVENT-HANDLER in the example)
that is to handle the XML events from the document.
You can end the XML PARSE statement with the explicit scope terminator END-XML.
| Use END-XML to nest an XML PARSE statement that uses the ON EXCEPTION or NOT ON
| EXCEPTION phrase in a conditional statement (for example, in another XML PARSE
| statement or in an XML GENERATE statement).
| The parser passes control to the processing procedure for each XML event. Control
| returns to the parser when the end of the processing procedure is reached. This
exchange of control between the XML parser and the processing procedure
continues until one of the following events occurs:
v The entire XML document has been parsed, as indicated by the END-OF-DOCUMENT
event.
v The parser detects an error in the document and signals an EXCEPTION event, and
the processing procedure does not reset the special register XML-CODE to zero
before returning to the parser.
v You terminate the parsing process deliberately by setting the special register
XML-CODE to -1 before returning to the parser.
RELATED TASKS
“Understanding the encoding of XML documents” on page 462
RELATED REFERENCES
“Coded character sets for XML documents” on page 463
XML PARSE statement (Enterprise COBOL Language Reference)
The events are shown below in the order in which they would occur for the
following sample XML document. The text shown under the “Sample XML text”
headings comes from this sample, with exact text delimited by angle brackets
(<<>>).
| The term “XML text” in the following descriptions means in general the content
| either of XML-TEXT or XML-NTEXT. (The sample XML document below does not
| contain any text that requires XML-NTEXT, however, and thus uses only XML-TEXT.)
| Note that this example begins with an XML declaration. If an XML declaration
| occurs in a document that you are parsing, the declaration must begin in the first
| byte of the document; otherwise, the parser generates an exception code. The
| attribute names that are coded in the XML declaration must all be in lowercase
| characters.
<?xml version=“1.0” encoding=“ibm-1140” standalone=“yes” ?>
<!--This document is just an example-->
<sandwich>
<bread type=“baker's best” />
VERSION-INFORMATION
Description
Occurs within the optional XML declaration for the version
information. XML text contains the version value. An XML
declaration is XML text that specifies the version of XML that is
used and the encoding of the document.
Sample XML text
<<1.0>>
ENCODING-DECLARATION
Description
Occurs within the XML declaration for the optional encoding
declaration. XML text contains the encoding value.
Sample XML text
<<ibm-1140>>
STANDALONE-DECLARATION
Description
Occurs within the XML declaration for the optional standalone
declaration. XML text contains the standalone value.
Sample XML text
<<yes>>
DOCUMENT-TYPE-DECLARATION
Description
Occurs when the parser finds a document type declaration.
Document type declarations begin with the character sequence
’<!DOCTYPE’ and end with a right angle bracket (’>’) character;
some fairly complicated grammar rules describe the content in
| between. (See the XML specification for details. Also see the related
| reference below about code-page-sensitive characters for
| information about coding the exclamation point (!).) For this event,
XML text contains the entire declaration, including the opening
and closing character sequences. This is the only event for which
XML text includes the delimiters.
COMMENT
Description
Occurs for any comments in the XML document. XML text contains
the data between the opening and closing comment delimiters,
| ’<!--’ and ’-->’, respectively. (See the related reference below about
| code-page-sensitive characters for information about coding the
| exclamation point (!).)
Sample XML text
<<This document is just an example>>
START-OF-ELEMENT
Description
Occurs once for each element start tag or empty element tag. XML
text is set to the element name.
Sample XML text
In the order that they occur as START-OF-ELEMENT events:
1. <<sandwich>>
2. <<bread>>
3. <<meat>>
4. <<filling>>
ATTRIBUTE-NAME
Description
Occurs for each attribute in an element start tag or empty element
tag, after a valid name is recognized. XML text contains the
attribute name.
Sample XML text
<<type>>
ATTRIBUTE-CHARACTERS
Description
Occurs for each fragment of an attribute value. XML text contains
the fragment. An attribute value normally consists only of a single
string, even if it is split across lines. The attribute value might
consist of multiple events, however.
Sample XML text
In the order in which they occur as ATTRIBUTE-CHARACTERS events:
1. <<baker>>
2. <<s best>>
ATTRIBUTE-CHARACTER
Description
Occurs in attribute values for the predefined entity references
’&’, ’'’, ’>’, ’<’, and ’"’. See the XML
specification for details of predefined entities.
Sample XML text
<<’>>
ATTRIBUTE-NATIONAL-CHARACTER
Description
Occurs in attribute values for numeric character references
(Unicode code points or “scalar values”) of the form ’&#dd..;’ or
’&#hh..;’, where d and h represent decimal and hexadecimal digits,
respectively. If the scalar value of the national character is greater
than 65,535 (NX’FFFF’), XML-NTEXT contains two encoding units (a
surrogate pair) and has a length of 4 bytes. This pair of encoding
units represents a single character. Do not create characters that are
| not valid by splitting this pair. (See the related reference below
| about code-page-sensitive characters for information about coding
| the number sign (#).)
Sample XML text
The sample does not contain a numeric character reference.
END-OF-ELEMENT
Description
Occurs once for each element end tag or empty element tag when
the parser recognizes the closing angle bracket of the tag. XML text
contains the element name.
Sample XML text
In the order that they occur as END-OF-ELEMENT events:
1. <<bread>>
2. <<meat>>
3. <<filling>>
4. <<sandwich>>
PROCESSING-INSTRUCTION-TARGET
Description
Occurs when the parser recognizes the name that follows the
opening character sequence, ’<?’, of a processing instruction (PI).
PIs allow XML documents to contain special instructions for
applications.
PROCESSING-INSTRUCTION-DATA
Description
Occurs for the data that follows the PI target, up to but not
including the PI closing character sequence, ’?>’. XML text contains
the PI data, which includes trailing, but not leading, white-space
characters.
Sample XML text
<<please use real mayonnaise >>
CONTENT-CHARACTERS
Description
This event represents the principal part of an XML document: the
character data between element start and end tags. XML text
contains this data, which usually consists only of a single string
even if it is split across lines. If the content of an element includes
any references or other elements, the complete content might
consist of several events. The parser also uses the
CONTENT-CHARACTERS event to pass the text of CDATA sections to
your program.
Sample XML text
In the order that they occur as CONTENT-CHARACTERS events:
1. <<Ham >>
2. << turkey>>
3. <<Cheese, lettuce, tomato, etc.>>
4. <<We should add a <relish> element in future!>>
Notice that the content of the meat element in the sample consists
of the string ’Ham ’, the character ’&’, and the string ’ turkey’. The
single-character fragment ’&’ is passed separately as a
CONTENT-CHARACTER event. Also notice the trailing and leading
spaces, respectively, in these two string fragments.
CONTENT-CHARACTER
Description
Occurs in element content for the predefined entity references
’&’, ’'’, ’>’, ’<’, and ’"’. See the XML
specification for details about predefined entities.
Sample XML text
<<&>>
CONTENT-NATIONAL-CHARACTER
Description
Occurs in element content for numeric character references
(Unicode code points or “scalar values”) of the form ’&#dd..;’ or
START-OF-CDATA-SECTION
Description
Occurs at the start of a CDATA section. CDATA sections begin with
the string ’<![CDATA[’ and end with the string ’]]>’. Such sections
are used to “escape” blocks of text that contain characters that
would otherwise be recognized as XML markup. XML text always
contains the opening character sequence ’<![CDATA[’. The parser
passes the content of a CDATA section between these delimiters as
| a single CONTENT-CHARACTERS event. (See the related reference below
| about code-page-sensitive characters for information about coding
| the exclamation point (!) and left square bracket ([).)
Sample XML text
<<<![CDATA[>>
END-OF-CDATA-SECTION
Description
Occurs when the parser recognizes the end of a CDATA section.
| (See the related reference below about code-page-sensitive
| characters for information about coding the right square bracket
| (]).)
Sample XML text
<<]]>>>
UNKNOWN-REFERENCE-IN-ATTRIBUTE
Description
Occurs within attribute values for entity references other than the
five predefined entity references, as shown for
ATTRIBUTE-CHARACTER above.
Sample XML text
The sample does not have any unknown entity references.
UNKNOWN-REFERENCE-IN-CONTENT
Description
Occurs within element content for entity references other than the
predefined entity references, as shown for CONTENT-CHARACTER
above.
END-OF-DOCUMENT
Description
Occurs when document parsing has completed.
Sample XML text
XML text is empty for the END-OF-DOCUMENT event.
EXCEPTION
Description
Occurs when an error in processing the XML document is detected.
For encoding conflict exceptions, which are signaled before parsing
begins, XML-TEXT (for XML documents in an alphanumeric data
item) or XML-NTEXT (for XML documents in a national data item)
either is zero length or contains only the encoding declaration
value from the document.
Sample XML text
The part of the document that was parsed up to and including the
point where the exception (the superfluous ’junk’ after the
</sandwich> tag) was detected.
RELATED REFERENCES
“Code-page-sensitive characters in XML markup” on page 464
XML-EVENT (Enterprise COBOL Language Reference)
4.6 Predefined entities (XML specification at www.w3.org/TR/REC-xml#sec-
predefined-ent)
2.8 Prolog and document type declaration (XML specification at
www.w3.org/TR/REC-xml#sec-prolog-dtd)
For each event that the parser encounters, it passes information to your processing
procedure in several special registers, as shown in the following table. Use these
registers to populate your data structures and to control your processing.
Table 66. Special registers used by the XML parser
Special
register Content Implicit definition and usage
1
XML-EVENT The name of the XML event PICTURE X(30) USAGE DISPLAY
VALUE SPACE
XML-CODE2 An exception code or zero for each PICTURE S9(9) USAGE BINARY
XML event VALUE ZERO
| XML-TEXT1 Text (corresponding to the event that Variable-length elementary
the parser encountered) from the XML alphanumeric data item; 16-MB
document if you specify an size limit
alphanumeric data item for the XML
PARSE identifier
When used in nested programs, these special registers are implicitly defined as
GLOBAL in the outermost program.
For each event except the EXCEPTION event, the value of XML-CODE is zero. If you set
XML-CODE to -1 before you return control to the XML parser for an event other than
EXCEPTION, processing stops with a user-initiated exception (as indicated by the
returned XML-CODE value of -1). The result of changing XML-CODE to any other
nonzero value before returning from any event is undefined.
For the EXCEPTION event, special register XML-CODE contains the exception code.
The following figure shows the flow of control between the parser and your
processing procedure and shows how XML-CODE is used to pass information
between them. The off-page connectors (for example, ) connect the multiple
charts in this information. In particular, in the following figure connects to the
chart Control flow for XML exceptions (page 466), and connects from XML
CCSID exception flow control (page 469).
Control flow between XML parser and program, showing XML-CODE usage
When the parser sets XML-TEXT, XML-NTEXT is undefined (length 0). When the parser
sets XML-NTEXT, XML-TEXT is undefined (length 0).
To determine how many national characters XML-NTEXT contains, use the LENGTH
function. LENGTH OF XML-NTEXT contains the number of bytes, rather than
characters, used by XML-NTEXT.
For alphanumeric items, decide whether the XML data should go at the left
(default) end of your COBOL item or at the right end. If it should go at the right
end, specify the JUSTIFIED RIGHT clause in the declaration of the COBOL item.
RELATED TASKS
“Using national data (Unicode) in COBOL” on page 106
RELATED REFERENCES
“XML PARSE exceptions that allow continuation” on page 625
“XML PARSE exceptions that do not allow continuation” on page 628
XML-CODE (Enterprise COBOL Language Reference)
XML-EVENT (Enterprise COBOL Language Reference)
XML-NTEXT (Enterprise COBOL Language Reference)
XML-TEXT (Enterprise COBOL Language Reference)
Data division.
Working-storage section.
******************************************************************
* XML document, encoded as initial values of data items. *
******************************************************************
1 xml-document.
2 pic x(39) value ’<?xml version=“1.0” encoding=“ibm-1140”’.
2 pic x(19) value ’ standalone=“yes”?>’.
2 pic x(39) value ’<!--This document is just an example-->’.
2 pic x(10) value ’<sandwich>’.
2 pic x(35) value ’ <bread type=“baker's best”/>’.
2 pic x(41) value ’ <?spread please use real mayonnaise ?>’.
2 pic x(31) value ’ <meat>Ham & turkey</meat>’.
2 pic x(40) value ’ <filling>Cheese, lettuce, tomato, etc.’.
2 pic x(10) value ’</filling>’.
2 pic x(35) value ’ <![CDATA[We should add a <relish>’.
2 pic x(22) value ’ element in future!]]>’.
2 pic x(31) value ’ <listprice>$4.99 </listprice>’.
2 pic x(27) value ’ <discount>0.10</discount>’.
2 pic x(11) value ’</sandwich>’.
1 xml-document-length computational pic 999.
******************************************************************
* Sample data definitions for processing numeric XML content. *
******************************************************************
1 current-element pic x(30).
1 xfr-ed pic x(9) justified.
1 xfr-ed-1 redefines xfr-ed pic 999999.99.
1 list-price computational pic 9v99 value 0.
1 discount computational pic 9v99 value 0.
1 display-price pic $$9.99.
Procedure division.
mainline section.
******************************************************************
* Process the transformed content and calculate promo price. *
******************************************************************
display ’ ’
display ’-----+++++***** Using information from XML ’
’*****+++++-----’
display ’ ’
move list-price to display-price
display ’ Sandwich list price: ’ display-price
compute display-price = list-price * (1 - discount)
display ’ Promotional price: ’ display-price
display ’ Get one today!’
xml-handler section.
evaluate XML-EVENT
* ==> Order XML events most frequent first
when ’START-OF-ELEMENT’
display ’Start element tag: <’ XML-TEXT ’>’
move XML-TEXT to current-element
when ’CONTENT-CHARACTERS’
display ’Content characters: <’ XML-TEXT ’>’
* ==> Transform XML content to operational COBOL data item...
evaluate current-element
when ’listprice’
* ==> Using function NUMVAL-C...
compute list-price = function numval-c(XML-TEXT)
when ’discount’
* ==> Using de-editing of a numeric edited item...
move XML-TEXT to xfr-ed
move xfr-ed-1 to discount
end-evaluate
when ’END-OF-ELEMENT’
display ’End element tag: <’ XML-TEXT ’>’
move spaces to current-element
when ’START-OF-DOCUMENT’
compute xml-document-length = function length(XML-TEXT)
display ’Start of document: length=’ xml-document-length
’ characters.’
when ’END-OF-DOCUMENT’
display ’End of document.’
when ’VERSION-INFORMATION’
display ’Version: <’ XML-TEXT ’>’
when ’ENCODING-DECLARATION’
display ’Encoding: <’ XML-TEXT ’>’
when ’STANDALONE-DECLARATION’
display ’Standalone: <’ XML-TEXT ’>’
when ’ATTRIBUTE-NAME’
display ’Attribute name: <’ XML-TEXT ’>’
when ’ATTRIBUTE-CHARACTERS’
display ’Attribute value characters: <’ XML-TEXT ’>’
when ’ATTRIBUTE-CHARACTER’
display ’Attribute value character: <’ XML-TEXT ’>’
when ’START-OF-CDATA-SECTION’
display ’Start of CData: <’ XML-TEXT ’>’
when ’END-OF-CDATA-SECTION’
display ’End of CData: <’ XML-TEXT ’>’
when ’CONTENT-CHARACTER’
display ’Content character: <’ XML-TEXT ’>’
when ’PROCESSING-INSTRUCTION-TARGET’
display ’PI target: <’ XML-TEXT ’>’
when ’PROCESSING-INSTRUCTION-DATA’
display ’PI data: <’ XML-TEXT ’>’
when ’COMMENT’
display ’Comment: <’ XML-TEXT ’>’
when ’EXCEPTION’
compute xml-document-length = function length (XML-TEXT)
display ’Exception ’ XML-CODE ’ at offset ’
xml-document-length ’.’
when other
display ’Unexpected XML event: ’ XML-EVENT ’.’
end-evaluate
.
End program xmlsampl.
Output from parse example: From the following output you can see which
parsing events came from which fragments of the document:
| These sources of encoding information must be consistent with one another. The
| parser signals an XML exception event if it finds a conflict.
| The type of the data item that contains the document is also relevant. The parser
| supports the following combinations:
| v National data items whose contents are encoded using Unicode UTF-16
| v Alphanumeric data items whose contents are encoded using one of the
supported single-byte character sets
| The discovery that the encoding is Unicode UTF-16 also provides the code-page
| information, 1200 UTF-16BE (big-endian), since Unicode is effectively a single large
| code page. Thus, if the parser finds a UTF-16 document in a national data item, it
| ignores external code-page information.
| But if the basic document encoding is ASCII or EBCDIC, the parser needs specific
| code-page information to be able to parse the XML document correctly. This
| additional code-page information is acquired from the document encoding
| declaration or from the external code page.
| The document encoding declaration is an optional part of the XML declaration at the
| beginning of the document. (See the related task about specifying the code page
| for details.)
| The external code page is the value in effect for the CODEPAGE compiler option.
| Finally, the encoding must be one of the supported code pages. (See the related
| reference below about coded character sets for XML documents for details.)
RELATED TASKS
“Specifying the code page” on page 464
RELATED REFERENCES
“Coded character sets for XML documents”
“XML PARSE exceptions that allow continuation” on page 625
“XML PARSE exceptions that do not allow continuation” on page 628
| To parse XML documents that are encoded in other code pages, first convert the
| documents to national characters by using the NATIONAL-OF function. You can
convert the individual pieces of document text that are passed to the processing
procedure in special register XML-NTEXT back to the original code page by using the
DISPLAY-OF function.
RELATED TASKS
“Converting national data” on page 107
“Specifying the code page”
RELATED TASKS
“Understanding the encoding of XML documents” on page 462
When the XML parser detects an error in an XML document, it generates an XML
exception event. The parser realizes this exception event by passing control to your
processing procedure with the following information in special registers:
v XML-EVENT contains ’EXCEPTION’.
v XML-CODE contains a numeric exception code.
| v XML-TEXT (for XML documents in an alphanumeric data item) or XML-NTEXT (for
| XML documents in a national data item) contains the document text up to and
including the point where the exception was detected.
You might be able to handle the exception in your processing procedure and
continue parsing if the numeric exception code is within one of the following
ranges:
v 1-99
v 100,001-165,535
Exceptions in the range 1-49 are fatal errors according to the XML specification.
Therefore the parser does not continue normal parsing even if you handle the
exception. However, the parser does continue scanning for further errors until it
reaches the end of the document or encounters an error that does not allow
continuation. For these exceptions, the parser does not signal any further normal
events except for the END-OF-DOCUMENT event.
Use the following figure to understand the flow of control between the parser and
your processing procedure. The figure illustrates how you can handle certain
exceptions and can use XML-CODE to identify the exceptions. The off-page
connectors (for example, ) connect the multiple charts in this information. In
particular, connects to the chart XML CCSID exception flow control (page 469).
Within this figure, and serve both as off-page and on-page connectors.
You can handle exceptions as explained above only if the exception code passed in
| XML-CODE is within one of the following ranges, which indicate that an encoding
| conflict was detected:
| v 50-99
v 100,001-165,535
| You can do limited handling of exceptions for which the exception code passed in
| XML-CODE is within the range 1-49. After an exception in this range occurs, the
| parser does not signal any further normal events, except for the END-OF-DOCUMENT
| event, even if you set XML-CODE to zero before returning. If you set XML-CODE to
| zero, the parser continues parsing the document and signals any exceptions that it
| finds. (Doing so can be useful as a way of discovering multiple errors in the
| document.) At the end of parsing after an exception in this range, control is passed
| to the statement that you specify in the ON EXCEPTION phrase, if any, otherwise to
| the end of the XML PARSE statement. The special register XML-CODE contains the code
| for the most recent exception that the parser detected.
For all other exceptions, the parser signals no further events, and passes control to
the statement that you specify in the ON EXCEPTION phrase. In this case, XML-CODE
contains the original exception number even if you set XML-CODE to zero in the
processing procedure before returning control to the parser.
If you return control to the parser with XML-CODE set to a nonzero value that is
different from the original exception code, the results are undefined.
In this case, the parser does not signal any further events although an exception
condition exists. Therefore control returns to the ON EXCEPTION phrase, if specified.
In the imperative statement of the ON EXCEPTION phrase, you can test whether
XML-CODE is -1, which would indicate that you terminated parsing deliberately. If
you do not specify an ON EXCEPTION phrase, control returns to the end of the XML
PARSE statement.
You can also terminate parsing after any XML exception event by returning to the
parser without changing XML-CODE. The result is similar to the result of deliberate
termination, except that the parser returns to the XML PARSE statement with
XML-CODE containing the exception number.
| In this case, you can choose to parse with the code page of the document by
subtracting 100,000 from the value in XML-CODE. For instance, if XML-CODE contains
| 101,140, the code page of the document is 1140. Alternatively, you can choose to
| parse with the external code page by setting XML-CODE to zero before returning to
| the parser.
The parser takes one of three actions after returning from a processing procedure
for a code-page conflict exception event:
| v If you set XML-CODE to zero, the parser uses the external code page: the CODEPAGE
| compiler option value.
v If you set XML-CODE to the code page of the document (that is, the original
XML-CODE value minus 100,000), the parser uses the code page of the document.
This is the only case where the parser continues when XML-CODE has a nonzero
value upon returning from a processing procedure.
v Otherwise, the parser stops processing the document and returns control to the
XML PARSE statement with an exception condition. XML-CODE contains the
exception code that was originally passed to the exception event.
The following figure illustrates these actions. The off-page connectors (for example,
) connect the multiple charts in this information. In particular, in the
following figure connects to Control flow between XML parser and program,
showing XML-CODE usage (page 457), and connects from Control flow for
XML exceptions (page 466).
RELATED TASKS
“Understanding the encoding of XML documents” on page 462
RELATED REFERENCES
“XML PARSE exceptions that allow continuation” on page 625
“XML PARSE exceptions that do not allow continuation” on page 628
XML-CODE (Enterprise COBOL Language Reference)
| After you transform COBOL data items to XML, you can use the resulting XML
| output in various ways, such as deploying it in a Web service, passing it as a
| message to WebSphere MQ, or transmitting it for subsequent conversion to a CICS
| communication area.
RELATED TASKS
“Generating XML output”
“Enhancing XML output” on page 476
“Controlling the encoding of generated XML output” on page 480
“Handling errors in generating XML output” on page 480
| In the XML GENERATE statement, you first identify the data item (XML-OUTPUT in the
| example) that is to receive the XML output. Define the data item to be large
| enough to contain the generated XML output, typically five to eight times the size
| of the COBOL source data depending on the length of its data-name or
| data-names.
| In the DATA DIVISION, you can declare the identifier as an alphanumeric data item
| or as a national data item. You must declare it as USAGE NATIONAL if the CODEPAGE
| compiler option specifies a DBCS code page or the XML output will contain any
| data from the COBOL source record that has any of the following characteristics:
| v Is described implicitly or explicitly with the USAGE NATIONAL phrase or the USAGE
| DISPLAY-1 phrase
| v Has a DBCS name (that is, is a data item whose name contains DBCS characters)
| v Is an alphanumeric data item that contains DBCS characters
| Some COBOL data items are not transformed to XML, but are ignored. Subordinate
| data items of a group data item that you transform to XML are ignored if they:
| v Specify the REDEFINES clause, or are subordinate to such a redefining item
| v Specify the RENAMES clause
| There must be at least one elementary data item that is not ignored when you
| generate XML. For the data items that are not ignored, ensure that the identifier
| that you are transforming to XML satisfies these conditions when you declare it in
| the DATA DIVISION:
| v Each elementary data item is either an index data item or belongs to one of
| these classes:
| – Alphabetic
| – Alphanumeric
| – Numeric
| – National
| That is, no elementary data item is described with the USAGE POINTER, USAGE
| FUNCTION-POINTER, USAGE PROCEDURE-POINTER, or USAGE OBJECT REFERENCE phrase.
| v Each data-name other than FILLER is unique within the immediately containing
| group, if any.
| v Any DBCS data-names, when converted to Unicode, are legal as names in the
| XML specification, version 1.0.
| v The data item or items do not specify the DATE FORMAT clause, or the DATEPROC
| compiler option is not in effect.
| An XML declaration is not generated. No white space (for example, new lines or
| indentation) is inserted to make the generated XML more readable.
| Optionally, you can code the COUNT IN phrase to obtain the number of XML
| character positions that are filled during generation of the XML output. Declare the
| count field as an integer data item that does not have the symbol P in its PICTURE
| string. You can use the count field and reference modification to obtain only that
| portion of the receiving data item that contains the generated XML output. For
| example, XML-OUTPUT(1:XML-CHAR-COUNT) references the first XML-CHAR-COUNT
| character positions of XML-OUTPUT.
| In addition, you can specify either or both of the following phrases to receive
| control after generation of the XML document:
| v ON EXCEPTION, to receive control if an error occurs during XML generation
| v NOT ON EXCEPTION, to receive control if no error occurs
| You can end the XML GENERATE statement with the explicit scope terminator
| END-XML. Code END-XML to nest an XML GENERATE statement that has the ON
| EXCEPTION or NOT ON EXCEPTION phrase in a conditional statement.
| If no error occurs during XML generation, special register XML-CODE contains zero,
| and control is passed to the NOT ON EXCEPTION phrase if specified or to the end of
| the XML GENERATE statement otherwise.
RELATED TASKS
“Controlling the encoding of generated XML output” on page 480
“Handling errors in generating XML output” on page 480
RELATED REFERENCES
XML GENERATE statement (Enterprise COBOL Language Reference)
Operation of XML GENERATE (Enterprise COBOL Language Reference)
XML specification (www.w3c.org/XML/)
| Program XGFX uses XML GENERATE to produce XML output in elementary data item
| xmlPO from the source record, group data item purchaseOrder. Elementary data
| items in the source record are converted to character format as necessary, and the
| characters are inserted in XML elements whose names are derived from the
| data-names in the source record.
| XGFX calls program Pretty, which uses the XML PARSE statement with processing
| procedure p to format the XML output with new lines and indentation so that the
| XML content can more easily be verified.
Program XGFX
| Identification division.
| Program-id. XGFX.
| Data division.
| Working-storage section.
| 01 numItems pic 99 global.
| 01 purchaseOrder global.
| 05 orderDate pic x(10).
| 05 shipTo.
| 10 country pic xx value ’US’.
| 10 name pic x(30).
| 10 street pic x(30).
| 10 city pic x(30).
| 10 state pic xx.
| 10 zip pic x(10).
| 05 billTo.
| 10 country pic xx value ’US’.
| 10 name pic x(30).
| 10 street pic x(30).
| 10 city pic x(30).
| 10 state pic xx.
| 10 zip pic x(10).
| 05 orderComment pic x(80).
RELATED TASKS
Chapter 28, “Processing XML input,” on page 447
RELATED REFERENCES
Operation of XML GENERATE (Enterprise COBOL Language Reference)
| There are various ways that you can deal with such situations. One possible
| technique is to define a new data item that has the appropriate characteristics, and
| move the required data to the appropriate fields of this new data item. However,
| this approach is somewhat laborious and requires careful maintenance to keep the
| original and new data items synchronized.
| The safest way to accomplish these changes is to use another copy of the original
| declarations accompanied by one or more REPLACE compiler-directing statements.
RELATED REFERENCES
Operation of XML GENERATE (Enterprise COBOL Language Reference)
| When this data structure is populated with some sample values, and XML is
| generated directly from it and then formatted using program Pretty (shown in
| “Example: generating XML” on page 473), the result is as follows:
| <CDR-LIFE-BASE-VALUES-BOX>
| <CDR-LIFE-BASE-VAL-DATE>01/02/03</CDR-LIFE-BASE-VAL-DATE>
| <CDR-LIFE-BASE-VALUE-LINE>
| <CDR-LIFE-BASE-DESC>
| <CDR-LIFE-BASE-DESC1>First</CDR-LIFE-BASE-DESC1>
| <CDR-LIFE-BASE-LIT> </CDR-LIFE-BASE-LIT>
| <CDR-LIFE-BASE-DTE>01/01/01</CDR-LIFE-BASE-DTE>
| </CDR-LIFE-BASE-DESC>
| <CDR-LIFE-BASE-PRICE>
| <CDR-LIFE-BP-SPACE>$2</CDR-LIFE-BP-SPACE>
| <CDR-LIFE-BP-DASH>3.</CDR-LIFE-BP-DASH>
| <CDR-LIFE-BP-SPACE1>00</CDR-LIFE-BP-SPACE1>
| </CDR-LIFE-BASE-PRICE>
| <CDR-LIFE-BASE-QTY>
| <CDR-LIFE-QTY-SPACE> 1</CDR-LIFE-QTY-SPACE>
| <CDR-LIFE-QTY-DASH>23</CDR-LIFE-QTY-DASH>
| <CDR-LIFE-QTY-SPACE1>.0</CDR-LIFE-QTY-SPACE1>
| </CDR-LIFE-BASE-QTY>
| <CDR-LIFE-BASE-VALUE> $765.00</CDR-LIFE-BASE-VALUE>
| </CDR-LIFE-BASE-VALUE-LINE>
| <CDR-LIFE-BASE-VALUE-LINE>
| <CDR-LIFE-BASE-DESC>
| <CDR-LIFE-BASE-DESC1>Second</CDR-LIFE-BASE-DESC1>
| <CDR-LIFE-BASE-LIT> </CDR-LIFE-BASE-LIT>
| <CDR-LIFE-BASE-DTE>02/02/02</CDR-LIFE-BASE-DTE>
| </CDR-LIFE-BASE-DESC>
| <CDR-LIFE-BASE-PRICE>
| <CDR-LIFE-BP-SPACE>$3</CDR-LIFE-BP-SPACE>
| <CDR-LIFE-BP-DASH>4.</CDR-LIFE-BP-DASH>
| <CDR-LIFE-BP-SPACE1>00</CDR-LIFE-BP-SPACE1>
| </CDR-LIFE-BASE-PRICE>
| <CDR-LIFE-BASE-QTY>
| <CDR-LIFE-QTY-SPACE> 2</CDR-LIFE-QTY-SPACE>
| <CDR-LIFE-QTY-DASH>34</CDR-LIFE-QTY-DASH>
| <CDR-LIFE-QTY-SPACE1>.0</CDR-LIFE-QTY-SPACE1>
| </CDR-LIFE-BASE-QTY>
| <CDR-LIFE-BASE-VALUE> $654.00</CDR-LIFE-BASE-VALUE>
| </CDR-LIFE-BASE-VALUE-LINE>
| <CDR-LIFE-BASE-TOT-VALUE-LINE>
| <CDR-LIFE-BASE-TOT-VALUE>Very high!</CDR-LIFE-BASE-TOT-VALUE>
| </CDR-LIFE-BASE-TOT-VALUE-LINE>
| </CDR-LIFE-BASE-VALUES-BOX>
| These and other characteristics of the XML output can be remedied by redefining
| the storage as follows:
| The result of generating and formatting XML from the set of definitions of the data
| values shown above is more usable:
| <BaseValues>
| <BaseValueDate>01/02/03</BaseValueDate>
| <BaseValueLine>
| <Description>First</Description>
| <BaseDate>01/01/01</BaseDate>
| <BasePrice>$23.00</BasePrice>
| <BaseQuantity>123.000</BaseQuantity>
| <BaseValue>$765.00</BaseValue>
| </BaseValueLine>
| <BaseValueLine>
| <Description>Second</Description>
| <BaseDate>02/02/02</BaseDate>
| <BasePrice>$34.00</BasePrice>
| <BaseQuantity>234.000</BaseQuantity>
| <BaseValue>$654.00</BaseValue>
| </BaseValueLine>
| <TotalValue>Very high!</TotalValue>
| </BaseValues>
| You can redefine the original data definition directly, as shown above. However, it
| is generally safer to use the original definition, but to modify it suitably using the
| text-manipulation capabilities of the compiler. An example is shown in the REPLACE
| compiler-directing statement below. This REPLACE statement might appear
| complicated, but it has the advantage of being self-maintaining if the original data
| definitions are modified.
| replace ==CDR-LIFE-BASE-VALUES-BOX== by
| ==BaseValues redefines CDR-LIFE-BASE-VALUES-BOX==
| ==CDR-LIFE-BASE-VAL-DATE== by ==BaseValueDate==
| ==CDR-LIFE-BASE-VALUE-LINE== by ==BaseValueLine==
| ==20 CDR-LIFE-BASE-DESC.== by ====
| ==CDR-LIFE-BASE-DESC1== by ==Description==
| ==CDR-LIFE-BASE-LIT== by ====
| ==CDR-LIFE-BASE-DTE== by ==BaseDate==
| ==20 CDR-LIFE-BASE-PRICE.== by ====
| ==25 CDR-LIFE-BP-SPACE PIC X(02).== by ====
| ==25 CDR-LIFE-BP-DASH PIC X(02).== by ====
| ==25 CDR-LIFE-BP-SPACE1 PIC X(02).== by ====
| ==CDR-LIFE-BASE-PRICE-ED== by ==BasePrice==
| ==REDEFINES CDR-LIFE-BASE-PRICE PIC $$$.$$.== by
| ==pic x(6) justified.==
| ==20 CDR-LIFE-BASE-QTY.
| 25 CDR-LIFE-QTY-SPACE PIC X(08).
| 25 CDR-LIFE-QTY-DASH PIC X(02).
| 25 CDR-LIFE-QTY-SPACE1 PIC X(02).
| 25 FILLER PIC X(02).== by ====
| ==CDR-LIFE-BASE-QTY-ED== by ==BaseQuantity==
| ==REDEFINES CDR-LIFE-BASE-QTY PIC ZZ,ZZZ,ZZZ.ZZZ.== by
| ==pic x(14) justified.==
| ==CDR-LIFE-BASE-VALUE-ED== by ==BaseValue==
| ==20 CDR-LIFE-BASE-VALUE PIC X(15).== by ====
| ==REDEFINES CDR-LIFE-BASE-VALUE PIC $(4),$$$,$$9.99.==
| The result of this REPLACE statement followed by a second instance of the original
| set of definitions is similar to the suggested redefinition of group item BaseValues
| shown above. This REPLACE statement illustrates a variety of techniques for
| eliminating unwanted definitions and for modifying the definitions that should be
| retained. Use whichever technique is appropriate for your situation.
RELATED REFERENCES
Operation of XML GENERATE (Enterprise COBOL Language Reference)
REPLACE statement (Enterprise COBOL Language Reference)
| For details about how data items are converted to XML and how the XML element
| names are formed from the COBOL data-names, see the related reference below
| about the operation of the XML GENERATE statement.
RELATED REFERENCES
“CODEPAGE” on page 274
Operation of XML GENERATE (Enterprise COBOL Language Reference)
| To handle errors, use either or both of the following phrases of the XML GENERATE
| statement:
| v ON EXCEPTION
| v COUNT IN
| If you code the ON EXCEPTION phrase in the XML GENERATE statement, control is
| transferred to the imperative statement that you specify. You might code an
| imperative statement, for example, to display the XML-CODE value. If you do not
| code an ON EXCEPTION phrase, control is transferred to the end of the XML GENERATE
| statement.
| You can examine the generated XML output by doing these steps:
| 1. Code the COUNT IN phrase in the XML GENERATE statement.
| The count field that you specify holds a count of the XML character positions
| that are filled during XML generation. If you define the XML output as a
| national data item, the count is in national character positions (UTF-16
| character encoding units); otherwise the count is in bytes.
| 2. Use the count field with reference modification to refer to the substring of the
| receiving data item that contains the generated XML output.
| For example, if XML-OUTPUT is the data item that receives the XML output, and
| XML-CHAR-COUNT is the count field, then XML-OUTPUT(1:XML-CHAR-COUNT)
| references the XML output.
| Use the contents of XML-CODE to determine what corrective action to take. For a list
| of the exceptions that can occur during XML generation, see the related reference
| below.
RELATED TASKS
“Referring to substrings of data items” on page 93
RELATED REFERENCES
“XML GENERATE exceptions” on page 633
OO programs are based on objects (entities that encapsulate state and behavior) and
their classes, methods, and data. A class is a template that defines the state and the
capabilities of an object. Usually a program creates and works with multiple object
instances (or simply, instances) of a class, that is, multiple objects that are members
of that class. The state of each instance is stored in data known as instance data,
and the capabilities of each instance are called instance methods. A class can define
data that is shared by all instances of the class, known as factory or static data, and
methods that are supported independently of any object instance, known as factory
or static methods.
In Enterprise COBOL programs, you can call the services provided by the Java
Native Interface (JNI) to obtain Java-oriented capabilities in addition to the basic
OO capabilities available directly in the COBOL language.
In Enterprise COBOL classes, you can code CALL statements to interface with
procedural COBOL programs. Thus COBOL class definition syntax can be
especially useful for writing wrapper classes for procedural COBOL logic, enabling
existing COBOL code to be accessed from Java.
Java code can create instances of COBOL classes, invoke methods of these classes,
and can extend COBOL classes.
It is recommended that you develop and run OO COBOL programs and Java
programs in the z/OS UNIX System Services environment.
| Restrictions:
| v COBOL class definitions and methods cannot contain EXEC SQL statements and
| cannot be compiled using the SQL compiler option.
| v COBOL class definitions and methods cannot contain EXEC CICS statements,
| cannot be run in a CICS environment, and cannot be compiled using the CICS
| compiler option.
RELATED TASKS
“Defining a class” on page 488
“Defining a class instance method” on page 493
“Defining a client” on page 502
“Defining a subclass” on page 510
RELATED REFERENCES
The Java Language Specification
Example: accounts
Consider the example of a bank in which customers can open accounts and make
deposits to and withdrawals from their accounts. You could represent an account
by a general-purpose class, called Account. Because there are many customers,
multiple instances of the Account class could exist simultaneously.
Once you determine the classes that you need, your next step is to determine the
methods that the classes need to do their work. An Account class for example must
provide the following services:
v Open the account.
v Get the current balance.
v Deposit to the account.
v Withdraw from the account.
v Report account status.
The following methods for an Account class meet the above needs:
init Open an account and assign it an account number.
getBalance
Return the current balance of the account.
credit Deposit a given sum to the account.
debit Withdraw a given sum from the account.
print Display account number and account balance.
As you design an Account class and its methods, you discover the need for the
class to keep some instance data. Typically, an Account object would need the
following instance data:
v Account number
v Account balance
v Customer information: name, address, home phone, work phone, social security
number, and so forth
To keep the example simple, however, it is assumed that the account number and
account balance are the only instance data that the Account class needs.
Diagrams are helpful when you design classes and methods. The following
diagram depicts a first attempt at a design of the Account class:
The structure below shows how the classes relate to each other, and is known as
the inheritance hierarchy. The Account class inherits directly from the class
java.lang.Object.
Subclasses
In the account example, Account is a general-purpose class. However, a bank could
have many different types of accounts: checking accounts, savings accounts,
mortgage loans, and so forth, all of which have all the general characteristics of
accounts but could have additional characteristics not shared by all types of
accounts.
As you design the CheckingAccount class, you discover the need for a class that
models checks. An instance of class Check would need, at a minimum, instance
data for payer, payee, and the check amount.
RELATED TASKS
“Defining a class”
“Defining a class instance method” on page 493
“Defining a subclass” on page 510
Defining a class
A COBOL class definition consists of an IDENTIFICATION DIVISION and ENVIRONMENT
DIVISION, followed by an optional factory definition and optional object definition,
followed by an END CLASS marker:
Table 71. Structure of class definitions
Section Purpose Syntax
IDENTIFICATION Name the class. Provide “CLASS-ID paragraph for defining a class”
DIVISION inheritance information on page 490 (required)
(required) for it. AUTHOR paragraph (optional)
INSTALLATION paragraph (optional)
DATE-WRITTEN paragraph (optional)
DATE-COMPILED paragraph (optional)
As shown above, you define instance data and methods in the DATA DIVISION and
PROCEDURE DIVISION, respectively, within the OBJECT paragraph of the class
definition. In classes that require data and methods that are to be associated with
the class itself rather than with individual object instances, define a separate DATA
DIVISION and PROCEDURE DIVISION within the FACTORY paragraph of the class
definition.
RELATED TASKS
“WORKING-STORAGE SECTION for defining class instance data” on page 492
“Defining a class instance method” on page 493
“Defining a subclass” on page 510
“Defining a factory section” on page 514
“Describing the computing environment” on page 7
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
A class-name must use single-byte characters and must conform to the normal
rules of formation for a COBOL user-defined word.
You must derive all classes directly or indirectly from the java.lang.Object class.
RELATED TASKS
“REPOSITORY paragraph for defining a class”
RELATED REFERENCES
CLASS-ID paragraph (Enterprise COBOL Language Reference)
User-defined words (Enterprise COBOL Language Reference)
The REPOSITORY paragraph entries indicate that the external class-names of the
classes referred to as Base and Account within the class definition are
java.lang.Object and Account, respectively.
In a REPOSITORY paragraph entry, you must specify the external class-name if the
name contains non-COBOL characters.
You must specify the external class-name for any referenced class that is part of a
Java package. For such a class, specify the external class-name as the fully qualified
name of the package, followed by period (.), followed by the simple name of the
Java class. For example, the Object class is part of the java.lang package, so specify
its external name as java.lang.Object as shown above.
If you do not include the external class-name in a REPOSITORY paragraph entry, the
external class-name is formed from the class-name in the following manner:
v The class-name is converted to uppercase.
v Each hyphen is changed to zero.
v The first character, if a digit, is changed:
– 1-9 are changed to A-I.
– 0 is changed to J.
In the example above, class Account is known externally as Account (in mixed
case) because the external name is spelled using mixed case.
You can optionally include in the REPOSITORY paragraph an entry for the class that
you are defining (Account in this example). You must include an entry for the class
that you are defining if the external class-name contains non-COBOL characters, or
to specify a fully package-qualified class-name if the class is to be part of a Java
package.
RELATED TASKS
“Declaring arrays and strings for Java” on page 532
RELATED REFERENCES
REPOSITORY paragraph (Enterprise COBOL Language Reference)
Identifiers (The Java Language Specification)
Packages (The Java Language Specification)
The external class-name (the name following the class-name and optional IS in the
REPOSITORY paragraph entry) is composed of the fully qualified name of the
package (if any) followed by a period, followed by the simple name of the class.
RELATED TASKS
“REPOSITORY paragraph for defining a class” on page 490
RELATED REFERENCES
REPOSITORY paragraph (Enterprise COBOL Language Reference)
The instance data is allocated when an object instance is created, and exists until
garbage collection of the instance by the Java run time.
You can initialize simple instance data by using VALUE clauses as shown above. You
can initialize more complex instance data by coding customized methods to create
and initialize instances of classes.
RELATED TASKS
“Creating and initializing instances of classes” on page 508
“Freeing instances of classes” on page 509
“Defining a factory method” on page 516
“Coding attribute (get and set) methods” on page 499
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
“Defining a client” on page 502
Definition: The signature of a method consists of the name of the method and the
number and type of its formal parameters. (You define the formal parameters of a
COBOL method in the USING phrase of the method’s PROCEDURE DIVISION header.)
Within a class definition, you do not need to make each method-name unique, but
you do need to give each method a unique signature. (You overload methods by
giving them the same name but a different signature.)
RELATED TASKS
“PROCEDURE DIVISION for defining a class instance method” on page 496
“Overloading an instance method” on page 498
“Overriding an instance method” on page 497
“Invoking methods (INVOKE)” on page 506
“Defining a subclass instance method” on page 513
“Defining a factory method” on page 516
Other Java or COBOL methods or programs (that is, clients) use the method-name
to invoke a method.
RELATED REFERENCES
Meaning of method names (The Java Language Specification)
Identifiers (The Java Language Specification)
METHOD-ID paragraph (Enterprise COBOL Language Reference)
The INPUT-OUTPUT SECTION relates the file-names used in a method definition to the
corresponding file-names as they are known to the operating system. The syntax
for the INPUT-OUTPUT SECTION of a method is the same as the syntax for the
INPUT-OUTPUT SECTION of a program.
RELATED TASKS
“Describing the computing environment” on page 7
RELATED REFERENCES
INPUT-OUTPUT section (Enterprise COBOL Language Reference)
If you define a data item with the same name in both the DATA DIVISION of an
instance method and the DATA DIVISION of the OBJECT paragraph, a reference in the
method to that data-name refers only to the method data item. The method DATA
DIVISION takes precedence.
RELATED TASKS
“Describing the data” on page 12
“Sharing data by using the EXTERNAL clause” on page 420
RELATED REFERENCES
Data Division overview (Enterprise COBOL Language Reference)
You can code most COBOL statements in the PROCEDURE DIVISION of a method that
you can code in the PROCEDURE DIVISION of a program. You cannot, however, code
the following statements in a method:
v ENTRY
v EXIT PROGRAM
v The following obsolete elements of COBOL 85:
– ALTER
– GOTO without a specified procedure-name
– SEGMENT-LIMIT
– USE FOR DEBUGGING
Additionally, because you must compile all COBOL class definitions with the
THREAD compiler option, you cannot use SORT or MERGE statements in a COBOL
method.
You can code the EXIT METHOD or GOBACK statement in an instance method to return
control to the invoking client. Both statements have the same effect. If you specify
the RETURNING phrase upon invocation of the method, the EXIT METHOD or GOBACK
statement returns the value of the data item to the invoking client.
You can specify STOP RUN in a method; doing so terminates the entire run unit
including all threads executing within it.
You must terminate a method definition with an END METHOD marker. For example,
the following statement marks the end of the credit method:
End method “credit”.
RELATED TASKS
“Coding interoperable data types in COBOL and Java” on page 532
“Overriding an instance method”
“Overloading an instance method” on page 498
“Comparing and setting object references” on page 505
“Invoking methods (INVOKE)” on page 506
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
RELATED REFERENCES
“THREAD” on page 309
The procedure division header (Enterprise COBOL Language Reference)
For example, the Account class defines a method debit whose LINKAGE SECTION
and PROCEDURE DIVISION header look like this:
Linkage section.
01 inDebit pic S9(9) binary.
Procedure Division using by value inDebit.
If you define a CheckingAccount subclass and want it to have a debit method that
overrides the debit method defined in the Account superclass, define the subclass
method with exactly one input parameter also specified as pic S9(9) binary. If a
client invokes debit using an object reference to a CheckingAccount instance, the
CheckingAccount debit method (rather than the debit method in the Account
superclass) is invoked.
The presence or absence of a method return value and the data type of the return
value used in the PROCEDURE DIVISION RETURNING phrase (if any) must be identical
in the subclass instance method and the overridden superclass instance method.
RELATED TASKS
“PROCEDURE DIVISION for defining a class instance method” on page 496
“Coding interoperable data types in COBOL and Java” on page 532
“Invoking methods (INVOKE)” on page 506
“Invoking overridden superclass methods” on page 507
“Defining a subclass” on page 510
“Hiding a factory or static method” on page 517
RELATED REFERENCES
Inheritance, overriding, and hiding (The Java Language Specification)
You overload methods when you want to enable clients to invoke different
versions of a method, for example, to initialize data using different sets of
parameters.
For example, the Account class defines an instance method init that has exactly
one formal parameter. The LINKAGE SECTION and PROCEDURE DIVISION header of the
init method look like this:
Linkage section.
01 inAccountNumber pic S9(9) binary.
Procedure Division using by value inAccountNumber.
Clients invoke this method to initialize an Account instance with a given account
number (and a default account balance of zero) by passing exactly one argument
that matches the data type of inAccountNumber.
But the Account class could define, for example, a second instance method init
that has an additional formal parameter that allows the opening account balance to
also be specified. The LINKAGE SECTION and PROCEDURE DIVISION header of this init
method could look like this:
Linkage section.
01 inAccountNumber pic S9(9) binary.
01 inBalance pic S9(9) binary.
Procedure Division using by value inAccountNumber
inBalance.
Clients could invoke either init method by passing arguments that match the
signature of the desired method.
You can overload factory methods in exactly the same way that you overload
instance methods.
The rules for overloaded method definition and resolution of overloaded method
invocations are based on the corresponding rules for Java.
RELATED TASKS
“Invoking methods (INVOKE)” on page 506
“Defining a factory method” on page 516
RELATED REFERENCES
Overloading (The Java Language Specification)
Instance variables in COBOL are private. The class that defines instance variables
fully encapsulates them, and only the instance methods defined in the same OBJECT
paragraph can access them directly. Normally a well-designed object-oriented
application does not need to access instance variables from outside the class.
COBOL does not directly support the concept of a public instance variable as
defined in Java and other object-oriented languages, nor the concept of a class
attribute as defined by CORBA. (A CORBA attribute is an instance variable that has
an automatically generated get method for accessing the value of the variable, and
an automatically generated set method for modifying the value of the variable if
the variable is not read-only.)
RELATED TASKS
“WORKING-STORAGE SECTION for defining class instance data” on page 492
“Processing the data” on page 18
Account class
cbl dll,thread,pgmname(longmixed)
Identification Division.
Class-id. Account inherits Base.
Environment Division.
Configuration section.
Repository.
Class Base is “java.lang.Object”
Class Account is “Account”.
*
* (FACTORY paragraph not shown)
*
Identification division.
Object.
Data division.
Working-storage section.
01 AccountNumber pic 9(6).
01 AccountBalance pic S9(9) value zero.
*
Procedure Division.
*
* init method to initialize the account:
Identification Division.
Method-id. “init”.
Data division.
Linkage section.
01 inAccountNumber pic S9(9) binary.
Procedure Division using by value inAccountNumber.
Move inAccountNumber to AccountNumber.
End method “init”.
*
* getBalance method to return the account balance:
Identification Division.
Method-id. “getBalance”.
Data division.
Linkage section.
01 outBalance pic S9(9) binary.
Procedure Division returning outBalance.
Move AccountBalance to outBalance.
End method “getBalance”.
*
* credit method to deposit to the account:
Identification Division.
Method-id. “credit”.
Data division.
Check class
/**
* A Java class for check information
*/
public class Check {
private CheckingAccount payer;
private Account payee;
private int amount;
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
In a COBOL client, you can also call services provided by the Java Native Interface
(JNI).
A method can request services from another method. Therefore a COBOL method
can act as a client and use the statements discussed in this section.
Because you must compile all COBOL programs that contain object-oriented syntax
or that interoperate with Java with the THREAD compiler option, you cannot use the
following language elements in a COBOL client:
v SORT or MERGE statements
v Nested programs
Any programs that you compile with the THREAD compiler option must be
recursive. You must specify the RECURSIVE clause in the PROGRAM-ID paragraph of
each OO COBOL client program.
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
Chapter 27, “Preparing COBOL programs for multithreading,” on page 437
Chapter 31, “Communicating with Java methods,” on page 527
“Coding interoperable data types in COBOL and Java” on page 532
“Creating and initializing instances of classes” on page 508
“Comparing and setting object references” on page 505
“Invoking methods (INVOKE)” on page 506
“Invoking factory or static methods” on page 517
RELATED REFERENCES
“THREAD” on page 309
The REPOSITORY paragraph entries indicate that the external class-names of the
classes referred to as Account and Check within the client are Account and Check,
respectively.
In the REPOSITORY paragraph, you must code an entry for each class-name that you
explicitly reference in the client.
In a REPOSITORY paragraph entry, you must specify the external class-name if the
name contains non-COBOL characters.
You must specify the external class-name for any referenced class that is part of a
Java package. For such a class, specify the external class-name as the fully qualified
name of the package, followed by period (.), followed by the simple name of the
Java class.
If you do not include the external class-name in a REPOSITORY paragraph entry, the
external class-name is formed from the class-name in the same manner as it is
when an external class-name is not included in a REPOSITORY paragraph entry in a
class definition. In the example above, class Account and class Check are known
externally as Account and Check (in mixed case), respectively, because the external
names are spelled using mixed case.
RELATED TASKS
“REPOSITORY paragraph for defining a class” on page 490
RELATED REFERENCES
REPOSITORY paragraph (Enterprise COBOL Language Reference)
Identifiers (The Java Language Specification)
Packages (The Java Language Specification)
Because a client references classes, it needs one or more special data items called
object references, that is, references to instances of the classes. All requests to
instance methods require an object reference to an instance of a class in which the
method is supported (that is, either defined or available by inheritance). You code
object references to refer to instances of Java classes using the same syntax as you
use to code object references to refer to instances of COBOL classes. In the example
above, the phrase usage object reference indicates an object reference data item.
All four object references above are called typed object references because a
class-name appears after the OBJECT REFERENCE phrase. A typed object reference can
refer only to an instance of the class named in the OBJECT REFERENCE phrase or to
one of its subclasses. Thus anAccount can refer to instances of the Account class or
one of its subclasses, but cannot refer to instances of any other class. Similarly,
aCheck can refer only to instances of the Check class or any subclasses that it
might have.
Another type of object reference, not shown above, does not have a class-name
after the OBJECT REFERENCE phrase. Such a reference is called a universal object
reference, which means that it can refer to instances of any class. Avoid coding
universal object references, because they are interoperable with Java in only very
limited circumstances (when used in the RETURNING phrase of the INVOKE
class-name NEW . . . statement).
RELATED REFERENCES
RETURNING phrase (Enterprise COBOL Language Reference)
You can code a call to the JNI service IsSameObject to check whether two object
references, object1 and object2, refer to the same object instance or whether each
refers to no object instance. To ensure that the arguments and return value are
interoperable with Java and to establish addressability to the callable service, code
the following data definitions and statements preceding the call to IsSameObject:
Local-storage Section.
. . .
01 is-same Pic X.
88 is-same-false Value X’00’.
88 is-same-true Value X’01’ Through X’FF’.
Linkage Section.
Copy JNI.
Procedure Division.
Set Address Of JNIEnv To JNIEnvPtr
Set Address Of JNINativeInterface To JNIEnv
. . .
Call IsSameObject Using By Value JNIEnvPtr object1 object2
Returning is-same
If is-same-true . . .
Within a method you can check whether an object reference refers to the object
instance on which the method was invoked by coding a call to IsSameObject that
compares the object reference and SELF.
You can instead invoke the Java equals method (inherited from java.lang.Object) to
determine whether two object references refer to the same object instance.
You can make an object reference refer to no object instance by using the SET
statement. For example:
Set anAccount To Null.
You can also make one object reference refer to the same instance as another object
reference does by using the SET statement. For example:
Set anotherAccount To anAccount.
This SET statement causes anotherAccount to refer to the same object instance as
anAccount does. If the receiver (anotherAccount) is a universal object reference, the
sender (anAccount) can be either a universal or a typed object reference. If the
receiver is a typed object reference, the sender must be a typed object reference
bound to the same class as the receiver or to one of its subclasses.
RELATED TASKS
“Coding interoperable data types in COBOL and Java” on page 532
“Accessing JNI services” on page 527
RELATED REFERENCES
IsSameObject (The Java Native Interface)
In a COBOL client, you can invoke methods defined in Java or COBOL classes by
coding the INVOKE statement. For example:
Invoke Account “createAccount”
using by value 123456
returning anAccount
Invoke anAccount “credit” using by value 500.
The first statement uses the class-name Account to invoke a method called
createAccount, which must be either a Java static method or a COBOL factory
method supported (that is, either defined or inherited) in the Account class. using
by value 123456 indicates that 123456 is an input argument to the method, passed
by value. 123456 and anAccount must conform to the definition of the formal
parameters and return type, respectively, of the (possibly overloaded)
createAccount method.
The second INVOKE statement uses the returned object reference anAccount to
invoke the instance method credit defined in the Account class. The input
argument 500 must conform to the definition of the formal parameters of the
(possibly overloaded) credit method.
For example, when you code an INVOKE statement using an object reference (as in
the second statement above), the statement begins with one of the following two
forms:
Invoke objRef “literal-name” . . .
Invoke objRef identifier-name . . .
When the method-name is an identifier, you must define the object reference
(objRef) as USAGE OBJECT REFERENCE with no specified type, that is, as a universal
object reference.
If an invoked method is not supported in the class to which the object reference
refers, a severity-3 Language Environment condition is raised at run time unless
you code the ON EXCEPTION phrase of the INVOKE statement.
You can use the optional scope terminator END-INVOKE with the INVOKE statement.
You must specify that the arguments are passed BY VALUE, which means that the
arguments are not affected by any change to the corresponding formal parameters
in the invoked method. The data type of each argument must be one of the types
that are interoperable with Java.
The item that you specify in the RETURNING phrase of the INVOKE statement must
conform to the type returned by the target method:
v If the target method is implemented in COBOL and the returned item is not an
object reference, code the DATA DIVISION definition of the returned item exactly
like the definition of the RETURNING item in the target method.
v If the target method is implemented in Java, code the DATA DIVISION definition
of the returned item to be interoperable with the returned Java data item.
v If the returned item is an object reference, code the DATA DIVISION definition of
the returned item as an object reference typed to the same class as the object
reference returned by the target method.
In all cases, the data type of the returned value must be one of the types that are
interoperable with Java.
RELATED TASKS
“Overloading an instance method” on page 498
“Coding interoperable data types in COBOL and Java” on page 532
“PROCEDURE DIVISION for defining a class instance method” on page 496
“Invoking overridden superclass methods”
“Invoking factory or static methods” on page 517
“Using national data (Unicode) in COBOL” on page 106
RELATED REFERENCES
INVOKE statement (Enterprise COBOL Language Reference)
For example, suppose that the CheckingAccount class overrides the debit instance
method defined in its immediate superclass, Account. You could invoke the
Account debit method within a method in the CheckingAccount class by coding
this statement:
Invoke Super “debit” Using By Value amount.
The CheckingAccount class overrides the print method that is defined in the
Account class. Because the print method has no formal parameters, a method in
the CheckingAccount class could invoke the superclass print method with this
statement:
Invoke Super “print”.
The keyword SUPER indicates that you want to invoke a superclass method rather
than a method in the current class. (SUPER is an implicit reference to the object used
in the invocation of the currently executing method.)
RELATED TASKS
“Overriding an instance method” on page 497
RELATED REFERENCES
INVOKE statement (Enterprise COBOL Language Reference)
When you code the INVOKE . . . NEW statement within a method, and the use of
the returned object reference is not limited to the duration of the method
invocation, you must convert the returned object reference to a global reference by
calling the JNI service NewGlobalRef:
Call NewGlobalRef using by value JNIEnvPtr object-reference
returning object-reference
If you do not call NewGlobalRef, the returned object reference is only a local
reference, which means that it is automatically freed after the method returns.
For further information about managing local and global references, see the related
task below.
For example, to create an instance of the Check class, initialize its instance data,
and obtain reference aCheck to the Check instance created, you could code this
statement in a COBOL client:
For example, the following statement creates an instance of the Account class,
initializes the instance data as specified in VALUE clauses in the WORKING-STORAGE
SECTION of the OBJECT paragraph of the Account class definition, and provides
reference outAccount to the new instance:
Invoke Account New returning outAccount
To create an instance of the COBOL class and properly initialize it, the client
invokes the parameterized factory method, passing BY VALUE the desired
| arguments. The object reference returned to the client is a local reference. If the
| client code is within a method, and the use of the returned object reference is not
| limited to the duration of that method, the client code must convert the returned
| object reference to a global reference by calling the JNI service NewGlobalRef.
RELATED TASKS
“Accessing JNI services” on page 527
“Managing local and global references” on page 530
“DATA DIVISION for defining a client” on page 504
“Invoking methods (INVOKE)” on page 506
“Defining a factory section” on page 514
“Coding interoperable data types in COBOL and Java” on page 532
RELATED REFERENCES
VALUE clause (Enterprise COBOL Language Reference)
INVOKE statement (Enterprise COBOL Language Reference)
There could be times, however, when you need to explicitly free local or global
references to objects within a native COBOL client in order to permit garbage
collection of the referenced objects to occur.
RELATED TASKS
“Managing local and global references” on page 530
RELATED TASKS
“Defining a factory method” on page 516
“Invoking factory or static methods” on page 517
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
Defining a subclass
You can make a class (called a subclass, derived class, or child class) a
specialization of another class (called a superclass, base class, or parent class). A
subclass inherits the methods and instance data of its superclasses, and is related
to its superclasses by an is-a relationship. For example, if subclass P inherits from
Restriction: You cannot use multiple inheritance in your COBOL programs. Each
COBOL class that you define must have exactly one immediate superclass that is
implemented in Java or COBOL, and each class must be derived directly or
indirectly from java.lang.Object. The semantics of inheritance are as defined by
Java.
The structure and syntax of a subclass definition are identical to those of a class
definition: Define instance data and methods in the DATA DIVISION and PROCEDURE
DIVISION, respectively, within the OBJECT paragraph of the subclass definition. In
subclasses that require data and methods that are to be associated with the
subclass itself rather than with individual object instances, define a separate DATA
DIVISION and PROCEDURE DIVISION within the FACTORY paragraph of the subclass
definition.
COBOL instance data is private. A subclass can access the instance data of a
COBOL superclass only if the superclass defines attribute (get or set) instance
methods for doing so.
RELATED TASKS
“Defining a class” on page 488
“Overriding an instance method” on page 497
“Coding attribute (get and set) methods” on page 499
“Defining a subclass instance method” on page 513
“Defining a factory section” on page 514
RELATED REFERENCES
Inheritance, overriding, and hiding (The Java Language Specification)
COBOL class definition structure (Enterprise COBOL Language Reference)
You must specify the name of the immediate superclass in the REPOSITORY
paragraph in the CONFIGURATION SECTION of the ENVIRONMENT DIVISION. You can
optionally associate the superclass name with the name of the class as it is known
externally. You can also specify the name of the subclass that you are defining
(here, CheckingAccount) in the REPOSITORY paragraph and associate it with its
corresponding external class-name.
RELATED TASKS
“CLASS-ID paragraph for defining a class” on page 490
“Coding attribute (get and set) methods” on page 499
“REPOSITORY paragraph for defining a subclass”
The REPOSITORY paragraph entries indicate that the external class-names of the
classes referred to as CheckingAccount, Check, and Account within the subclass
definition are CheckingAccount, Check, and Account, respectively.
In the REPOSITORY paragraph, you must code an entry for each class-name that you
explicitly reference in the subclass definition. For example:
v A user-defined superclass from which the subclass that you are defining inherits
v The classes that you reference in methods within the subclass definition
The rules for coding REPOSITORY paragraph entries in a subclass are identical to
those for coding REPOSITORY paragraph entries in a class.
RELATED TASKS
“REPOSITORY paragraph for defining a class” on page 490
RELATED REFERENCES
REPOSITORY paragraph (Enterprise COBOL Language Reference)
For example, the definition of the instance data for the CheckingAccount subclass
of the Account class might look like this:
RELATED TASKS
“WORKING-STORAGE SECTION for defining class instance data” on page 492
The structure and syntax of a subclass instance method are identical to those of a
class instance method. Define subclass instance methods in the PROCEDURE DIVISION
of the OBJECT paragraph of the subclass definition.
RELATED TASKS
“Defining a class instance method” on page 493
“Overriding an instance method” on page 497
“Overloading an instance method” on page 498
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
“Invoking methods (INVOKE)” on page 506
“Overriding an instance method” on page 497
“Invoking overridden superclass methods” on page 507
RELATED TASKS
“Defining a class” on page 488
“Creating and initializing instances of classes” on page 508
“Wrapping procedure-oriented COBOL programs” on page 523
“Structuring OO applications” on page 524
You can initialize simple factory data by using VALUE clauses as shown above.
COBOL factory data is equivalent to Java private static data. No other class or
subclass (nor instance method in the same class, if any) can reference COBOL
factory data directly. Factory data is global to all factory methods that the FACTORY
paragraph defines. If you want to make factory data accessible from outside the
FACTORY paragraph, define factory attribute (get or set) methods for doing so.
RELATED TASKS
“Coding attribute (get and set) methods” on page 499
“Creating and initializing instances of classes” on page 508
You typically define factory methods for classes whose instances require complex
initialization, that is, to values that you cannot assign by using VALUE clauses alone.
Within a factory method you can invoke instance methods to initialize the instance
data. A factory method cannot directly access instance data.
You can code factory attribute (get and set) methods to make factory data
accessible from outside the FACTORY paragraph, for example, to make the data
accessible from instance methods in the same class or from a client program. For
example, the Account class could define a factory method getNumberOfAccounts
to return the current tally of the number of accounts.
You can use factory methods to wrap procedure-oriented COBOL programs so that
they are accessible from Java programs. You can code a factory method called main
to enable you to run an OO application by using the java command, and to
structure your applications in keeping with standard Java practice. See the related
tasks for details.
In defining factory methods, you use the same syntax that you use to define
instance methods. A COBOL factory method definition consists of four divisions
(like a COBOL program), followed by an END METHOD marker:
Table 75. Structure of factory method definitions
Division Purpose Syntax
IDENTIFICATION Same as for a class Same as for a class instance method
(required) instance method (required)
ENVIRONMENT Same as for a class Same as for a class instance method
(optional) instance method
DATA (optional) Same as for a class Same as for a class instance method
instance method
PROCEDURE Same as for a class Same as for a class instance method
(optional) instance method
Within a class definition, you do not need to make each factory method-name
unique, but you do need to give each factory method a unique signature. You can
overload factory methods in exactly the same way that you overload instance
methods. For example, the CheckingAccount subclass provides two versions of the
factory method createCheckingAccount: one that initializes the account to have a
default balance of zero, and one that allows the opening balance to be passed in.
Clients can invoke either createCheckingAccount method by passing arguments
that match the signature of the desired method.
If you define a data item with the same name in both the DATA DIVISION of a
factory method and the DATA DIVISION of the FACTORY paragraph, a reference in the
method to that data-name refers only to the method data item. The method DATA
DIVISION takes precedence.
The presence or absence of a method return value and the data type of the return
value used in the PROCEDURE DIVISION RETURNING phrase (if any) must be identical
in the subclass factory method and the hidden superclass method.
RELATED TASKS
“Coding interoperable data types in COBOL and Java” on page 532
“Overriding an instance method” on page 497
“Invoking methods (INVOKE)” on page 506
RELATED REFERENCES
Inheritance, overriding, and hiding (The Java Language Specification)
The procedure division header (Enterprise COBOL Language Reference)
If an invoked method is not supported in the class that you name in the INVOKE
statement, a severity-3 Language Environment condition is raised at run time
unless you code the ON EXCEPTION phrase in the INVOKE statement.
RELATED TASKS
“Invoking methods (INVOKE)” on page 506
“Using national data (Unicode) in COBOL” on page 106
“Coding interoperable data types in COBOL and Java” on page 532
RELATED REFERENCES
INVOKE statement (Enterprise COBOL Language Reference)
You can also find the complete source code for this example in the
cobol/demo/oosample subdirectory in the HFS. Typically the complete path for
the source is /usr/lpp/cobol/demo/oosample. You can use the makefile there to
compile and link the code.
Account class
cbl dll,thread,pgmname(longmixed),lib
Identification Division.
Class-id. Account inherits Base.
Environment Division.
Configuration section.
Repository.
Class Base is “java.lang.Object”
Check class
/**
* A Java class for check information
*/
public class Check {
private CheckingAccount payer;
private Account payee;
private int amount;
RELATED TASKS
“Creating and initializing instances of classes” on page 508
“Defining a factory method” on page 516
“Invoking factory or static methods” on page 517
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
Factory methods provide a convenient means for writing wrappers for existing
procedural COBOL code to make it accessible from Java programs.
A Java program can invoke the factory method by using a static method invocation
expression, thus invoking the COBOL procedural program.
RELATED TASKS
“Defining a class” on page 488
“Defining a factory section” on page 514
“Defining a factory method” on page 516
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
“Defining a factory method” on page 516
“Declaring arrays and strings for Java” on page 532
Chapter 22, “Developing COBOL programs for IMS,” on page 377
Displaying a message:
cbl dll,thread
Identification Division.
Class-id. CBLmain inherits Base.
Environment Division.
Configuration section.
Repository.
Class Base is “java.lang.Object”
Class stringArray is “jobjectArray:java.lang.String”
Class CBLmain is “CBLmain”.
*
Identification Division.
Factory.
Procedure division.
*
Identification Division.
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
“Defining a factory method” on page 516
Chapter 31, “Communicating with Java methods,” on page 527
You can invoke methods that are written in Java from COBOL programs, and you
can invoke methods that are written in COBOL from Java programs. You need to
code COBOL object-oriented language for basic Java object capabilities. For
additional Java capabilities, you can call JNI services.
RELATED TASKS
“Using national data (Unicode) in COBOL” on page 106
“Accessing JNI services”
“Sharing data with Java” on page 531
Chapter 30, “Writing object-oriented programs,” on page 485
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
Chapter 27, “Preparing COBOL programs for multithreading,” on page 437
RELATED REFERENCES
The Java 2 Enterprise Edition Developer’s Guide
You obtain the JNI environment structure by two levels of indirection from the JNI
environment pointer, as this illustration shows:
Before you reference the contents of the JNI environment structure, you must code
the following statements to establish its addressability:
Linkage section.
COPY JNI
. . .
Procedure division.
. . .
Set address of JNIEnv to JNIEnvPtr
Set address of JNINativeInterface to JNIEnv
. . .
After you code the above statements, you can access the JNI callable services with
CALL statements that reference the function pointers. You can pass the JNIEnvPtr
special register as the first argument to the services that require the environment
pointer, as shown in this example:
01 InputArrayObj usage object reference jlongArray.
01 ArrayLen pic S9(9) comp-5.
. . .
Call GetArrayLength using by value JNIEnvPtr InputArrayObj
returning ArrayLen
Restriction: The JNI environment pointer is thread specific, therefore do not pass it
from one thread to another.
RELATED TASKS
“Managing local and global references” on page 530
“Handling Java exceptions”
“Coding interoperable data types in COBOL and Java” on page 532
“Defining a client” on page 502
RELATED REFERENCES
Appendix F, “JNI.cpy,” on page 649
The Java Native Interface
The Java virtual machine (JVM) does not recognize and process the thrown
exception until the method that contains the call has completed and returned to
the JVM.
To do error analysis, use the methods supported by the exception object that is
returned. This object is an instance of java.lang.Throwable.
You can pass either a local reference or a global reference as an object reference
argument to a JNI service.
| You can code methods to return either local or global references as RETURNING
| values. However, in either case, the reference that is received by the invoking
| program is a local reference.
| You can pass either local or global references as USING arguments in a method
| invocation. However, in either case, the reference that is received by the invoked
| method is a local reference.
Local references are valid only in the thread in which you create them. Do not pass
them from one thread to another.
Save local references only in object references that you define in the LOCAL-STORAGE
SECTION of a method. If you want to save a local reference with a SET statement to
an object instance variable, a factory variable, or a data item in the
WORKING-STORAGE SECTION of a method, first convert the local reference to a global
reference. Otherwise, you will get an error because these storage areas persist
when the method returns, but the local reference is no longer valid.
In most cases you can rely on the automatic freeing of local references that occurs
when a method returns. However, in some cases you should explicitly free a local
reference within a method by using the JNI service DeleteLocalRef. Here are two
situations where explicit freeing is appropriate:
v In a method you access a large object, thereby creating a local reference to the
object. After extensive computations, the method returns. You should free the
large object if you do not need it for the additional computations, because the
local reference prevents the object from being released during garbage collection.
JNI services
Use these callable services to manage local references and global references:
Table 76. JNI services for local and global references
Service Input arguments Return value Purpose
NewGlobalRef v The JNI environment The global reference, or To create a new global
pointer NULL if the system is out of reference to the object that
memory the input object reference
v A local or global object
refers to
reference
DeleteGlobalRef v The JNI environment None To delete a global reference
pointer to the object that the input
object reference refers to
v A global object reference
DeleteLocalRef v The JNI environment None To delete a local reference
pointer to the object that the input
object reference refers to
v A local object reference
RELATED TASKS
“Coding interoperable data types in COBOL and Java” on page 532
“Declaring arrays and strings for Java” on page 532
“Manipulating Java arrays” on page 534
1. You must distinguish boolean from byte, because they both correspond to PIC X. PIC X
is interpreted as boolean only when you define an argument or a parameter with the
two condition names as shown. Otherwise, a PIC X data item is interpreted as the Java
byte type.
2. Java floating-point data is represented in IEEE floating point. Enterprise COBOL,
however, uses hexadecimal floating-point representation. When you pass floating-point
arguments by using an INVOKE statement or you receive floating-point data from a Java
method, the arguments and data are automatically converted as needed.
When you use these special classes for array and string interoperability with Java,
you must code an entry for the classes that you use in the REPOSITORY paragraph,
such as in this example:
Configuration section.
Repository.
Class jbooleanArray is “jbooleanArray”.
The REPOSITORY paragraph entry for an object array type must specify an external
class-name of one of the following forms:
“jobjectArray”
“jobjectArray:external-classname-2”
In the first case, the REPOSITORY entry specifies an array class where the elements of
the array are objects of type java.lang.Object.
In the second case, the REPOSITORY entry specifies an array class where the
elements of the array are objects of type external-classname-2. A colon is required as
a separator between the specification of the jobjectArray type and the external
class-name of the elements of the array.
“Examples: COBOL applications that you can run using the java command” on
page 524
The following Java array types are currently not supported for interoperation with
COBOL programs:
Table 79. Noninteroperable array types in COBOL and Java
Java data type Corresponding COBOL data type
float[ ] object reference jfloatArray
double[ ] object reference jdoubleArray
For example, the following code specifies a structure to receive 500 or fewer
integer values from a jlongArray object:
01 longArray.
02 X pic S9(9) comp-5 occurs 1 to 500 times depending on N.
To operate on objects of the special Java-array classes, call the services that the JNI
provides. You can use services to access and set individual elements of an array
and for the following purposes, using the services cited:
Table 80. JNI array services
Service Input arguments Return value Purpose
GetArrayLength v The JNI environment pointer The array length as a To get the number of
binary fullword elements in a Java array
v The array object reference
integer object
NewBooleanArray v The JNI environment pointer The array object To create a new Java array
NewByteArray reference, or NULL if object
v The number of elements in
NewCharArray the array cannot be
the array, as a binary
NewShortArray constructed
fullword integer
NewIntArray
NewLongArray
GetBooleanArrayElements v The JNI environment pointer A pointer to the To extract the array
GetByteArrayElements storage buffer elements from a Java array
v The array object reference
GetCharArrayElements into a storage buffer. The
GetShortArrayElements v A pointer to a boolean item. services return a pointer to
GetIntArrayElements If the pointer is not null, the the storage buffer, which
GetLongArrayElements boolean item is set to true if a you can use as the address
copy of the array elements of a COBOL group data
was made. If a copy was item defined in the
made, the corresponding LINKAGE SECTION.
ReleasexxxArrayElements
service must be called if
changes are to be written
back to the array object.
ReleaseBooleanArrayElements v The JNI environment pointer None; the storage for To release the storage
ReleaseByteArrayElements the array is released. buffer that contains
v The array object reference
ReleaseCharArrayElements elements that have been
ReleaseShortArrayElements v A pointer to the storage extracted from a Java
ReleaseIntArrayElements buffer array and conditionally
ReleaseLongArrayElements v The release mode, as a binary map the updated array
fullword integer. See Java JNI values back into the array
documentation for details. object
Recommendation: Specify 0,
to copy back the array
content and free the storage
buffer.
“Examples: COBOL applications that you can run using the java command” on
page 524
“Example: processing a Java int array”
RELATED TASKS
“Coding interoperable data types in COBOL and Java” on page 532
“Declaring arrays and strings for Java” on page 532
“Accessing JNI services” on page 527
Call GetArrayLength
using by value JNIEnvPtr inIntArrayObj
returning intArrayLen
Call GetIntArrayElements
using by value JNIEnvPtr inIntArrayObj 0
returning IntArrayPtr
Set address of intArrayGroup to intArrayPtr
Call ReleaseIntArrayElements
using by value JNIEnvPtr inIntArrayObj intArrayPtr 0.
End method “ProcessArray”.
End Object.
End class OOARRAY.
Access these services by using function pointers in the JNI environment structure
JNINativeInterface.
1. If the pointer is NULL, the encoding from the Java file.encoding property is used.
The EBCDIC services are packaged as a DLL that is part of the IBM Developer Kit
for OS/390, Java 2 Technology Edition. Use CALL literal statements to call these
services. The calls are resolved through the libjvm.x DLL side file, which you must
include in the link step of any COBOL program that uses object-oriented language.
For example, the following code creates a Java String object from the EBCDIC
string ’MyConverter’. (This code fragment is from the J2EE client program, which
is shown in full in “Example: J2EE client written in COBOL” on page 539.)
Move z“MyConverter” to stringBuf
Call “NewStringPlatform”
using by value JNIEnvPtr
address of stringBuf
address of jstring1
0
returning rc
If the EBCDIC services are the only JNI services that you call from a COBOL
program, you do not need to copy the JNI.cpy copybook nor do you need to
establish addressability with the JNI environment pointer.
For details on these services, see jni_convert.h, which is shipped with the IBM
Developer Kit for OS/390, Java 2 Technology Edition.
Access these services by using function pointers in the JNI environment structure
JNINativeInterface.
RELATED TASKS
“Accessing JNI services” on page 527
“Coding interoperable data types in COBOL and Java” on page 532
“Declaring arrays and strings for Java” on page 532
“Using national data (Unicode) in COBOL” on page 106
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
*****************************************************************
* Create JNDI naming context. *
*****************************************************************
*****************************************************************
* Create a jstring object for the string “MyConverter” for use *
* as argument to the lookup method. *
*****************************************************************
Move z“MyConverter” to stringBuf
Call “NewStringPlatform”
using by value JNIEnvPtr
address of stringBuf
address of jstring1
0
returning rc
If rc not = zero then
Display “Error occurred creating jstring object”
Stop run
End-if
*****************************************************************
* Use the lookup method to obtain a reference to the home *
* object bound to the name “MyConverter”. (This is the JNDI *
* name specified when deploying the J2EE application.) *
*****************************************************************
Invoke initialCtx “lookup” using by value jstring1
returning obj
Perform JavaExceptionCheck
*****************************************************************
* Narrow the home object to be of type ConverterHome. *
* First obtain class object for the ConverterHome class, by *
* passing the null-terminated ASCII string “ConverterHome” to *
* the FindClass API. Then use this class object as the *
* argument to the static method “narrow”. *
*****************************************************************
Move z“ConverterHome” to stringBuf
Call “__etoa”
using by value address of stringBuf
returning len
If len = -1 then
Display “Error occurred on ASCII conversion”
Stop run
End-if
Call FindClass
using by value JNIEnvPtr
address of stringBuf
returning classObj
If classObj = null
Display “Error occurred locating ConverterHome class”
Stop run
End-if
Invoke PortableRemoteObject “narrow”
using by value obj
classObj
returning homeObject
Perform JavaExceptionCheck
*****************************************************************
* Create the ConverterEJB instance and obtain local object *
* reference for its remote interface *
*****************************************************************
Invoke home “create” returning currencyConverter
Perform JavaExceptionCheck
*****************************************************************
* Invoke business methods *
*****************************************************************
Display amount
Display amount
*****************************************************************
* Remove the object and return. *
*****************************************************************
Invoke currencyConverter “remove”
Perform JavaExceptionCheck
Goback
.
*****************************************************************
* Check for thrown Java exceptions *
*****************************************************************
JavaExceptionCheck.
Call ExceptionOccurred using by value JNIEnvPtr
returning ex
If ex not = null then
Call ExceptionClear using by value JNIEnvPtr
Display “Caught an unexpected exception”
Invoke ex “PrintStackTrace”
Stop run
End-if
.
End program “ConverterClient”.
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.rmi.PortableRemoteObject;
import Converter;
import ConverterHome;
ConverterHome home =
(ConverterHome)PortableRemoteObject.narrow(objref,
ConverterHome.class);
currencyConverter.remove();
RELATED TASKS
Chapter 16, “Compiling, linking, and running OO applications,” on page 257
WebSphere for z/OS: Assembling J2EE Applications
RELATED REFERENCES
The Java 2 Enterprise Edition Developer’s Guide
Because the checkpoint/restart functions cause a lot of extra processing, use them
only when you anticipate interruptions caused by machine malfunctions, input or
output errors, or intentional operator intervention.
The checkpoint routine starts from the COBOL load module containing your
program. While your program is running, the checkpoint routine creates records at
points you have designated using the COBOL RERUN clause. A checkpoint record
contains a snapshot of the information in the registers and main storage when the
program reached the checkpoint.
The restart routine restarts an interrupted program. You can perform a restart at
any time after the program was interrupted: either immediately (automatic restart),
or later (deferred restart).
RELATED TASKS
“Setting checkpoints”
“Restarting programs” on page 548
“Resubmitting jobs for restart” on page 551
z/OS DFSMS: Checkpoint/Restart
RELATED REFERENCES
“DD statements for defining checkpoint data sets” on page 547
“Messages generated during checkpoint” on page 548
“Formats for requesting deferred restart” on page 550
Setting checkpoints
To set checkpoints, use job control statements and use the RERUN clause in the
ENVIRONMENT DIVISION. Associate each RERUN clause with a particular COBOL file.
You can write checkpoint records from several COBOL files onto one checkpoint
data set, but you must use a separate data set exclusively for checkpoint records.
You cannot embed checkpoint records in one of your program data sets.
Restriction: A checkpoint data set must have sequential organization. You cannot
write checkpoints on VSAM data sets or on data sets allocated to extended-format
QSAM data sets. Also, a checkpoint cannot be taken if any program in the run unit
has an extended-format QSAM data set open.
You must use the multiple checkpoint method for complete compliance to the
COBOL 85 Standard.
Designing checkpoints
Design your checkpoints at critical points in your program so that data can be
easily reconstructed. Do not change the contents of files between the time of a
checkpoint and the time of the restart.
In a program using disk files, design the program so that you can identify
previously processed records. For example, consider a disk file containing loan
records that are periodically updated for interest due. If a checkpoint is taken,
records are updated, and then the program is interrupted, you would want to test
that the records updated after the last checkpoint are not updated again when the
program is restarted. To do this, set up a date field in each record, and update the
field each time the record is processed. Then, after the restart, test the field to
determine whether the record was already processed.
For efficient repositioning of a print file, take checkpoints on the file only after
printing the last line of a page.
RELATED TASKS
“Using checkpoint/restart with DFSORT” on page 198
RELATED REFERENCES
“DD statements for defining checkpoint data sets” on page 547
Return codes (z/OS DFSMS: Checkpoint/Restart)
For tape:
//ddname DD DSNAME=data-set-name,
// [VOLUME=SER=volser,]UNIT=device-type,
// DISP=({NEW|MOD},PASS)
checkid is the identification name of the checkpoint taken. The control program
assigns checkid as an eight-character string. The first character is the letter C,
followed by a decimal number indicating the checkpoint. For example, the
following message indicates the fourth checkpoint taken in the job step:
checkid C0000004
Restarting programs
The system restart routine does the following:
v Retrieves the information recorded in a checkpoint record
v Restores the contents of main storage and all registers
v Restarts the program
The RD parameter of the job control language determines the type of restart. You
can use the RD parameter on either the JOB or the EXEC statement. If coded on the
JOB statement, the parameter overrides any RD parameters on the EXEC statement.
Data sets that have the SYSOUT parameter coded on their DD statements are handled
in various ways depending on the type of restart.
If the checkpoint data set is multivolume, include in the VOLUME parameter the
sequence number of the volume on which the checkpoint entry was written. If the
checkpoint data set is on a 7-track tape with nonstandard labels or no labels, the
SYSCHK DD statement must contain DCB=(TRTCH=C,. . .).
Whenever automatic restart is to occur, the system repositions all devices except
unit-record devices.
If you omit the RD parameter, the CHKPT macro instruction remains active, and
checkpoints can be taken during processing. If an interrupt occurs after the first
checkpoint, automatic restart will occur.
When a deferred restart has been successfully completed, the system displays a
message on the console stating that the job has been restarted. Control is then
given to your program.
If you want deferred restart, code the RD parameter as RD=NR. This form of the
parameter suppresses automatic restart, but allows a checkpoint record to be
written provided that a RERUN clause has been coded.
Request a deferred restart by using the RESTART parameter on the JOB card and a
SYSCHK DD statement to identify the checkpoint data set. If a SYSCHK DD statement is
present in a job and the JOB statement does not contain the RESTART parameter, the
SYSCHK DD statement is ignored. If a RESTART parameter without the CHECKID
subparameter is included in a job, a SYSCHK DD statement must not appear before
the first EXEC statement for the job.
RELATED TASKS
“Using checkpoint/restart with DFSORT” on page 198
checkid
Identifies the checkpoint where restart is to occur.
SYSCHK
The ddname used to identify a checkpoint data set to the control program.
The SYSCHK DD statement must immediately precede the first EXEC
statement of the resubmitted job, and must follow any JOBLIB statement.
data-set-name
Identifies the checkpoint data set. It must be the same name that
was used when the checkpoint was taken.
device-type and volser
Identify the device type and the serial number of the volume
containing the checkpoint data set.
If a checkpoint is taken in a job that is running when V=R is specified, the job
cannot be restarted until adequate nonpageable dynamic storage becomes
available.
//J3412 JOB 386,SMITH,MSGLEVEL=1,RD=R,
// RESTART=(*,C0000002)
//SYSCHK DD DSNAME=C91468,DISP=OLD
//S1 EXEC PGM=MYPROG
//INDATA DD DSNAME=INVENT,UNIT=TAPE,DISP=OLD,
// VOLUME=SER=91468,LABEL=RETPD=14
//REPORT DD SYSOUT=A
//WORK DD DSNAME=T91468,DISP=(,,KEEP),
// UNIT=SYSDA,SPACE=(3000,(5000,500)),
// VOLUME=(PRIVATE,RETAIN,,6)
//DDCKPNT DD UNIT=TAPE,DISP=(MOD,KEEP,CATLG),
// DSNAME=C91468,LABEL=(,NL)
You can use certain programming techniques to take advantage of date processing
and control the effects of using date fields such as when comparing dates, sorting
and merging by date, and performing arithmetic operations involving dates. The
millennium language extensions support year-first, year-only, and year-last date
fields for the most common operations on date fields: comparisons, moving and
storing, and incrementing and decrementing.
RELATED CONCEPTS
“Millennium language extensions (MLE)” on page 554
RELATED TASKS
“Resolving date-related logic problems” on page 555
“Using year-first, year-only, and year-last date fields” on page 560
“Manipulating literals as dates” on page 563
“Setting triggers and limits” on page 565
“Sorting and merging by date” on page 567
“Performing arithmetic on date fields” on page 569
“Controlling date processing explicitly” on page 571
“Analyzing and avoiding date-related diagnostic messages” on page 572
“Avoiding problems in processing dates” on page 574
RELATED REFERENCES
DATE FORMAT clause (Enterprise COBOL Language Reference)
“DATEPROC” on page 278
“YEARWINDOW” on page 315
RELATED CONCEPTS
“Principles and objectives of these extensions”
RELATED REFERENCES
“DATEPROC” on page 278
“YEARWINDOW” on page 315
The extensions do not provide fully specified or complete date-oriented data types,
with semantics that recognize, for example, the month and day parts of Gregorian
dates. They do, however, provide special semantics for the year part of dates.
RELATED TASKS
“Using a century window”
“Using internal bridging” on page 557
“Moving to full field expansion” on page 558
To implement this century window, you use the DATE FORMAT clause to identify the
date fields in your program and use the YEARWINDOW compiler option to define the
century window as either a fixed window or a sliding window:
v For a fixed window, specify a four-digit year between 1900 and 1999 as the
YEARWINDOW option value. For example, YEARWINDOW(1950) defines a fixed window
of 1950-2049.
v For a sliding window, specify a negative integer from -1 through -99 as the
YEARWINDOW option value. For example, YEARWINDOW(-50) defines a sliding
window that starts 50 years before the year in which the program is running. So
if the program is running in 2003, the century window is 1953-2052, and in 2004
it automatically becomes 1954-2053, and so on.
In this example, there are no changes to the PROCEDURE DIVISION. The addition of
the DATE FORMAT clause on the two date fields means that the compiler recognizes
them as windowed date fields, and therefore applies the century window when
processing the IF statement. For example, if Date-Due-Back contains 000102
(January 2, 2000) and Date-Returned contains 991231 (December 31, 1999),
Date-Returned is less than (earlier than) Date-Due-Back, so the program does not
perform the Fine-Member paragraph.
When you use this technique, your changes to the program logic are minimal. You
simply add statements to expand and contract the dates, and change the
statements that refer to dates to use the four-digit-year date fields in
WORKING-STORAGE instead of the two-digit-year fields in the records.
Because you are converting the dates back to two-digit years for output, you
should allow for the possibility that the year is outside the century window. For
example, if a date field contains the year 2020, but the century window is
1920-2019, then the date is outside the window, and simply moving it to a
two-digit-year field will be incorrect. To protect against this problem, you can use a
COMPUTE statement to store the date, with the ON SIZE ERROR phrase to detect
whether or not the date is within the century window.
RELATED TASKS
“Using a century window” on page 556
“Performing arithmetic on date fields” on page 569
“Moving to full field expansion”
After you have completed the first two steps, you can repeat the remaining steps
any number of times. You do not need to change every date field in every file at
the same time. Using this method, you can select files for progressive conversion
based on criteria such as business needs or interfaces with other applications.
When you use this method, you need to write special-purpose programs to convert
your files to expanded-date form.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT INPUT-FILE
ASSIGN TO INFILE
FILE STATUS IS INPUT-FILE-STATUS.
SELECT OUTPUT-FILE
ASSIGN TO OUTFILE
FILE STATUS IS OUTPUT-FILE-STATUS.
DATA DIVISION.
FILE SECTION.
FD INPUT-FILE
RECORDING MODE IS F.
01 INPUT-RECORD.
03 CUST-NAME.
05 FIRST-NAME PIC X(10).
05 LAST-NAME PIC X(15).
03 ACCOUNT-NUM PIC 9(8).
03 DUE-DATE PIC X(6) DATE FORMAT YYXXXX. (1)
03 REMINDER-DATE PIC X(6) DATE FORMAT YYXXXX.
03 DUE-AMOUNT PIC S9(5)V99 COMP-3.
FD OUTPUT-FILE
RECORDING MODE IS F.
01 OUTPUT-RECORD.
03 CUST-NAME.
05 FIRST-NAME PIC X(10).
05 LAST-NAME PIC X(15).
03 ACCOUNT-NUM PIC 9(8).
03 DUE-DATE PIC X(8) DATE FORMAT YYYYXXXX. (2)
03 REMINDER-DATE PIC X(8) DATE FORMAT YYYYXXXX.
03 DUE-AMOUNT PIC S9(5)V99 COMP-3.
WORKING-STORAGE SECTION.
PROCEDURE DIVISION.
READ-RECORD.
READ INPUT-FILE
AT END GO TO CLOSE-FILES.
MOVE CORRESPONDING INPUT-RECORD TO OUTPUT-RECORD. (3)
GO TO READ-RECORD.
CLOSE-FILES.
CLOSE INPUT-FILE.
CLOSE OUTPUT-FILE.
EXIT PROGRAM.
Notes
(1) The fields DUE-DATE and REMINDER-DATE in the input record are both
Gregorian dates with two-digit-year components. They are defined with a
DATE FORMAT clause in this program so that the compiler will recognize
them as windowed date fields.
(2) The output record contains the same two fields in expanded date format.
They are defined with a DATE FORMAT clause so that the compiler will treat
them as four-digit-year date fields.
(3) The MOVE CORRESPONDING statement moves each item in INPUT-RECORD
individually to its matching item in OUTPUT-RECORD. When the two
windowed date fields are moved to the corresponding expanded date
fields, the compiler will expand the year values using the current century
window.
A year-last date field is a date field whose DATE FORMAT clause specifies one or more
Xs preceding the YY or YYYY. Such date formats are commonly used to display
dates, but are less useful computationally, because the year, which is the most
significant part of the date, is in the least significant position of the date
representation.
If you need more general date-processing capability for year-last dates, you should
isolate and operate on the year part of the date.
RELATED TASKS
“Sorting and merging by date” on page 567
“Using other date formats” on page 562
Compatible dates
The meaning of the term compatible dates depends on the COBOL division in which
the usage occurs, as follows:
v The DATA DIVISION usage deals with the declaration of date fields, and the rules
governing COBOL language elements such as subordinate data items and the
REDEFINES clause. In the following example, Review-Date and Review-Year are
compatible because Review-Year can be declared as a subordinate data item to
Review-Date:
01 Review-Record.
03 Review-Date Date Format yyxxxx.
05 Review-Year Pic XX Date Format yy.
05 Review-M-D Pic XXXX.
v The PROCEDURE DIVISION usage deals with how date fields can be used together
in operations such as comparisons, moves, and arithmetic expressions. For
year-first and year-only date fields, to be considered compatible, date fields must
have the same number of nonyear characters. For example, a field with DATE
FORMAT YYXXXX is compatible with another field that has the same date format,
and with a YYYYXXXX field, but not with a YYXXX field.
Year-last date fields must have identical DATE FORMAT clauses. In particular,
operations between windowed date fields and expanded year-last date fields are
not allowed. For example, you can move a date field with a date format of
XXXXYY to another XXXXYY date field, but not to a date field with a format of
XXXXYYYY.
You can perform operations on date fields, or on a combination of date fields and
nondates, provided that the date fields in the operation are compatible. For
example, assume the following definitions:
01 Date-Gregorian-Win Pic 9(6) Packed-Decimal Date Format yyxxxx.
01 Date-Julian-Win Pic 9(5) Packed-Decimal Date Format yyxxx.
01 Date-Gregorian-Exp Pic 9(8) Packed-Decimal Date Format yyyyxxxx.
The following statement is accepted because the number of nonyear digits is the
same for both fields:
If Date-Gregorian-Win Less than Date-Gregorian-Exp . . .
In this case the century window is applied to the windowed date field
(Date-Gregorian-Win) to ensure that the comparison is meaningful.
When a nondate is used in conjunction with a date field, the nondate either is
assumed to be compatible with the date field or is treated as a simple numeric
value.
If there are date fields in your application that do not fit these criteria, you might
have to make some code changes to define just the year part of the date as a date
field with the DATE FORMAT clause. Some examples of these types of date formats
are:
v A seven-character field consisting of a two-digit year, three characters containing
an abbreviation of the month and two digits for the day of the month. This
format is not supported because date fields can have only one through four
nonyear characters.
v A Gregorian date of the form DDMMYY. Automatic windowing is not provided
because the year component is not the first part of the date. Year-last dates such
as these are fully supported as windowed keys in SORT or MERGE statements, and
are also supported in a limited number of other COBOL operations.
If you need to use date windowing in cases like these, you will need to add some
code to isolate the year portion of the date.
Because the year is not the first part of these date fields, the DATE FORMAT clause
cannot be applied without some code to isolate the year component. In the next
The literal 051220 is treated as a nondate, and therefore it is windowed against the
assumed century window of 1900-1999 to represent December 20, 1905. But where
the same literal is specified in the VALUE clause of an 88-level condition-name, the
literal becomes part of the data item to which it is attached. Because this data item
is a windowed date field, the century window is applied whenever it is referenced.
You can also use the DATEVAL intrinsic function in a comparison expression to
convert a literal to a date field, and the output from the intrinsic function will then
be treated as either a windowed date field or an expanded date field to ensure a
consistent comparison. For example, using the above definitions, both of these
conditions evaluate to true:
If Date-Due = Function DATEVAL (051220 “YYXXXX”)
If Date-Due = Function DATEVAL (20051220 “YYYYXXXX”)
With a level-88 condition-name, you can specify the THRU option on the VALUE
clause, but you must specify a fixed century window on the YEARWINDOW compiler
option rather than a sliding window. For example:
05 Year-Field Pic 99 Date Format yy.
88 In-Range Value 98 Thru 06.
With this form, the windowed value of the second item must be greater than the
windowed value of the first item. However, the compiler can verify this difference
only if the YEARWINDOW compiler option specifies a fixed century window (for
example, YEARWINDOW(1940) rather than YEARWINDOW(-60).
The windowed order requirement does not apply to year-last date fields. If you
specify a condition-name VALUE clause with the THROUGH phrase for a year-last date
field, the two literals must follow normal COBOL rules. That is, the first literal
must be less than the second literal.
RELATED TASKS
“Controlling date processing explicitly” on page 571
The assumed century window is 1900-1999, which typically is not the same as the
century window for the compilation unit.
In many cases, particularly for literal nondates, this assumed century window is
the correct choice. In the following construct, the literal should retain its original
meaning of January 1, 1972, and not change to 2072 if the century window is, for
example, 1975-2074:
01 Manufacturing-Record.
03 Makers-Date Pic X(6) Date Format yyxxxx.
. . .
If Makers-Date Greater than “720101” . . .
Even if the assumption is correct, it is better to make the year explicit and
eliminate the warning-level diagnostic message (which results from applying the
assumed century window) by using the DATEVAL intrinsic function:
If Makers-Date Greater than
Function Dateval(“19720101” “YYYYXXXX”) . . .
In some cases, the assumption might not be correct. For the following example,
assume that Project-Controls is in a copy member that is used by other
applications that have not yet been upgraded for year 2000 processing, and
therefore Date-Target cannot have a DATE FORMAT clause:
01 Project-Controls.
03 Date-Target Pic 9(6).
. . .
01 Progress-Record.
03 Date-Complete Pic 9(6) Date Format yyxxxx.
. . .
If Date-Complete Less than Date-Target . . .
In the example above, the following three conditions need to be true to make
Date-Complete earlier than (less than) Date-Target:
v The century window is 1910-2009.
v Date-Complete is 991202 (Gregorian date: December 2, 1999).
v Date-Target is 000115 (Gregorian date: January 15, 2000).
However, because Date-Target does not have a DATE FORMAT clause, it is a nondate.
Therefore, the century window applied to it is the assumed century window of
1900-1999, and it is processed as January 15, 1900. So Date-Complete will be greater
than Date-Target, which is not the desired result.
RELATED TASKS
“Controlling date processing explicitly” on page 571
Treatment of nondates
The simplest kind of nondate is a literal value. The following items are also
nondates:
v A data item whose data description does not include a DATE FORMAT clause.
v The results (intermediate or final) of some arithmetic expressions. For example,
the difference of two date fields is a nondate, whereas the sum of a date field
and a nondate is a date field.
v The output from the UNDATE intrinsic function.
When you use a nondate in conjunction with a date field, the compiler interprets
the nondate either as a date whose format is compatible with the date field or as a
simple numeric value. This interpretation depends on the context in which the date
field and nondate are used, as follows:
v Comparison
When a date field is compared with a nondate, the nondate is considered to be
compatible with the date field in the number of year and nonyear characters. In
the following example, the nondate literal 971231 is compared with a windowed
date field:
01 Date-1 Pic 9(6) Date Format yyxxxx.
. . .
If Date-1 Greater than 971231 . . .
The nondate literal 971231 is treated as if it had the same DATE FORMAT as Date-1,
but with a base year of 1900.
v Arithmetic operations
In all supported arithmetic operations, nondate fields are treated as simple
numeric values. In the following example, the numeric value 10000 is added to
the Gregorian date in Date-2, effectively adding one year to the date:
01 Date-2 Pic 9(6) Date Format yyxxxx.
. . .
Add 10000 to Date-2.
v MOVE statement
Moving a date field to a nondate is not supported. However, you can use the
UNDATE intrinsic function to do this.
When you move a nondate to a date field, the sending field is assumed to be
compatible with the receiving field in the number of year and nonyear
characters. For example, when you move a nondate to a windowed date field,
the nondate field is assumed to contain a compatible date with a two-digit year.
The difference between a trigger and a limit is not in the particular value, but in
the way it is used. You can use any of the special values as either a trigger or a
limit.
When used as triggers, special values can indicate a specific condition such as
“date not initialized” or “account past due.” When used as limits, special values
are intended to act as dates earlier or later than any valid date. LOW-VALUE, SPACE
and zeros are lower limits; HIGH-VALUE and nines are upper limits.
You activate trigger and limit support by specifying the TRIG suboption of the
DATEPROC compiler option. If the DATEPROC(TRIG) compiler option is in effect,
automatic expansion of windowed date fields (before their use as operands in
comparisons, arithmetic, and so on) is sensitive to these special values.
When an actual or assumed windowed date field contains a trigger, the compiler
expands the trigger as if the trigger value were propagated to the century part of
the expanded date result, rather than inferring 19 or 20 as the century value as in
normal windowing. In this way, your application can test for special values or use
them as upper or lower date limits. Specifying DATEPROC(TRIG) also enables SORT
and MERGE statement support of the DFSORT special indicators, which correspond
to triggers and limits.
RELATED TASKS
“Using sign conditions” on page 567
Because both dates are windowed, the first subscription is tested as if 20000104
were compared with 19991231, and so the test succeeds. However, when the
compiler detects the special value, it uses trigger expansion instead of windowing.
Therefore, the test proceeds as if 20000104 were compared with 99999999, and it
fails and will always fail.
However, if you are compiling with the NOTRIG suboption of the DATEPROC compiler
option, this comparison is not valid because the literal value Zero is a nondate, and
is therefore windowed against the assumed century window to give a value of
1900000.
With a sign condition, Order-Date is treated as a nondate, and the century window
is not considered.
This approach applies only if the operand in the sign condition is a simple
identifier rather than an arithmetic expression. If an expression is specified, the
expression is evaluated first, with the century window being applied where
appropriate. The sign condition is then compared with the results of the
expression.
You could use the UNDATE intrinsic function instead or the TRIG suboption of the
DATEPROC compiler option to achieve the same result.
RELATED CONCEPTS
“Treatment of nondates” on page 565
RELATED TASKS
“Setting triggers and limits” on page 565
“Controlling date processing explicitly” on page 571
If your sort product also supports the date field identifiers Y2T, Y2U, Y2W, Y2X, and
Y2Y, you can use the TRIG suboption of the DATEPROC compiler option. (Support for
these date field identifiers was added to DFSORT through APAR PQ19684.)
The special indicators that DFSORT recognizes match exactly those supported by
COBOL: LOW-VALUE, HIGH-VALUE, and SPACE for alphanumeric date or year fields,
and all zeros and all nines for numeric and alphanumeric date fields with at least
one nonyear digit.
RELATED TASKS
OPTION control statement (Y2PAST) (DFSORT Application Programming Guide)
RELATED REFERENCES
“DATEPROC” on page 278
“YEARWINDOW” on page 315
01 Transaction-Record.
05 Trans-Account PIC 9(8).
05 Trans-Type PIC X.
05 Trans-Date PIC 9(5) Date Format yyxxx.
05 Trans-Time PIC 9(6).
05 Trans-Amount PIC 9(7)V99.
. . .
Sort Transaction-File
On Ascending Key Trans-Account
Trans-Date
Trans-Time
Using Input-File
Giving Sorted-File.
COBOL passes the relevant information to DFSORT for it to perform the sort. In
addition to the information COBOL always passes to DFSORT, COBOL also passes
the following information:
v Century window as the Y2PAST sort option
v Windowed year field and date format of Trans-Date.
Date semantics are provided for the year parts of date fields but not for the
nonyear parts. For example, adding 1 to a windowed Gregorian date field that
contains the value 980831 gives a result of 980832, not 980901.
If the century window is 1910-2009, and the value of Last-Review-Year is 98, then
the computation proceeds as if Last-Review-Year is first incremented by 1900 to
give 1998. Then the ADD operation is performed, giving a result of 2008. This result
is stored in Next-Review-Year as 08.
This result falls outside the range of the century window. If the result is stored in
Next-Review-Year, it will be incorrect because later references to Next-Review-Year
will interpret it as 1918. In this case, the result of the operation depends on
whether the ON SIZE ERROR phrase is specified on the ADD statement:
v If SIZE ERROR is specified, the receiving field is not changed, and the SIZE ERROR
imperative statement is executed.
v If SIZE ERROR is not specified, the result is stored in the receiving field with the
left-hand digits truncated.
SIZE ERROR processing for windowed date receivers recognizes any year value that
falls outside the century window. That is, a year value less than the starting year of
the century window raises the SIZE ERROR condition, as does a year value greater
than the ending year of the century window.
However, the addition of two date fields is not permitted. To resolve these date
fields, you should use parentheses to isolate the parts of the arithmetic expression
that are allowed. For example:
Compute End-Year-2 = Start-Year-2 + (End-Year-1 - Start-Year-1).
The subtraction of one date field from another is permitted and gives a nondate
result. This nondate result is then added to the date field End-Year-1, giving a date
field result that is stored in End-Year-2.
RELATED TASKS
“Using internal bridging” on page 557
Conversely, there might be times when you want a date field to be treated as a
nondate in specific parts of the program.
Using DATEVAL
You can use the DATEVAL intrinsic function to convert a nondate to a date field, so
that COBOL will apply the relevant date processing to the field. The first argument
in the function is the nondate to be converted, and the second argument specifies
the date format. The second argument is a literal string with a specification similar
to that of the date pattern in the DATE FORMAT clause.
In most cases, the compiler makes the correct assumption about the interpretation
of a nondate, but accompanies this assumption with a warning-level diagnostic
message. This message typically happens when a windowed date is compared
with a literal:
03 When-Made Pic x(6) Date Format yyxxxx.
. . .
If When-Made = “850701” Perform Warranty-Check.
Using UNDATE
The UNDATE intrinsic function converts a date field to a nondate, so that it can be
referenced without any date processing.
Attention: Avoid using UNDATE except as a last resort, because the compiler will
lose the flow of date fields in your program. This problem could result in date
comparisons not being windowed properly. Use more DATE FORMAT clauses instead
of function UNDATE for MOVE and COMPUTE.
Example: DATEVAL
Assume that a program contains a field Date-Copied and that this field is
referenced many times in the program, but that most of these references move it
between records or reformat it for printing. Only one reference relies on it to
contain a date, for comparison with another date.
In this case, it is better to leave the field as a nondate, and use the DATEVAL intrinsic
function in the comparison statement. For example:
03 Date-Distributed Pic 9(6) Date Format yyxxxx.
03 Date-Copied Pic 9(6).
. . .
If FUNCTION DATEVAL(Date-Copied “YYXXXX”) Less than
Date-Distributed . . .
In this example, the DATEVAL intrinsic function converts Date-Copied to a date field
so that the comparison will be meaningful.
RELATED REFERENCES
DATEVAL (Enterprise COBOL Language Reference)
Example: UNDATE
In the following example, the field Invoice-Date in Invoice-Record is a windowed
Julian date. In some records, it contains a value of 00999 to indicate that this is not
a true invoice record, but a record containing file control information.
Invoice-Date has been given a DATE FORMAT clause because most of its references in
the program are date-specific. However, in the instance where it is checked for the
existence of a control record, the value of 00 in the year component will lead to
some confusion. A year of 00 in Invoice-Date will represent a year of either 1900
or 2000, depending on the century window. This is compared with a nondate (the
literal 00999 in the example), which will always be windowed against the assumed
century window and will therefore always represent the year 1900.
To ensure a consistent comparison, you should use the UNDATE intrinsic function to
convert Invoice-Date to a nondate. Therefore, if the IF statement is not comparing
date fields, it does not need to apply windowing. For example:
01 Invoice-Record.
03 Invoice-Date Pic x(5) Date Format yyxxx.
. . .
If FUNCTION UNDATE(Invoice-Date) Equal “00999” . . .
RELATED REFERENCES
UNDATE (Enterprise COBOL Language Reference)
The easiest way to use the MLE messages is to compile with a FLAG option setting
that embeds the messages in the source listing after the line to which the messages
refer. You can choose to see all MLE messages or just certain severities.
To see all MLE messages, specify the FLAG(I,I) and DATEPROC(FLAG) compiler
options. Initially, you might want to see all of the messages to understand how
MLE is processing the date fields in your program. For example, if you want to do
a static analysis of the date usage in a program by using the compile listing, use
FLAG (I,I).
In some cases, a the W-level message might be acceptable, but you might want to
change the code to get a compile with a return code of zero.
RELATED TASKS
“Controlling date processing explicitly” on page 571
Analyzing date-related diagnostic messages (COBOL Millennium Language
Extensions Guide)
A field that holds a six-digit Gregorian date, for example, can be declared as PIC
S9(6) COMP-3, and this declaration will reserve 4 bytes of storage. But the
programmer might have declared the field as PIC S9(7), knowing that this would
reserve the same 4 bytes, with the high-order digit always containing a zero.
If you add a DATE FORMAT YYXXXX clause to this field, the compiler will give you a
diagnostic message because the number of digits in the PICTURE clause does not
match the size of the date format specification. In this case, you need to check
carefully each use of the field. If the high-order digit is never used, you can simply
change the field definition to PIC S9(6). If it is used (for example, if the same field
can hold a value other than a date), you need to take some other action, such as:
v Using a REDEFINES clause to define the field as both a date and a nondate (this
usage will also produce a warning-level diagnostic message)
v Defining another WORKING-STORAGE field to hold the date, and moving the
numeric field to the new field
v Not adding a DATE FORMAT clause to the data item, and using the DATEVAL
intrinsic function when referring to it as a date field
You can write programs that result in better generated code sequences and use
system services better. These five areas affect program performance:
v Coding techniques. These include using a programming style that helps the
optimizer, choosing efficient data types, and handling tables efficiently.
v Optimization. You can optimize your code by using the OPTIMIZE compiler
option.
v Compiler options and USE FOR DEBUGGING ON ALL PROCEDURES. Certain compiler
options and language affect the efficiency of your program.
v Run-time environment. Carefully consider your choice of run-time options and
other run-time considerations that control how your compiled program runs.
v Running under CICS, IMS, or using VSAM. Various tips can help make these
programs run efficiently.
RELATED CONCEPTS
“Optimization” on page 586
IBM Enterprise COBOL Version 3 Release 1 Performance Tuning
(www.ibm.com/software/awdtools/cobol/zos/pdf/cobpf310.pdf)
RELATED TASKS
“Using an optimal programming style”
“Choosing efficient data types” on page 581
“Handling tables efficiently” on page 583
“Optimizing your code” on page 586
“Choosing compiler features to enhance performance” on page 588
Specifying run-time options (Language Environment Programming Guide)
“Running efficiently with CICS, IMS, or VSAM” on page 592
RELATED REFERENCES
“Performance-related compiler options” on page 589
Storage performance considerations (Language Environment Programming Guide)
Factoring expressions
Factoring can save a lot of computation. For example, this code:
MOVE ZERO TO TOTAL
PERFORM VARYING I FROM 1 BY 1 UNTIL I = 10
COMPUTE TOTAL = TOTAL + ITEM(I)
END-PERFORM
COMPUTE TOTAL = TOTAL * DISCOUNT
If you move a literal to a data item, the optimizer recognizes it as a constant, but
only in a limited region of the program after the MOVE statement.
For example, given that V1, V2, and V3 are variables and that C1, C2, and C3 are
constants, the expressions that contain the constant computations are preferable to
those that do not:
The optimizer can eliminate duplicate computations; you do not need to introduce
artificial temporary computations. The program is often more comprehensible
without them.
To produce the most efficient code for a BINARY data item, ensure that it has:
v A sign (an S in its PICTURE clause)
v Eight or fewer digits
For a data item that is larger than eight digits or is used with DISPLAY data items,
use PACKED-DECIMAL. The code generated for PACKED-DECIMAL data items can be as
fast as that for BINARY data items in some cases, especially if the statement is
complicated or specifies rounding.
To produce the most efficient code for a PACKED-DECIMAL data item, ensure that it
has:
v A sign (an S in its PICTURE clause)
v An odd number of digits (9s in the PICTURE clause), so that it occupies an exact
number of bytes without a half byte left over
v 15 or fewer digits in the PICTURE specification to avoid using library routines for
multiplication and division
You largely avoid conversions by using consistent data types, giving both operands
the same usage and also appropriate PICTURE specifications. That is, you should
give two numbers to be compared, added, or subtracted not only have the same
usage but also the same number of decimal places (9s after the V in the PICTURE
clause).
Arithmetic expressions
Computation of arithmetic expressions that are evaluated in floating point is most
efficient when the operands need little or no conversion. Use operands that are
COMP-1 or COMP-2 to produce the most efficient code.
Exponentiations
Use floating point for exponentiations for large exponents to achieve faster
evaluation and more accurate results. For example, the first statement below is
computed more quickly and accurately than the second statement:
COMPUTE fixed-point1 = fixed-point2 ** 100000.E+00
RELATED CONCEPTS
“Formats for numeric data” on page 40
The following two guidelines affect your choice of how to refer to table elements:
v Use indexing rather than subscripting.
Although the compiler can eliminate duplicate indexes and subscripts, the
original reference to a table element is more efficient with indexes than with
subscripts, even if the subscripts are BINARY. The value of an index has the
element size factored into it, whereas the value of a subscript must be multiplied
by the element size when the subscript is used. The index already contains the
displacement from the start of the table, and this value does not have to be
calculated at run time. However, subscripting might be easier to understand and
maintain.
v Use relative indexing.
Relative index references (that is, references in which an unsigned numeric
literal is added to or subtracted from the index name) are executed as fast as
direct index references and sometimes faster. There is no merit in keeping
alternative indexes with the offset factored in.
Whether you use indexes or subscripts, the following guidelines can help you get
better performance in terms of how you code them:
v Put constant and duplicate indexes or subscripts on the left.
You can reduce or eliminate run-time computations by making the constant and
duplicate indexes or subscripts the leftmost ones. Even when all the indexes or
subscripts are variable, try to use your tables so that the rightmost subscript
varies most often for references that occur close to each other in the program.
This practice also improves the pattern of storage references as well as paging. If
all the indexes or subscripts are duplicates, then the entire index or subscript
computation is a common subexpression.
v Specify the element length so that it matches that of related tables.
When you index or subscript tables, it is most efficient if all the tables have the
same element length. With equal element lengths, the stride for the last
dimension of the tables will be equal. The optimizer can then reuse the
rightmost index or subscript computed for one table. If both the element lengths
and the number of occurrences in each dimension are equal, then the strides for
dimensions other than the last are also equal, resulting in greater commonality
between their subscript computations. The optimizer can then reuse indexes or
subscripts other than the rightmost.
v Avoid errors in references by coding index and subscript checks into your
program.
If you need to validate your indexes and subscripts, it might be faster to code
your own checks in your COBOL program than to use the SSRANGE compiler
option.
RELATED CONCEPTS
“Optimization of table references”
RELATED TASKS
“Referring to an item in a table” on page 61
“Choosing efficient data types” on page 581
RELATED REFERENCES
“SSRANGE” on page 304
Here comp_s1 is the value of S1 after conversion to binary, comp-s2 is the value of
S2 after conversion to binary, and so on. The strides for each dimension are d1, d2,
and d3. The stride of a given dimension is the distance in bytes between table
elements whose occurrence numbers in that dimension differ by 1 and whose other
occurrence numbers are equal. For example, the stride, d2, of the second dimension
in the above example is the distance in bytes between ELEMENT(S1 1 S3) and
ELEMENT(S1 2 S3).
Because the compiler evaluates expressions from left to right, the optimizer finds
the most opportunities to eliminate computations when the constant or duplicate
subscripts are the leftmost.
However, for the table element reference ELEMENT(C1 C2 V1) the compiler can
eliminate the entire subexpression comp_c1 * d1 + comp_c2 * d2 as constant from
the expression:
comp_c1 * d1 + comp_c2 * d2 + comp_v1 * d3 + base_address
In the table element reference ELEMENT(C1 C2 C3), all the subscripts are constant,
and so no subscript computation is done at run time. The expression is:
comp_c1 * d1 + comp_c2 * d2 + comp_c3 * d3 + base_address
However, for the two table element references ELEMENT(V1 V2 V3) and ELEMENT(V1
V2 V4) the entire subexpression comp_v1 * d1 + comp_v2 * d2 is common between
the two expressions needed to reference the table elements:
comp_v1 * d1 + comp_v2 * d2 + comp_v3 * d3 + base_address
comp_v1 * d1 + comp_v2 * d2 + comp_v4 * d3 + base_address
In the two references ELEMENT(V1 V2 V3) and ELEMENT(V1 V2 V3), the expressions
are the same:
comp_v1 * d1 + comp_v2 * d2 + comp_v3 * d3 + base_address
comp_v1 * d1 + comp_v2 * d2 + comp_v3 * d3 + base_address
With the optimizer, the second (and any subsequent) reference to the same element
can be as efficient as a reference to a scalar (nontable) item.
The direct indexing in ELEMENT (I5, J3, K2) requires this preprocessing:
This processing makes the direct indexing less efficient than the relative indexing
in ELEMENT (I + 5, J - 3, K + 2).
RELATED CONCEPTS
“Optimization”
RELATED TASKS
“Handling tables efficiently” on page 583
You might also want to use this compiler option during development if a program
is used frequently without recompilation. However, the overhead for OPTIMIZE
might outweigh its benefits if you recompile frequently, unless you are using the
assembler language expansion (LIST compiler option) to fine-tune your program.
For unit-testing your program, you will probably find it easier to debug code that
has not been optimized.
To see how the optimizer works on your program, compile it with and without the
OPTIMIZE option and compare the generated code. (Use the LIST compiler option to
request the assembler language listing of the generated code.)
RELATED CONCEPTS
“Optimization”
RELATED REFERENCES
“LIST” on page 289
“OPTIMIZE” on page 295
Optimization
To improve the efficiency of the generated code, you can use the OPTIMIZE compiler
option to cause the COBOL optimizer to do the following:
v Eliminate unnecessary transfers of control and inefficient branches, including
those generated by the compiler that are not evident from looking at the source
program.
v Simplify the compiled code for both a PERFORM statement and a CALL statement to
a contained (nested) program. Where possible, the optimizer places the
statements inline, eliminating the need for linkage code. This optimization is
known as procedure integration. If procedure integration cannot be done, the
optimizer uses the simplest linkage possible (perhaps as few as two instructions)
to get to and from the called program.
v Eliminate duplicate computations (such as subscript computations and repeated
statements) that have no effect on the results of the program.
Program size: If several CALL statements call contained programs and these
programs replace each such statement, the containing program can become large.
The optimizer limits this increase to no more than 50 percent, after which it no
longer integrates the programs. The optimizer then chooses the next best
optimization for the CALL statement; the linkage overhead can be as few as two
instructions.
RELATED REFERENCES
“OPTIMIZE” on page 295
By contrast, in the following program only the first PERFORM statement, PERFORM 12,
will be optimized by procedure integration:
1 SECTION.
11. PERFORM 12
STOP RUN.
12. PERFORM 21
PERFORM 21.
2 SECTION 5.
21. IF A < 5 THEN
ADD 1 TO A
DISPLAY A
END-IF.
RELATED CONCEPTS
“Optimization of table references” on page 584
RELATED TASKS
“Optimizing your code” on page 586
Chapter 34, “Tuning your program,” on page 579
Another compiler feature to consider besides compiler options is the USE FOR
DEBUGGING ON ALL PROCEDURES statement. It can greatly affect the compiler
optimizer. The ON ALL PROCEDURES option generates extra code at each transfer to a
procedure name. Although very useful for debugging, it can make the program
significantly larger and inhibit optimization substantially.
Although COBOL allows segmentation language, you will not improve storage
allocation by using it, because COBOL does not perform overlay.
RELATED CONCEPTS
“Optimization” on page 586
RELATED TASKS
“Optimizing your code” on page 586
“Getting listings” on page 331
RELATED REFERENCES
“Performance-related compiler options”
RELATED CONCEPTS
“Optimization” on page 586
“Storage and its addressability” on page 34
RELATED TASKS
“Generating a list of compiler error messages” on page 246
“Evaluating performance” on page 592
“Optimizing buffer and device space” on page 12
“Choosing compiler features to enhance performance” on page 588
RELATED REFERENCES
“Sign representation and processing” on page 45
“Allocation of buffers for QSAM files” on page 140
Evaluating performance
Fill in this worksheet to help you evaluate the performance of your program. If
you answer yes to each question, you are probably improving the performance.
In thinking about the performance tradeoff, be sure you understand the function of
each option as well as the performance advantages and disadvantages. You might
prefer function over increased performance in many instances.
Table 85. Performance-tuning worksheet
Compiler option Consideration Yes?
AWO Do you use the AWO option when possible?
DATA When you use QSAM striped data sets, do you use the
DATA(31) option?
DYNAM Do you use NODYNAM? Consider the performance tradeoffs.
FASTSRT When you use direct work files for the sort work files,
have you selected the FASTSRT option?
NUMPROC Do you use NUMPROC(PFD) when possible?
OPTIMIZE Do you use OPTIMIZE for production runs? Can you use
OPTIMIZE(FULL)?
RENT Do you use NORENT? Consider the performance tradeoffs.
RMODE(ANY) Do you use RMODE(ANY) with your NORENT programs?
Consider the performance tradeoffs with storage usage.
SSRANGE Do you use NOSSRANGE for production runs?
TEST Do you use NOTEST, TEST(NONE,SYM), or
TEST(NONE,SYM,SEPARATE) for production runs?
TRUNC Do you use TRUNC(OPT) when possible?
RELATED TASKS
“Choosing compiler features to enhance performance” on page 588
RELATED REFERENCES
“Performance-related compiler options” on page 589
CICS
If your application runs under CICS, convert EXEC CICS LINK commands to
COBOL CALL statements to improve transaction response time.
For better system performance, use the RENT compiler option and preload the
applications and library routines when possible.
You can also use the Language Environment library routine retention (LRR)
function to improve performance in IMS/TM regions.
VSAM
When you use VSAM files, increase the number of data buffers for sequential
access or index buffers for random access. Also, select a control interval size (CISZ)
appropriate for the application. Smaller CISZ results in faster retrieval for the
random processing at the expense of inserts, and a larger CISZ is more efficient for
sequential processing.
For better performance, access the records sequentially and avoid using multiple
alternate indexes when possible. If you do use alternate indexes, access method
services builds them more efficiently than the AIXBLD run-time option.
RELATED TASKS
“Coding COBOL programs to run under CICS” on page 359
Chapter 22, “Developing COBOL programs for IMS,” on page 377
“Improving VSAM performance” on page 171
Language Environment Customization
RELATED REFERENCES
Specifying run-time options (Language Environment Programming Guide)
COBOL provides various capabilities for manipulating strings and numbers. These
capabilities can help you simplify your coding.
The Language Environment date and time callable services store dates as fullword
binary integers and timestamps as long (64-bit) floating-point values. These
formats let you do arithmetic calculations on date and time values simply and
efficiently. You do not need to write special subroutines that use services outside
the language library for your application in order to perform these calculations.
RELATED CONCEPTS
“Numeric intrinsic functions” on page 48
“Math and date Language Environment services” on page 49
RELATED TASKS
“Eliminating repetitive coding”
“Converting data items (intrinsic functions)” on page 97
“Evaluating data items (intrinsic functions)” on page 99
“Using Language Environment callable services” on page 597
To specify more than one copy library, use either multiple system definitions or a
combination of multiple definitions and the IN/OF phrase (IN/OF library-name):
z/OS batch
Use JCL to concatenate data sets on your SYSLIB DD statement.
Alternatively, define multiple DD statements and use the IN/OF phrase of
the COPY statement.
TSO Use the ALLOCATE command to concatenate data sets for SYSLIB.
Alternatively, issue multiple ALLOCATE statements and use the IN/OF phrase
of the COPY statement.
UNIX Use the SYSLIB environment variable to define multiple paths to your
copybooks. Alternatively, use multiple environment variables and use the
IN/OF phrase of the COPY statement.
COPY and debugging line: In order for the text copied to be treated as debug lines,
for example, as if there were a D inserted in column 7, put the D on the first line of
the COPY statement. A COPY statement itself cannot be a debugging line; if it
contains a D and WITH DEBUGGING mode is not specified, the COPY statement is
nevertheless processed.
RELATED REFERENCES
Chapter 18, “Compiler-directing statements,” on page 317
You can retrieve the text-name CFILEA by using the COPY statement in a source
program:
FD FILEA
COPY CFILEA.
The library entry is copied into your program, and the resulting program listing
looks like this:
FD FILEA
COPY CFILEA.
C BLOCK CONTAINS 20 RECORDS
C RECORD CONTAINS 120 CHARACTERS
C LABEL RECORDS ARE STANDARD
C DATA RECORD IS FILE-OUT.
C 01 FILE-OUT PIC X(120).
In the compiler source listing, the COPY statement prints on a separate line. C
precedes copied lines.
Assume that a copybook with the text-name DOWORK is stored by using the
following statements:
COMPUTE QTY-ON-HAND = TOTAL-USED-NUMBER-ON-HAND
MOVE QTY-ON-HAND to PRINT-AREA
If you use the EXIT compiler option to provide a LIBEXIT module, your results
might differ from those shown here.
RELATED REFERENCES
Chapter 18, “Compiler-directing statements,” on page 317
RELATED CONCEPTS
“Sample list of Language Environment callable services”
“Numeric intrinsic functions” on page 48
“Math and date Language Environment services” on page 49
RELATED TASKS
“Calling Language Environment services” on page 599
“Using procedure and function pointers” on page 407
RELATED REFERENCES
Language Environment Programming Reference
Define the variables for the CALL statement in the DATA DIVISION with the
definitions required by the function you are calling:
77 argument comp-1.
77 feedback-code pic x(12) display.
77 result comp-1.
You can choose whether you want to specify the feedback code parameter. If you
specify the feedback code, the value returned in feedback-code indicates whether
the service completed successfully. If you specify OMITTED instead of the feedback
code and the service is not successful, a Language Environment condition is
automatically signaled to the Language Environment condition manager. You can
handle such a condition by recovery logic implemented in a user-written condition
handler, or allow the default Language Environment processing for unhandled
conditions to occur. In any case, this avoids the requirement to write logic to check
the feedback code explicitly after each call.
When you call a Language Environment callable service and specify OMITTED for
the feedback code, the RETURN-CODE special register is set to 0 if the service is
successful. It is not altered if the service is unsuccessful. If you do not specify
OMITTED for the feedback code, the RETURN-CODE special register is always set to 0
regardless of whether the service completed successfully.
RELATED CONCEPTS
General callable services (Language Environment Programming Guide)
RELATED REFERENCES
General callable services (Language Environment Programming Reference)
CALL statement (Enterprise COBOL Language Reference)
The precision of intermediate results depends on whether you compile using the
default option ARITH(COMPAT) (referred to as compatibility mode) or using
ARITH(EXTEND) (referred to as extended mode), as explained below.
RELATED REFERENCES
“Fixed-point data and intermediate results” on page 605
“Floating-point data and intermediate results” on page 610
“Arithmetic expressions in nonarithmetic statements” on page 611
“ARITH” on page 271
RELATED REFERENCES
ROUNDED phrase (Enterprise COBOL Language Reference)
RELATED CONCEPTS
“Arithmetic expressions” on page 48
RELATED REFERENCES
“Terminology used for intermediate results” on page 604
You must define the operands of any arithmetic statements with enough decimal
places to obtain the accuracy you want in the final result.
The following table shows the number of places the compiler carries for
fixed-point intermediate results of arithmetic operations involving addition,
subtraction, multiplication, or division in compatibility mode (that is, when you
compile using the default compiler option ARITH(COMPAT)):
Value of i +
Value of i + d Value of d dmax Number of places carried for ir
<30 Any value Any value i integer and d decimal places
=30
The following table shows the number of places the compiler carries for
fixed-point intermediate results of arithmetic operations involving addition,
subtraction, multiplication, or division in extended mode (that is, when you compile
using option ARITH(EXTEND)):
Value of i +
Value of i + d Value of d dmax Number of places carried for ir
<31 Any value Any value i integer and d decimal places
=31
>31 <dmax Any value 31-d integer and d decimal places
=dmax
>dmax <31 i integer and 31-i decimal places
=31
>31 31-dmax integer and dmax decimal
places
Exponentiation
Exponentiation is represented by the expression op1 ** op2. Based on the
characteristics of op2, the compiler handles exponentiation of fixed-point numbers
in one of three ways:
v When op2 is expressed with decimals, floating-point instructions are used.
v When op2 is an integral literal or constant, the value d is computed as
d = d1 * |op2|
and the value i is computed based on the characteristics of op1:
– When op1 is a data-name or variable,
i = i1 * |op2|
– When op1 is a literal or constant, i is set equal to the number of integers in
the value of op1 ** |op2|.
In compatibility mode (compilation using ARITH(COMPAT)), the compiler having
calculated i and d takes the action indicated in the table below to handle the
intermediate results ir of the exponentiation.
If op2 is negative, the value of 1 is then divided by the result produced by the
preliminary computation. The values of i and d that are used are calculated
following the division rules for fixed-point data already shown above.
v When op2 is an integral data-name or variable, dmax decimal places and 30-dmax
(compatibility mode) or 31-dmax (extended mode) integer places are used. op1 is
multiplied by itself (|op2| - 1) times for nonzero op2.
If op2 is equal to 0, the result is 1. Division-by-0 and exponentiation SIZE ERROR
conditions apply.
Fixed-point exponents with more than nine significant digits are always truncated
to nine digits. If the exponent is a literal or constant, an E-level compiler diagnostic
message is issued; otherwise, an informational message is issued at run time.
RELATED REFERENCES
“Terminology used for intermediate results” on page 604
“Truncated intermediate results” on page 608
“Binary data and intermediate results” on page 608
“Floating-point data and intermediate results” on page 610
“Intrinsic functions evaluated in fixed-point arithmetic” on page 608
“ARITH” on page 271
SIZE ERROR phrases (Enterprise COBOL Language Reference)
If B is equal to 4, the result is computed as shown below. The values of i and d that
are used are calculated following the multiplication rules for fixed-point data and
intermediate results (referred to below).
RELATED REFERENCES
“Terminology used for intermediate results” on page 604
“Fixed-point data and intermediate results” on page 605
If you want to avoid the truncation of intermediate results that can occur in
fixed-point calculations, use floating-point operands (COMP-1 or COMP-2) instead.
RELATED CONCEPTS
“Formats for numeric data” on page 40
RELATED REFERENCES
“Fixed-point data and intermediate results” on page 605
“ARITH” on page 271
You use binary operands most efficiently when the intermediate results will not
exceed nine digits.
RELATED REFERENCES
“Fixed-point data and intermediate results” on page 605
“ARITH” on page 271
Integer functions
Integer intrinsic functions return an integer; thus their outer-dmax is always zero.
For those integer functions whose arguments must all be integers, the inner-dmax is
thus also always zero.
Mixed functions
A mixed intrinsic function is a function whose result type depends on the type of
its arguments. A mixed function is fixed point if all of its arguments are numeric
and none of its arguments is floating point. (If any argument of a mixed function is
floating point, the function is evaluated with floating-point instructions and returns
a floating-point result.) When a mixed function is evaluated with fixed-point
arithmetic, the result is integer if all of the arguments are integer; otherwise, the
result is fixed point.
For the mixed functions MAX, MIN, RANGE, REM, and SUM, the outer-dmax is always
equal to the inner-dmax (and both are thus zero if all the arguments are integer). To
determine the precision of the result returned for these functions, apply the rules
for fixed-point arithmetic and intermediate results (as referred to below) to each
step in the algorithm.
MAX
1. Assign the first argument to the function result.
2. For each remaining argument, do the following:
a. Compare the algebraic value of the function result with the
argument.
b. Assign the greater of the two to the function result.
MIN
1. Assign the first argument to the function result.
2. For each remaining argument, do the following:
RELATED REFERENCES
“Terminology used for intermediate results” on page 604
“Fixed-point data and intermediate results” on page 605
“Floating-point data and intermediate results”
“ARITH” on page 271
Mixed functions with at least one floating-point argument are evaluated using
floating-point arithmetic.
RELATED REFERENCES
“Terminology used for intermediate results” on page 604
“ARITH” on page 271
RELATED CONCEPTS
“Fixed-point versus floating-point arithmetic” on page 53
RELATED REFERENCES
“Terminology used for intermediate results” on page 604
“Fixed-point data and intermediate results” on page 605
“Floating-point data and intermediate results” on page 610
IF statement (Enterprise COBOL Language Reference)
EVALUATE statement (Enterprise COBOL Language Reference)
Conditional expressions (Enterprise COBOL Language Reference)
The basic forms of complex ODO permitted by the compiler are as follows:
v Variably located item or group: A data item described by an OCCURS clause with
the DEPENDING ON phrase is followed by a nonsubordinate data item or group.
v Variably located table: A data item described by an OCCURS clause with the
DEPENDING ON phrase is followed by a nonsubordinate data item described by an
OCCURS clause.
v Table that has variable-length elements: A data item described by an OCCURS
clause contains a subordinate data item described by an OCCURS clause with the
DEPENDING ON phrase.
v Index name for a table that has variable-length elements.
v Element of a table that has variable-length elements.
Using complex ODO can make maintaining your code more difficult, and is
potentially error prone as discussed in the related tasks below.
RELATED TASKS
“Preventing index errors when changing ODO object value” on page 615
“Preventing overlay when adding elements to a variable table” on page 615
RELATED REFERENCES
“Effects of change in ODO object value” on page 614
OCCURS DEPENDING ON clause (Enterprise COBOL Language Reference)
Definition: In the example, COUNTER-1 is an ODO object, that is, it is the object of
the DEPENDING ON clause of RECORD-1. RECORD-1 is said to be an ODO subject.
Similarly, COUNTER-2 is the ODO object of the corresponding ODO subject,
RECORD-2.
The value of an ODO object can change when you move data to the ODO object or
to the group in which it is contained. The value can also change if the ODO object
is contained in a record that is the target of a READ statement.
The following code shows how to save and restore the index-name (seen in
“Example: complex ODO” on page 613) when the ODO object COUNTER-2 changes.
77 INTEGER-DATA-ITEM-1 PIC 99.
. . .
SET INDX TO 5.
* INDX is valid at this point.
SET INTEGER-DATA-ITEM-1 TO INDX.
* INTEGER-DATA-ITEM-1 now has the
* occurrence number corresponding to INDX.
MOVE NEW-VALUE TO COUNTER-2.
* INDX is not valid at this point.
SET INDX TO INTEGER-DATA-ITEM-1.
* INDX is now valid, containing the offset
* corresponding to INTEGER-DATA-ITEM-1, and
* can be used with the expected results.
RELATED REFERENCES
SET statement (Enterprise COBOL Language Reference)
In the following example, suppose you want to add an element to the table
VARY-FIELD-1, whose number of elements depends on the ODO object CONTROL-1.
VARY-FIELD-1 is followed by the nonsubordinate variably located data item
GROUP-ITEM-1, whose elements could potentially be overlaid.
WORKING-STORAGE SECTION.
01 VARIABLE-REC.
05 FIELD-1 PIC X(10).
05 CONTROL-1 PIC S99.
05 CONTROL-2 PIC S99.
05 VARY-FIELD-1 OCCURS 1 TO 10 TIMES
DEPENDING ON CONTROL-1 PIC X(5).
05 GROUP-ITEM-1.
10 VARY-FIELD-2
OCCURS 1 TO 10 TIMES
DEPENDING ON CONTROL-2 PIC X(9).
01 STORE-VARY-FIELD-2.
05 GROUP-ITEM-2.
10 VARY-FLD-2
OCCURS 1 TO 10 TIMES
DEPENDING ON CONTROL-2 PIC X(9).
Each element of VARY-FIELD-1 has 5 bytes, and each element of VARY-FIELD-2 has 9
bytes. If CONTROL-1 and CONTROL-2 both contain the value 3, you can picture storage
for VARY-FIELD-1 and VARY-FIELD-2 as follows:
You can picture the updated storage for VARY-FIELD-1 and VARY-FIELD-2 as follows:
Note that the service routines do not support a code page argument and are not
sensitive to the code page specified by the CODEPAGE compiler option.
The DBCS compiler option does not affect the operation of the service routines.
RELATED TASKS
“Converting national data” on page 107
“Processing alphanumeric data items that contain DBCS data” on page 112
RELATED REFERENCES
“DBCS notation”
“Alphanumeric to DBCS data conversion (IGZCA2D)”
“DBCS to alphanumeric data conversion (IGZCD2A)” on page 622
“CODEPAGE” on page 274
DBCS notation
These symbols are used in the DBCS data conversion examples to describe DBCS
items:
Symbols Meaning
< and > Shift-out (SO) and shift-in (SI), respectively
D0, D1, D2, . . ., Dn Any DBCS character except for double-byte EBCDIC
characters that correspond to single-byte EBCDIC
characters
.A, .B, .C, . . . Any double-byte EBCDIC character that corresponds
to a single-byte EBCDIC character; the period (.)
represents the value X’42’
A single letter, such as A, B, or s Any single-byte EBCDIC character
IGZCA2D syntax
To use the IGZCA2D service routine, pass the following four parameters to the
routine by using the CALL statement:
Usage notes
v You can pass parameter-1, parameter-3, and parameter-4 to the routine BY
REFERENCE or BY CONTENT, but you must pass parameter-2 BY REFERENCE.
v The compiler does not perform syntax checking on these parameters. Ensure that
the parameters are correctly set and passed in the CALL statement to the
conversion routine. Otherwise, results are unpredictable.
v When creating parameter-2 from parameter-1, IGZCA2D makes these changes:
– Removes the shift codes, leaving the DBCS data unchanged
– Converts the single-byte (nonspace) EBCDIC character X’nn’ to a character
represented by X’42nn’
– Converts the single-byte space (X’40’) to DBCS space (X’4040’), instead of
X’4240’
v IGZCA2D does not change the contents of parameter-1, parameter-3, or
parameter-4.
v The valid range for the contents of parameter-3 is 1 to 16,777,215, and the valid
range for the contents of parameter-4 is 1 to 15,777,214.
RELATED REFERENCES
“IGZCA2D return codes”
Example: IGZCA2D
The following CALL statement converts the alphanumeric data in alpha-item to
DBCS data. The results of the conversion are placed in dbcs-item.
CALL “IGZCA2D” USING BY REFERENCE alpha-item dbcs-item
BY CONTENT LENGTH OF alpha-item LENGTH OF dbcs-item
Suppose the contents of alpha-item and dbcs-item and the lengths before the
conversion are:
alpha-item = AB<D1D2D3>CD
dbcs-item = D4D5D6D7D8D9D0
LENGTH OF alpha-item = 12
LENGTH OF dbcs-item = 14
RELATED REFERENCES
“DBCS notation” on page 619
IGZCD2A syntax
To use the IGZCD2A service routine, pass the following four parameters to the
routine using the CALL statement:
parameter-1
The sending field for the conversion, handled as a DBCS data item.
parameter-2
The receiving field for the conversion, handled as an alphanumeric data
item.
parameter-3
The number of bytes in parameter-1 to be converted.
It can be the LENGTH OF special register of parameter-1, or a 4-byte USAGE IS
BINARY data item containing the number of bytes of parameter-1 to be
converted.
parameter-4
The number of bytes in parameter-2 that will receive the converted data.
It can be the LENGTH OF special register of parameter-2, or a 4-byte USAGE IS
BINARY data item containing the number of bytes of parameter-2 to receive
the converted data. Shift codes count as 1 byte each.
Usage notes
v You can pass parameter-1, parameter-3, and parameter-4 to the routine BY
REFERENCE or BY CONTENT, but you must pass parameter-2 BY REFERENCE.
v The compiler does not perform syntax checking on these parameters. Ensure that
the parameters are correctly set and passed to the conversion routine. Otherwise,
results are unpredictable.
v When creating parameter-2 from parameter-1, IGZCD2A makes these changes:
– Inserts shift codes around DBCS characters that do not correspond to
single-byte EBCDIC characters
– Converts DBCS characters to single-byte characters when the DBCS characters
correspond to single-byte EBCDIC characters
– Converts the DBCS space (X’4040’) to a single-byte space (X’40’)
v IGZCD2A does not change the contents of parameter-1, parameter-3, or
parameter-4.
v If the converted data contains double-byte characters, shift codes are counted in
the length of parameter-2.
v The valid range for the contents of parameter-3 is 1 to 16,777,214, and the valid
range for the contents of parameter-4 is 1 to 15,777,215, which is the maximum
size of alphanumeric item.
RELATED REFERENCES
“IGZCD2A return codes” on page 623
Example: IGZCD2A
The following CALL statement converts the DBCS data in dbcs-item to
alphanumeric data with double-byte characters. The results of the conversion are
placed in alpha-item.
CALL “IGZCD2A” USING BY REFERENCE dbcs-item alpha-item
BY CONTENT LENGTH OF dbcs-item LENGTH OF alpha-item
Suppose the contents of dbcs-item and alpha-item and the lengths before the
conversion are:
dbcs-item = .A.BD1D2D3.C.D
alpha-item = ssssssssssss
LENGTH OF dbcs-item = 14
LENGTH OF alpha-item = 12
RELATED REFERENCES
“DBCS notation” on page 619
RELATED REFERENCES
“XML PARSE exceptions that allow continuation”
“XML PARSE exceptions that do not allow continuation” on page 628
“XML GENERATE exceptions” on page 633
“XML conformance” on page 631
XML specification (www.w3c.org/XML/)
The table describes each exception and the actions that the parser takes when you
| request that it continue after the exception. Some of the descriptions use the
| following terms:
| v Basic document encoding
| v Document encoding declaration
| For definitions of the terms, see the related task below on understanding the
| encoding of XML documents.
Table 89. XML PARSE exceptions that allow continuation
Code Description Parser action on continuation
1 The parser found an invalid character The parser continues detecting errors
while scanning white space outside until it reaches the end of the document
element content. or encounters an error that does not
allow continuation. The parser does not
signal any further normal events, except
for the END-OF-DOCUMENT event.
2 The parser found an invalid start of a The parser continues detecting errors
processing instruction, element, until it reaches the end of the document
comment, or document type or encounters an error that does not
declaration outside element content. allow continuation. The parser does not
signal any further normal events, except
for the END-OF-DOCUMENT event.
3 The parser found a duplicate attribute The parser continues detecting errors
name. until it reaches the end of the document
or encounters an error that does not
allow continuation. The parser does not
signal any further normal events, except
for the END-OF-DOCUMENT event.
RELATED TASKS
“Understanding the encoding of XML documents” on page 462
“Handling errors in parsing XML documents” on page 465
RELATED TASKS
“Handling errors in parsing XML documents” on page 465
XML conformance
The XML parser that is included in Enterprise COBOL is not a conforming XML
processor according to the definition in the XML specification. It does not validate
the XML documents that you parse. Although it does check for many
well-formedness errors, it does not perform all of the actions required of a
nonvalidating XML processor.
In particular, it does not process the internal document type definition (DTD
internal subset). Thus it does not supply default attribute values, does not
normalize attribute values, and does not include the replacement text of internal
entities except for the predefined entities. Instead, it passes the entire document
type declaration as the contents of XML-TEXT or XML-NTEXT for the
DOCUMENT-TYPE-DESCRIPTOR XML event, which allows the application to perform
these actions if required.
The COBOL XML parser does check that documents conform to the XML grammar,
except for any document type declaration. The declaration is supplied in its
entirety, unchecked, to your application.
The following material is an annotation from the XML specification. The W3C is not
responsible for any content not found at the original URL (www.w3.org/TR/REC-xml). All
the annotations are non-normative and are shown in italic.
Copyright (C) 1994-2001 W3C (R) (Massachusetts Institute of Technology, Institut National
de Recherche en Informatique et en Automatique, Keio University), All Rights Reserved.
W3C liability, trademark, document use, and software licensing rules apply.
(www.w3.org/Consortium/Legal/ipr-notice-20000612)
The preceding material is an annotation from the XML specification. The W3C is not
responsible for any content not found at the original URL (www.w3.org/TR/REC-xml); all
these annotations are non-normative. This document has been reviewed by W3C Members
and other interested parties and has been endorsed by the Director as a W3C
Recommendation. It is a stable document and may be used as reference material or cited as
a normative reference from another document. The normative version of the specification is
the English version found at the W3C site; any translated document may contain errors
from the translation.
RELATED CONCEPTS
“XML parser in COBOL” on page 447
RELATED REFERENCES
XML specification (www.w3c.org/XML/)
2.8 Prolog and document type declaration (XML specification at
www.w3.org/TR/REC-xml#sec-prolog-dtd)
RELATED TASKS
“Handling errors in generating XML output” on page 480
For SYSADATA, the ADEXIT suboption provides a module that will be called for
each SYSADATA record immediately after the record has been written out to the
file.
NOEXIT
EXIT( )
INEXIT( mod1)
str1,
NOINEXIT
LIBEXIT( mod2)
str2,
NOLIBEXIT
PRTEXIT( mod3)
str3,
NOPRTEXIT
ADEXIT( mod4)
str4,
NOADEXIT
If you specify the EXIT option without providing at least one suboption, NOEXIT
will be in effect. You can specify the suboptions in any order and separate them by
either commas or spaces. If you specify both the positive and negative form of a
suboption (INEXIT|NOINEXT, LIBEXIT|NOLIBEXIT, PRTEXIT|NOPRTEXIT, or
ADEXIT|NOADEXIT), the form specified last takes effect. If you specify the same
suboption more than once, the last one specified takes effect.
You can specify the EXIT option only at invocation in the JCL PARM field (under
TSO/E, in a command argument) or at installation time. Do not specify the EXIT
option in a PROCESS (CBL) statement.
INEXIT([’str1’,]mod1)
The compiler reads source code from a user-supplied load module (where
mod1 is the module name), instead of SYSIN.
LIBEXIT([’str2’,]mod2)
The compiler obtains copybooks from a user-supplied load module (where
mod2 is the module name), instead of library-name or SYSLIB. For use with
either COPY or BASIS statements.
The module names mod1, mod2, mod3, and mod4 can refer to the same module.
The suboptions str1, str2, str3, and str4 are character strings that are passed to the
load module. These strings are optional. They can be up to 64 characters in length,
and you must enclose them in single quotation marks. Any character is allowed,
but included single quotation marks must be doubled, and lowercase characters
are folded to uppercase.
If one of str1, str2, str3, or str4 is specified, the string is passed to the appropriate
user-exit module with the following format:
LL string
RELATED TASKS
“Using the user-exit work area”
“Calling from exit modules” on page 637
“Using the EXIT compiler option with CICS and SQL statements” on page 644
RELATED REFERENCES
“Processing of INEXIT” on page 637
“Processing of LIBEXIT” on page 638
“Processing of PRTEXIT” on page 641
“Processing of ADEXIT” on page 642
“Error handling for exit modules” on page 644
You need to establish your own conventions for using the work area if more than
one exit is active during the compilation. For example, the INEXIT module uses
the first word in the work area, the LIBEXIT module uses the second word, the
PRTEXIT module uses the third word, and the ADEXIT module uses the fourth
word.
Exit modules must have the RMODE attribute of 24 and the AMODE attribute of ANY.
Processing of INEXIT
The exit module is used to read source code from a user-supplied load module in
place of SYSIN.
RELATED TASKS
“Using the EXIT compiler option with CICS and SQL statements” on page 644
RELATED REFERENCES
“Processing of LIBEXIT”
Processing of LIBEXIT
The exit module is used in place of the SYSLIB, or library-name, data set. Calls are
made to the module by the compiler to obtain copybooks whenever COPY or BASIS
statements are encountered.
The compiler does not allow recursive calls to text-name. That is, a copybook can
be named only once in a set of nested COPY statements until the end-of-data for
that copybook is reached.
The following table shows how the processing of LIBEXIT changes when there are
one or more valid COPY statements that are not nested:
Table 95. LIBEXIT processing with nonnested COPY statements
Action by compiler Resulting action by exit module
Loads the exit module (mod2) during
initialization
Calls the exit module with an OPEN Prepares the specified library-name for processing.
operation code (op code) Passes the status of the OPEN request to the
compiler.
Calls the exit module with a FIND op Establishes positioning at the requested text-name
code if the library-name has successfully (or basis-name) in the specified library-name; this
opened place becomes the active copybook.
Passes an appropriate return code to the compiler
when positioning is complete.
Calls the exit module with a FIND op Reestablishes positioning at the previous active
code if the library-name has successfully copybook. Passes an appropriate return code to
opened the compiler when positioning is complete.
Calls the exit module with a GET op Passes the compiler the same record as was
code. passed previously from this copybook. After
verification, passes either the length and address
Verifies that the same record was of the record to be copied from the active
passed. copybook or the end-of-data indicator.
Calls the exit module with a CLOSE op Releases any resources that are related to its
code when the end-of-data is presented input
RELATED TASKS
“Using the EXIT compiler option with CICS and SQL statements” on page 644
Processing of PRTEXIT
The exit module is used in place of the SYSPRINT data set.
RELATED TASKS
“Using the EXIT compiler option with CICS and SQL statements” on page 644
RELATED REFERENCES
“Processing of LIBEXIT” on page 638
Processing of ADEXIT
Use of the ADEXIT module requires:
v Compiler option ADATA to produce SYSADATA output
v DD statement SYSADATA
RELATED TASKS
“Using the EXIT compiler option with CICS and SQL statements” on page 644
RELATED REFERENCES
“Processing of LIBEXIT” on page 638
Message IGYSI5008 is written to the operator and the compiler terminates with
return code 16 when any of the following happens:
v An exit module cannot be loaded.
v A nonzero return code is received from INEXIT during an OPEN request.
v A nonzero return code is received from PRTEXIT during an OPEN request.
The exit type and operation (OPEN or LOAD) are identified in the message.
Any other error from INEXIT or PRTEXIT causes the compiler to terminate.
Using the EXIT compiler option with CICS and SQL statements
When you compile using suboptions of the EXIT compiler option and your
program contains CICS or SQL statements, the actions that you can take in the exit
modules depend on whether you translated the statements using the separate CICS
translator and DB2 precompiler, or translate them using the integrated CICS
translator and DB2 coprocessor. When you use the integrated translators, you can
process EXEC CICS and EXEC SQL statements in the exit modules.
INEXIT
When you translate the EXEC CICS and EXEC SQL statements in a program using the
separate CICS translator and DB2 precompiler, and then compile the program
using the INEXIT suboption, you can process the COBOL statements generated for
the EXEC statements in the INEXIT module. You can change the generated
statements in the INEXIT module, although doing so is not supported by IBM.
When you compile a program using the INEXIT suboption and translate the EXEC
CICS and EXEC SQL statements using the integrated CICS translator and DB2
coprocessor (enabled using the CICS and SQL compiler options, respectively), you
can process the EXEC CICS and EXEC SQL statements in the INEXIT module. The
INEXIT module does not get control for the COBOL statements generated for the
EXEC statements by the integrated translator and coprocessor.
LIBEXIT
When you compile a program using the LIBEXIT suboption and use the integrated
DB2 coprocessor, EXEC SQL INCLUDE statements in the program are processed like
COBOL COPY statements. You can process the statements brought in by the EXEC
SQL INCLUDE statements in the LIBEXIT module. (If you use the separate DB2
precompiler, you can process the input statements brought in by the EXEC SQL
INCLUDE statements only by using the INEXIT suboption.)
When you compile a program using the LIBEXIT suboption and translate the EXEC
CICS statements using the integrated CICS translator, you can process the EXEC
CICS source statements in the LIBEXIT module.
PRTEXIT
When you translate the EXEC CICS and EXEC SQL statements in a program using the
separate CICS translator and DB2 precompiler, and compile the program using the
PRTEXIT suboption, you can process the COBOL SOURCE listing statements
generated for the EXEC statements in the PRTEXIT module.
When you compile a program using the PRTEXIT suboption and translate the EXEC
CICS and EXEC SQL statements using the integrated CICS translator and DB2
coprocessor, you can process the EXEC CICS and EXEC SQL source statements from
the SOURCE listing in the PRTEXIT module. The PRTEXIT module does not have
access to the COBOL source statements generated by the integrated translator and
coprocessor.
ADEXIT
When you translate the EXEC CICS and EXEC SQL statements in a program using the
separate CICS translator and DB2 precompiler, and compile the program using the
ADEXIT suboption, you can process the COBOL SYSADATA source statements
generated for the EXEC statements in the ADEXIT module.
When you compile a program using the ADEXIT suboption and translate the EXEC
CICS and EXEC SQL statements using the integrated CICS translator and DB2
coprocessor, you can process the EXEC CICS and EXEC SQL source statements in the
ADEXIT module. The ADEXIT module does not have access to the COBOL source
statements generated by the integrated translator and coprocessor.
RELATED CONCEPTS
“DB2 coprocessor” on page 375
“Integrated CICS translator” on page 364
RELATED TASKS
“Compiling with the SQL option” on page 373
“Compiling with the CICS option” on page 362
RELATED REFERENCES
“Processing of INEXIT” on page 637
“Processing of LIBEXIT” on page 638
“Processing of PRTEXIT” on page 641
“Processing of ADEXIT” on page 642
Identification Division.
Program-ID. Skelinx.
Environment Division.
Data Division.
WORKING-STORAGE Section.
* *******************************************************
* * *
* * Local variables. *
* * *
* *******************************************************
* *******************************************************
* * *
* * Definition of the User-Exit Parameter List, which *
* * is passed from the COBOL compiler to the user exit *
* * module. *
* * *
* *******************************************************
Linkage Section.
01 Exit-Type Pic 9(4) Binary.
01 Exit-Operation Pic 9(4) Binary.
01 Exit-ReturnCode Pic 9(9) Binary.
01 Exit-WorkArea.
05 INEXIT-Slot Pic 9(9) Binary.
05 LIBEXIT-Slot Pic 9(9) Binary.
05 PRTEXIT-Slot Pic 9(9) Binary.
05 Reserved-Slot Pic 9(9) Binary.
01 Exit-DataLength Pic 9(9) Binary.
01 Exit-DataArea Pointer.
01 Exit-Open-Parm Redefines Exit-DataArea.
05 String-Len Pic 9(4) Binary.
05 Open-String Pic X(64).
01 Exit-Print-Line Redefines Exit-DataArea Pic X(133).
01 Exit-LIBEXIT Pic X(8).
01 Exit-Systext Pic X(8).
01 Exit-CBLLibrary Pic X(30).
01 Exit-CBLText Pic X(30).
***********************************************************
* *
* Begin PROCEDURE DIVISION *
* *
* Invoke the section to handle the exit. *
* *
***********************************************************
Evaluate Exit-type
When (1) Perform Handle-INEXIT
When (2) Perform Handle-LIBEXIT
*************************************************
* I N E X I T E X I T P R O C E S S O R *
*************************************************
Handle-INEXIT.
Evaluate Exit-Operation
When (0) Perform INEXIT-Open
When (1) Perform INEXIT-Close
When (2) Perform INEXIT-Get
End-Evaluate
Move 16 To Exit-ReturnCode
Goback.
INEXIT-Open.
* ------------------------------------------------------
* Prepare for reading source
* ------------------------------------------------------
Goback.
INEXIT-Close.
* ------------------------------------------------------
* Release resources
* ------------------------------------------------------
Goback.
INEXIT-Get.
* ------------------------------------------------------
* Retrieve next source record
* ------------------------------------------------------
* ------------------------------------------------------
* Return the address of the record to the compiler.
* ------------------------------------------------------
Set Exit-DataArea to Address of Record-Variable
* ------------------------------------------------------
* Set length of record in User-Exit Parameter List
* ------------------------------------------------------
Move 80 To Exit-DataLength
Goback.
***************************************************
* L I B E X I T P R O C E S S O R *
***************************************************
Handle-LIBEXIT.
Display “**** This module for INEXIT only”
Move 16 To Exit-ReturnCode
Goback.
*******************************************************
* P R I N T E X I T P R O C E S S O R *
*******************************************************
Handle-PRTEXIT.
Display “**** This module for INEXIT only”
Move 16 To Exit-ReturnCode
Goback.
*******************************************************
JNI.cpy is in the HFS in the include subdirectory of the COBOL install directory
(typically /usr/lpp/cobol/include) and is analogous to the header file jni.h that C
programmers use to access the JNI.
*****************************************************************
* COBOL declarations for Java native method interoperation *
* *
* To use the Java Native Interface callable services from a *
* COBOL program: *
* 1) Use a COPY statement to include this file into the *
* the Linkage Section of the program, e.g. *
* Linkage Section. *
* Copy JNI *
* 2) Code the following statements at the beginning of the *
* Procedure Division: *
* Set address of JNIEnv to JNIEnvPtr *
* Set address of JNINativeInterface to JNIEnv *
*****************************************************************
*
* Sample JNI type definitions in COBOL
*
*01 jboolean1 pic X.
* 88 jboolean1-true value X’01’ through X’FF’.
* 88 jboolean1-false value X’00’.
*
*01 jbyte1 pic X.
*
*01 jchar1 pic N usage national.
*
*01 jshort1 pic s9(4) comp-5.
*01 jint1 pic s9(9) comp-5.
*01 jlong1 pic s9(18) comp-5.
*
*01 jfloat1 comp-1.
*01 jdouble1 comp-2.
*
*01 jobject1 object reference.
*01 jclass1 object reference.
*01 jstring1 object reference jstring.
*01 jarray1 object reference jarray.
*
*01 jbooleanArray1 object reference jbooleanArray.
*01 jbyteArray1 object reference jbyteArray.
*01 jcharArray1 object reference jcharArray.
*01 jshortArray1 object reference jshortArray.
*01 jintArray1 object reference jintArray.
*01 jlongArray1 object reference jlongArray.
*01 floatArray1 object reference floatArray.
*01 jdoubleArray1 object reference jdoubleArray.
*01 jobjectArray1 object reference jobjectArray.
* Used in ReleaseScalarArrayElements
01 releaseMode pic s9(9) comp-5.
88 JNI-COMMIT value 1.
88 JNI-ABORT value 2.
01 JNIenv pointer.
RELATED TASKS
“Compiling OO applications under UNIX” on page 257
“Accessing JNI services” on page 527
RELATED REFERENCES
“ADATA” on page 270
“Existing compiler options affecting the SYSADATA file”
“SYSADATA record types” on page 656
“SYSADATA record descriptions” on page 658
The Type 0038 Source record contains two fields that relate to line numbers
and record numbers:
v AS_STMT contains the compiler line number, in both the NUM and NONUM
cases.
v AS_CUR_REC# contains the physical source record number.
These two fields can always be used to correlate the compiler line
numbers, used in all the above fields, with physical source record
numbers.
TEST The TEST option will cause additional object text records to be created that
will also affect the contents of the SYSADATA file.
The remaining compiler options have no direct effect on the SYSADATA file, but
might trigger generation of additional error messages associated with the specific
option, such as FLAGSAA, FLAGSTD, or SSRANGE.
RELATED REFERENCES
“SYSADATA record types”
“COMPILE” on page 275
“LANGUAGE” on page 287
“NUMBER” on page 292
“TEST” on page 306
The header section contains, among other items, the record code that identifies the
type of record.
The types of record provided in the associated data file are listed in the following
table:
Table 102. SYSADATA record types
Record type What it does
“Job identification record - X’0000’” on Provides information about the environment
page 660 used to process the source data
“ADATA identification record - X’0001’” Provides common information about the
on page 661 records in the SYSADATA file
“Compilation unit start/end record - Marks the beginning and ending of
X’0002’” on page 662 compilation units in a source file
“Example: SYSADATA”
Example: SYSADATA
The following sample shows part of the listing of a COBOL program. If this
COBOL program were compiled with the ADATA option, the records produced in
the associated data file would be in the sequence as shown below. Other programs
might produce records not shown below, which would affect the order of the
records.
RELATED REFERENCES
“SYSADATA record descriptions”
No boundary alignments are implied by any data type, and the implied lengths
above might be changed by the presence of a length indicator (Ln). All integer data
is in big-endian or little-endian format depending on the indicator bit in the header
flag byte. Big-endian format means that bit 0 is always the most significant bit and
bit n is the least significant bit. Little-endian refers to “byte-reversed” integers as
seen on Intel-based hardware.
RELATED REFERENCES
“Common header section”
“Job identification record - X’0000’” on page 660
“ADATA identification record - X’0001’” on page 661
“Compilation unit start/end record - X’0002’” on page 662
“Options record - X’0010’” on page 662
“External symbol record - X’0020’” on page 672
“Parse tree record - X’0024’” on page 673
“Token record - X’0030’” on page 687
“Source error record - X’0032’” on page 687
“Source record - X’0038’” on page 688
“COPY REPLACING record - X’0039’” on page 688
“Symbol record - X’0042’” on page 689
“Symbol cross-reference record - X’0044’” on page 700
“Nested program record - X’0046’” on page 701
“Library record - X’0060’” on page 702
“Statistics record - X’0090’” on page 703
“EVENTS record - X’0120’” on page 703
1. When a batch compilation (sequence of programs) is run with the ADATA option, there
will be multiple Job Identification, Options, and Statistics records for each compile.
The mapping of the 12-byte header does not include the area used for the
variable-length record-descriptor word required by the access method on MVS and
VSE.
1. Where the number of input files would exceed the record size for the associated data
file, the record will be continued on the next record. The current number of input files
(for that record) will be stored in the record and the record written to the associated
data file. The next record will contain the rest of the input files. The count of the
number of input files is a count for the current record.
301 Section
302 Procedure section
401 Paragraph
402 Procedure paragraph
501 Sentence
502 File definition
503 Sort file definition
504 Program name
505 Program attribute
508 ENVIRONMENT DIVISION clause
509 CLASS attribute
510 METHOD attribute
511 USE statement
601 Statement
602 Data description clause
603 Data entry
604 File description clause
605 Data entry name
606 Data entry level
607 EXEC entry
801 Phrase
802 ON phrase
803 NOT phrase
804 THEN phrase
805 ELSE phrase
806 Condition
807 Expression
808 Relative indexing
809 EXEC CICS Option
810 Reserved word
811 INITIALIZE REPLACING category
1001 Subscript
1002 Reference modification
Node subtype HL2 The subtype of the node.
0023 INVOKE
0024 MERGE
0025 MOVE
0026 MULTIPLY
0027 OPEN
0028 PERFORM
0029 READ
0030 READY
0031 RELEASE
0032 RESET
0033 RETURN
0034 REWRITE
0035 SEARCH
0036 SERVICE
0037 SET
0038 SORT
0039 START
0040 STOP
0041 STRING
0042 SUBTRACT
0043 UNSTRING
0044 EXEC SQL
0144 EXEC CICS
0045 WRITE
0046 XML
0031 END-OF-PAGE
0032 USING
0033 BEFORE
0034 AFTER
0035 EXCEPTION
0036 CORRESPONDING
0037 Reserved for future use
0038 RETURNING
0039 GIVING
0040 THROUGH
0041 KEY
0042 DELIMITER
0043 POINTER
0044 COUNT
0045 METHOD
0046 PROGRAM
0047 INPUT
0048 OUTPUT
0049 I-O
0050 EXTEND
0051 RELOAD
0052 ASCENDING
0053 DESCENDING
0054 DUPLICATES
0055 NATIVE (USAGE)
0056 INDEXED
0057 FROM
0058 FOOTING
0059 LINES AT BOTTOM
0060 LINES AT TOP
0033 UPPER-CASE
0034 CURRENT-DATE
0035 INTEGER-PART
0036 PRESENT-VALUE
0037 WHEN-COMPILED
0038 DAY-OF-INTEGER
0039 INTEGER-OF-DAY
0040 DATE-OF-INTEGER
0041 INTEGER-OF-DATE
0042 STANDARD-DEVIATION
0043 YEAR-TO-YYYY
0044 DAY-TO-YYYYDDD
0045 DATE-TO-YYYYMMDD
0046 UNDATE
0047 DATEVAL
0048 YEARWINDOW
0049 DISPLAY-OF
0050 NATIONAL-OF
For Special Register type:
0001 ADDRESS OF
0002 LENGTH OF
| For Keyword Class Test Name type:
0001 ALPHABETIC
0002 ALPHABETIC-LOWER
0003 ALPHABETIC-UPPER
0004 DBCS
0005 KANJI
0006 NUMERIC
0007 NEGATIVE
0008 POSITIVE
0009 ZERO
For Reserved Word type:
0001 TRUE
0002 FALSE
0003 ANY
0004 THRU
The following table shows the contents of the COPY REPLACING record:
Table 113. SYSADATA COPY REPLACING record
Field Size Description
Starting line number FL4 The listing line number of the start of the text that
of REPLACED string resulted from the REPLACING
Starting column FL4 The listing column number of the start of the text that
number of REPLACED resulted from the REPLACING
string
Ending line number FL4 The listing line number of the end of the text that
of REPLACED string resulted from the REPLACING
Ending column FL4 The listing column number of the end of the text that
number of REPLACED resulted from the REPLACING
string
External CLASS name Number of characters in the external CLASS name for
length for CLASS-ID CLASS-ID
ODO Symbol name FL4 If data-name, ID of the ODO symbol name—zero if ODO
ID for data-name not specified.
1. The reference flag field and the statement number field occur as many times as the
number of references field dictates.
For example, if there is a value of 10 in the number of references field, there will be 10
occurrences of the reference flag and statement number pair in the case of data-name,
procedure, or program symbols, or 10 occurrences of the statement number in the case
of verbs.
Where the number of references would exceed the record size for the SYSADATA file,
the record is continued on the next record. The continuation flag is set in the common
header section of the record.
1. If 10 COPY members are retrieved from a library, the ’Number of members’ field will
contain 10 and there will be 10 occurrences of the ’COPY/BASIS member file ID’ field, the
’COPY/BASIS name length’ field, and the ’COPY/BASIS name’ field.
2. If COPY/BASIS members are retrieved from different libraries, a library record is written
to the SYSADATA file for each unique library.
Pseudocode and other comments regarding these programs are included in the
program prologue, which you can obtain in a program listing.
The sample programs in this material demonstrate many language elements and
concepts of COBOL:
v IGYTCARA is an example of using QSAM files and VSAM indexed files and
shows how to use many COBOL intrinsic functions.
v IGYTCARB is an example of using IBM Interactive System Product Facility
(ISPF).
v IGYTSALE is an example of using several of the Language Environment callable
services features.
RELATED CONCEPTS
“IGYTCARA: batch application”
“IGYTCARB: interactive program” on page 709
“IGYTSALE: nested program application” on page 711
Using QSAM files and VSAM indexed files, this program validates transaction file
entries (sequential file processing) and updates a master file (indexed file
processing).
The following diagram shows the parts of the application and how they are
organized:
RELATED REFERENCES
“Input data for IGYTCARA”
“Report produced by IGYTCARA” on page 707
“Language elements and concepts that are illustrated” on page 720
1. Transaction code
2. Shift
Data set and procedure names can be changed at installation time. You should
check with your system programmer to verify these names.
Do not change these options on the CBL statement in the source file for
IGYTCARA:
NOADV
NODYNAM
NONAME
NONUMBER
QUOTE
SEQUENCE
With these options in effect, the program will not cause any diagnostic messages to
be issued. You can use the sequence number string in the source file to search for
the language elements used.
RELATED CONCEPTS
“IGYTCARA: batch application” on page 705
RELATED TASKS
“Running IGYTCARA”
RELATED REFERENCES
“Input data for IGYTCARA” on page 706
“Report produced by IGYTCARA” on page 707
“Language elements and concepts that are illustrated” on page 720
Running IGYTCARA
The procedure provided here does a combined compile, link-edit, and run of the
IGYTCARA program. If you want only to compile or only to compile and link-edit
the program, you need to change the IGYWCLG cataloged procedure.
To run IGYTCARA under z/OS, use JCL to define a VSAM cluster and compile the
program. Insert the information specific to your system and installation in the
fields that are shown in lowercase letters (accounting information, volume serial
number, unit name, cluster prefix). These examples use the name
IGYTCAR.MASTFILE; you can use another name if you want to.
1. Use this JCL to create the required VSAM cluster:
//CREATE JOB (acct-info),’IGYTCAR CREATE VSAM’,MSGLEVEL=(1,1),
// TIME=(0,29)
//CREATE EXEC PGM=IDCAMS
//VOL1 DD VOL=SER=your-volume-serial,UNIT=your-unit,DISP=SHR
//SYSPRINT DD SYSOUT=A
//SYSIN DD *
DELETE your-prefix.IGYTCAR.MASTFILE -
FILE(VOL1) -
PURGE
DEFINE CLUSTER -
(NAME(your-prefix.IGYTCAR.MASTFILE) -
VOLUME(your-volume-serial) -
FILE(VOL1) -
INDEXED -
RELATED TASKS
Chapter 10, “Processing VSAM files,” on page 147
RELATED REFERENCES
“Compile, link-edit, and run procedure (IGYWCLG)” on page 221
The input data for IGYTCARB is the same as that for IGYTCARA. IGYTCARB lets
you append to the information in your input file by using an ISPF panel. An
example of the panel used by IGYTCARB is shown below:
--------------------------- CARPOOL DATA ENTRY -------------------------------
New Data Entry Previous Entry
Type =======> - A, R, or D A
Shift ======> - 1, 2, or 3 1
Home Code ==> -- 2 Chars 01
Work Code ==> -- 2 Chars 11
Name =======> --------- 9 Chars POPOWICH
Initials ===> -- 2 Chars AD
Address ====> ------------------ 18 Chars 134 SIXTH AVENUE
City =======> ------------- 13 Chars SAN FRANCISCO
State ======> -- 2 Chars CA
Zip Code ===> ----- 5 Chars 99903
Home Phone => ---------- 10 Chars 4155553390
Work Phone => ---------- 10 Chars 4155557855
Home Jnc code > -- 2 Chars H3
Work Jnc Code > -- 2 Chars W7
Commuter Stat > - D, R or blank
RELATED TASKS
“Preparing to run IGYTCARB”
Data set and procedure names can be changed at installation time. Check with
your system programmer to verify these names.
Do not change these options on the CBL card in the source file for IGYTCARB:
NONUMBER
QUOTE
SEQUENCE
With these options in effect, the program will not cause any diagnostic messages to
be issued. You can use the sequence number string in the source file to search for
language elements.
RELATED CONCEPTS
“IGYTCARB: interactive program” on page 709
RELATED TASKS
“Running IGYTCARB”
RELATED REFERENCES
“Language elements and concepts that are illustrated” on page 720
Running IGYTCARB
The following procedure does a combined compile, link-edit, and run of the
IGYTCARB program. If you want only to compile or only to compile and link-edit
the program, you need to change the procedure.
RELATED REFERENCES
ISPF Dialog Developer’s Guide and Reference
RELATED TASKS
“Preparing to run IGYTSALE” on page 719
1. Record type
2. Customer code
3. Customer name
4. Product code
5. Product description
6. Product unit price
7. Salesperson number
8. Salesperson name
9. Date of hire
10. Commission rate
The value of field 1 (C, P, or S) determines the format of the input record. The
following sample shows a section of IGYTABLE:
S1111Edyth Phillips 062484042327
S1122Chuck Morgan 052780084425
S1133Art Tung 022882061728
S1144Billy Jim Bob 010272121150
S1155Chris Preston 122083053377
S1166Al Willie Roz 111276100000
P01Footballs 0000620
P02Football Equipment 0032080
P03Football Uniform 0004910
P04Basketballs 0002220
P05Basketball Rim/Board0008830
P06Basketball Uniform 0004220
C01L. A. Sports
C02Gear Up
C03Play Outdoors
C04Sports 4 You
C05Sports R US
Fields 8 and 9 occur one to eight times depending on the number of different items
ordered (field 2). The following sample shows a section of IGYTRANA:
A00001119900227010101CNTRL VALLEY11442019900228259999
A00004119900310100530CNTRL VALLEY11441019900403150099
A00005119900418222409CNTRL VALLEY11441219900419059900
A00006119900523151010CNTRL VALLEY11442019900623250004
419990324591515SAN DIEGO 11615 60200132200110522045100
B11114419901111003301SAN DIEGO 11661519901114260200132200110522041100
A00007119901115003205CNTRL VALLEY11332019901117120023
C00125419900118101527SF BAY AREA 11331519900120160200112200250522145111
B11116419901201132013SF BAY AREA 11331519901203060200102200110522045102
B11117319901201070833SAN Diego 1165661990120333020o132200120522041100
B11118419901221191544SAN DIEGO 11661419901223160200142200130522040300
B11119419901210211544SAN DIEGO 11221219901214060200152200160522050500
B11120419901212000816SAN DIEGO 11220419901213150200052200160522040100
B11121419901201131544SAN DIEGO 11330219901203120200112200140522250100
B11122419901112073312SAN DIEGO 11221019901113100200162200260522250100
B11123919901110123314SAN DIEGO 11660919901114260200270500110522250100140010
B11124219901313510000SAN DIEGO 116611 1 0200042200120a22141100
B11125419901215012510SAN DIEGO 11661519901216110200162200130522141111
B11126119901111000034SAN DIEGO 11331619901113260022
B11127119901110154100SAN DIEGO 11221219901113122000
B11128419901110175001SAN DIEGO 11661519901113260200132200160521041104
. . .
Data set and procedure names can be changed at installation time. Check with
your system programmer to verify these names.
Do not change these options on the CBL card in the source file for IGYTSALE:
LIB
NONUMBER
SEQUENCE
NONUMBER
QUOTE
With these options in effect, the program might not cause any diagnostic messages
to be issued. You can use the sequence number string in the source file to search
for the language elements used.
RELATED CONCEPTS
“IGYTSALE: nested program application” on page 711
RELATED TASKS
“Running IGYTSALE”
RELATED REFERENCES
“Input data for IGYTSALE” on page 713
“Reports produced by IGYTSALE” on page 715
“Language elements and concepts that are illustrated”
Running IGYTSALE
The following procedure does a combined compile, link-edit, and run of the
IGYTSALE program. If you want only to compile or only to compile and link-edit
the program, you need to change the IGYWCLG cataloged procedure.
Use the following JCL to compile, link-edit, and run the IGYTSALE program.
Insert the information for your system or installation in the fields that are shown
in lowercase letters (accounting information).
//IGYTSALE JOB (acct-info),’IGYTSALE’,MSGLEVEL=(1,1),TIME=(0,29)
//TEST EXEC IGYWCLG
//COBOL.SYSLIB DD DSN=IGY.V3R3M0.SIGYSAMP,DISP=SHR
//COBOL.SYSIN DD DSN=IGY.V3R3M0.SIGYSAMP(IGYTSALE),DISP=SHR
//GO.SYSOUT DD SYSOUT=A
//GO.IGYTABLE DD DSN=IGY.V3R3M0.SIGYSAMP(IGYTABLE),DISP=SHR
//GO.IGYTRANS DD DSN=IGY.V3R3M0.SIGYSAMP(IGYTRANA),DISP=SHR
//GO.IGYPRINT DD SYSOUT=A,DCB=BLKSIZE=133
//GO.IGYPRT2 DD SYSOUT=A,DCB=BLKSIZE=133
//
The following table lists the language elements and programming concepts that the
sample programs illustrate. The language element or concept is described, and the
sequence string is shown. The sequence string is the special character string that
appears in the sequence field of the source file. You can use this string as a search
argument for locating the elements in the listing.
IBM may have patents or pending patent applications covering subject matter
described in this document. The furnishing of this document does not give you
any license to these patents. You can send license inquiries, in writing, to:
IBM Corporation
J46A/G4
555 Bailey Avenue
San Jose, CA 95141-1003
U.S.A.
For license inquiries regarding double-byte (DBCS) information, contact the IBM
Intellectual Property Department in your country or send inquiries, in writing, to:
IBM World Trade Asia Corporation
Licensing
2-31 Roppongi 3-chome, Minato-ku
Tokyo 106, Japan
The following paragraph does not apply to the United Kingdom or any other
country where such provisions are inconsistent with local law:
INTERNATIONAL BUSINESS MACHINES CORPORATION PROVIDES THIS
PUBLICATION “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS
FOR A PARTICULAR PURPOSE. Some states do not allow disclaimer of express or
implied warranties in certain transactions, therefore, this statement may not apply
to you.
Any references in this publication to non-IBM Web sites are provided for
convenience only and do not in any manner serve as an endorsement of those Web
sites. The materials at those Web sites are not part of the materials for this IBM
product and use of those Web sites is at your own risk.
If you are viewing this information in softcopy, the photographs and color
illustrations may not appear.
AIX
BookManager
CICS
CICS/ESA
COBOL/370
DB2
DFSMS
DFSORT
IBM
IMS
IMS/ESA
Language Environment
MVS
OS/390
RACF
System/390
WebSphere
zSeries
z/OS
Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the
United States, other countries, or both.
UNIX is a registered trademark of The Open Group in the United States and other
countries.
Other company, product or service names may be the trademarks or service marks
of others.
century window. A 100-year interval within which * class condition. The proposition (for which a truth
any two-digit year is unique. Several types of century value can be determined) that the content of an item is
window are available to COBOL programmers: wholly alphabetic, is wholly numeric, is wholly DBCS,
v For windowed date fields, you use the YEARWINDOW is wholly Kanji, or consists exclusively of the characters
compiler option. that are listed in the definition of a class-name.
v For the windowing intrinsic functions * class definition. The COBOL source unit that
DATE-TO-YYYYMMDD, DAY-TO-YYYYDDD, and defines a class.
YEAR-TO-YYYY, you specify the century window with
argument-2. class hierarchy. A tree-like structure that shows
v For Language Environment callable services, you relationships among object classes. It places one class at
specify the century window in CEESCEN. the top and one or more layers of classes below it.
Synonymous with inheritance hierarchy.
* character. The basic indivisible unit of the language.
* class identification entry. An entry in the CLASS-ID
character encoding unit. A unit of data that paragraph of the IDENTIFICATION DIVISION; this entry
corresponds to one code point in a coded character set. contains clauses that specify the class-name and assign
One or more character encoding units are used to selected attributes to the class definition.
represent a character in a coded character set. Also
known as encoding unit. class-name (object-oriented). The name of an
object-oriented COBOL class definition.
For USAGE NATIONAL, a character encoding unit
corresponds to one 2-byte code point of UTF-16.
Glossary 729
* class-name (of data). A user-defined word that is coded character set. A set of unambiguous rules that
defined in the SPECIAL-NAMES paragraph of the establish a character set and the relationship between
ENVIRONMENT DIVISION; this word assigns a name to the the characters of the set and their coded representation.
proposition (for which a truth value can be defined) Examples of coded character sets are the character sets
that the content of a data item consists exclusively of as represented by ASCII or EBCDIC code pages or by
the characters that are listed in the definition of the the UTF-16 encoding scheme for Unicode.
class-name.
coded character set identifier (CCSID). A number in
class object. The run-time object that represents a the range 1 to 65,535 that includes a specific set of
class. identifiers for the encoding scheme, character set, and
code page, and other information that uniquely
* clause. An ordered set of consecutive COBOL identifies the coded graphic character representation.
character strings whose purpose is to specify an
attribute of an entry. * collating sequence. The sequence in which the
characters that are acceptable to a computer are
client. In object-oriented programming, a program or ordered for purposes of sorting, merging, comparing,
method that requests services from one or more and for processing indexed files sequentially.
methods in a class.
* column. A byte position within a print line or within
* COBOL character set. The set of characters used in a reference format line. The columns are numbered
writing COBOL syntax. The complete COBOL character from 1, by 1, starting at the leftmost position of the line
set consists of the characters listed below: and extending to the rightmost position of the line. A
column holds one single-byte character.
Character Meaning
0,1, . . . ,9 Digit * combined condition. A condition that is the result of
A,B, . . . ,Z Uppercase letter connecting two or more conditions with the AND or the
a,b, . . . ,z Lowercase letter OR logical operator. See also condition and negated
Space combined condition.
+ Plus sign
* comment-entry. An entry in the IDENTIFICATION
- Minus sign (hyphen)
DIVISION that can be any combination of characters
* Asterisk from the character set of the computer.
/ Slant (virgule, slash)
= Equal sign * comment line. A source program line represented by
$ Currency sign an asterisk (*) in the indicator area of the line and any
, Comma (decimal point) characters from the character set of the computer in
; Semicolon area A and area B of that line. The comment line serves
. Period (decimal point, full stop) only for documentation. A special form of comment
line represented by a slant (/) in the indicator area of
” Quotation mark
the line and any characters from the character set of the
( Left parenthesis
computer in area A and area B of that line causes page
) Right parenthesis ejection before printing the comment.
> Greater than symbol
< Less than symbol * common program. A program that, despite being
: Colon directly contained within another program, can be
called from any program directly or indirectly
contained in that other program.
* COBOL word. See word.
compatible date field. The meaning of the term
code page. An assignment of graphic characters and compatible, when applied to date fields, depends on the
control function meanings to all code points. For COBOL division in which the usage occurs:
example, one code page could assign characters and v DATA DIVISION
meanings to 256 code points for 8-bit code, and another Two date fields are compatible if they have identical
code page could assign characters and meanings to 128 USAGE and meet at least one of the following
code points for 7-bit code. For example, one of the IBM conditions:
code pages for English on the workstation is IBM-850
and on the host is IBM-1047. A coded character set. – They have the same date format.
– Both are windowed date fields, where one consists
code point. A unique bit pattern that is defined in a only of a windowed year, DATE FORMAT YY.
coded character set (code page). Code points are – Both are expanded date fields, where one consists
assigned to graphic characters in a coded character set. only of an expanded year, DATE FORMAT YYYY.
Glossary 731
and that the subsequent action of the object program not specified and the NOCURRENCY compiler option is in
depends on this truth value. effect, the dollar sign ($) is used as the default currency
sign value and currency symbol. Multiple currency
* conditional variable. A data item one or more symbols and currency sign values can be defined. See
values of which has a condition-name assigned to it. also currency sign value.
* condition-name. A user-defined word that assigns a * current record. In file processing, the record that is
name to a subset of values that a conditional variable available in the record area associated with a file.
can assume; or a user-defined word assigned to a status
of an implementor-defined switch or device. * current volume pointer. A conceptual entity that
points to the current volume of a sequential file.
* condition-name condition. The proposition (for
which a truth value can be determined) that the value
of a conditional variable is a member of the set of D
values attributed to a condition-name associated with
the conditional variable. * data clause. A clause, appearing in a data
description entry in the DATA DIVISION of a COBOL
* CONFIGURATION SECTION. A section of the ENVIRONMENT program, that provides information describing a
DIVISION that describes overall specifications of source particular attribute of a data item.
and object programs and class definitions.
* data description entry. An entry in the DATA
CONSOLE. A COBOL environment-name associated DIVISION of a COBOL program that is composed of a
with the operator console. level-number followed by a data-name, if required, and
then followed by a set of data clauses, as required.
* contiguous items. Items that are described by
consecutive entries in the DATA DIVISION, and that bear DATA DIVISION. The division of a COBOL program or
a definite hierarchic relationship to each other. method that describes the data to be processed by the
program or method: the files to be used and the
copybook. A file or library member that contains a records contained within them; internal
sequence of code that is included in the source working-storage records that will be needed; data to be
program at compile time using the COPY statement. The made available in more than one program in the
file can be created by the user, supplied by COBOL, or COBOL run unit.
supplied by another product. Synonymous with copy
file. * data item. A unit of data (excluding literals) defined
by a COBOL program or by the rules for function
* counter. A data item used for storing numbers or evaluation.
number representations in a manner that permits these
numbers to be increased or decreased by the value of * data-name. A user-defined word that names a data
another number, or to be changed or reset to zero or to item described in a data description entry. When used
an arbitrary positive or negative value. in the general formats, data-name represents a word
that must not be reference-modified, subscripted, or
cross-reference listing. The portion of the compiler qualified unless specifically permitted by the rules for
listing that contains information on where files, fields, the format.
and indicators are defined, referenced, and modified in
a program. date field. Any of the following:
v A data item whose data description entry includes a
currency-sign value. A character string that identifies DATE FORMAT clause.
the monetary units stored in a numeric-edited item.
Typical examples are $, USD, and EUR. A currency-sign v A value returned by one of the following intrinsic
value can be defined by either the CURRENCY compiler functions:
option or the CURRENCY SIGN clause in the
SPECIAL-NAMES paragraph of the ENVIRONMENT DIVISION. DATE-OF-INTEGER
If the CURRENCY SIGN clause is not specified and the DATE-TO-YYYYMMDD
NOCURRENCY compiler option is in effect, the dollar sign DATEVAL
($) is used as the default currency-sign value. See also DAY-OF-INTEGER
currency symbol. DAY-TO-YYYYDDD
YEAR-TO-YYYY
currency symbol. A character used in a PICTURE clause YEARWINDOW
to indicate the position of a currency sign value in a v The conceptual data items DATE, DATE
numeric-edited item. A currency symbol can be defined YYYYMMDD, DAY, and DAY YYYYDDD of the
by either the CURRENCY compiler option or the CURRENCY ACCEPT statement.
SIGN clause in the SPECIAL-NAMES paragraph of the
ENVIRONMENT DIVISION. If the CURRENCY SIGN clause is
Glossary 733
document type definition (DTD). The grammar for a Character Meaning
class of XML documents. See XML type definition. + Plus
double-byte character set (DBCS). A set of characters - Minus
in which each character is represented by 2 bytes. CR Credit
Languages such as Japanese, Chinese, and Korean, DB Debit
which contain more symbols than can be represented Z Zero suppress
by 256 code points, require double-byte character sets. * Check protect
Because each character requires 2 bytes, entering, $ Currency sign
displaying, and printing DBCS characters requires , Comma (decimal point)
hardware and supporting software that are . Period (decimal point)
DBCS-capable. / Slant (virgule, slash)
* dynamic access. An access mode in which specific
logical records can be obtained from or placed into a EJB. See Enterprise JavaBeans.
mass storage file in a nonsequential manner and
obtained from a file in a sequential manner during the EJB container. A container that implements the EJB
scope of the same OPEN statement. component contract of the J2EE architecture. This
contract specifies a run-time environment for enterprise
dynamic CALL. A CALL literal statement in a program beans that includes security, concurrency, life cycle
that has been compiled with the DYNAM and NODLL management, transaction, deployment, and other
options, or a CALL identifier statement in a program that services. An EJB container is provided by an EJB or
has been compiled with the NODLL option. J2EE server. (Sun)
dynamic link library (DLL). A file that contains EJB server. Software that provides services to an EJB
executable code and data that are bound to a program container. An EJB server can host one or more EJB
at load time or run time, rather than during linking. containers. (Sun)
Several applications can share the code and data in a
DLL simultaneously. Although a DLL is not part of the element (text element). One logical unit of a string of
executable (.EXE) file for a program, it can be required text, such as the description of a single data item or
for an .EXE file to run properly. verb, preceded by a unique code identifying the
element type.
dynamic storage area (DSA). Dynamically acquired
storage composed of a register save area and an area * elementary item. A data item that is described as
available for dynamic storage allocation (such as not being further logically subdivided.
program variables). A DSA is allocated upon invocation
of a program or function and persists for the duration encapsulation. In object-oriented programming, the
of the invocation instance. DSAs are generally allocated technique that is used to hide the inherent details of an
within stack segments managed by Language object. The object provides an interface that queries and
Environment. manipulates the data without exposing its underlying
structure. Synonymous with information hiding.
E enclave. When running under Language Environment,
an enclave is analogous to a run unit. An enclave can
* EBCDIC (Extended Binary-Coded Decimal create other enclaves by a LINK and the use of the
Interchange Code). A coded character set based on system() function of C.
8-bit coded characters.
encoding unit. See character encoding unit.
EBCDIC character. Any one of the symbols included
in the EBCDIC (Extended Binary-Coded-Decimal end class marker. A combination of words, followed
Interchange Code) set. by a separator period, that indicates the end of a
COBOL class definition. The end class marker is:
edited data item. A data item that has been modified
END CLASS class-name.
by suppressing zeros or inserting editing characters or
both. end method marker. A combination of words,
followed by a separator period, that indicates the end
* editing character. A single character or a fixed
of a COBOL method definition. The end method
two-character combination belonging to the following
marker is:
set:
END METHOD method-name.
Character Meaning
Space
0 Zero
* end program marker. A combination of words, * explicit scope terminator. A reserved word that
followed by a separator period, that indicates the end terminates the scope of a particular PROCEDURE DIVISION
of a COBOL source program. The end program marker statement.
is:
exponent. A number that indicates the power to
END PROGRAM program-name.
which another number (the base) is to be raised.
enterprise bean. A component that implements a Positive exponents denote multiplication; negative
business task and resides in an EJB container. (Sun) exponents denote division; and fractional exponents
denote a root of a quantity. In COBOL, an exponential
Enterprise JavaBeans. A component architecture expression is indicated with the symbol ** followed by
defined by Sun Microsystems, Inc. for the development the exponent.
and deployment of object-oriented, distributed,
enterprise-level applications. * expression. An arithmetic or conditional expression.
* entry. Any descriptive set of consecutive clauses * extend mode. The state of a file after execution of an
terminated by a separator period and written in the OPEN statement, with the EXTEND phrase specified for
IDENTIFICATION DIVISION, ENVIRONMENT DIVISION, or that file, and before the execution of a CLOSE statement,
DATA DIVISION of a COBOL program. without the REEL or UNIT phrase for that file.
* environment clause. A clause that appears as part of Extensible Markup Language. See XML.
an ENVIRONMENT DIVISION entry.
extensions. COBOL syntax and semantics supported
ENVIRONMENT DIVISION. One of the four main by IBM compilers in addition to those described in
component parts of a COBOL program, class definition, Standard COBOL 85.
or method definition. The ENVIRONMENT DIVISION
external code page. For XML documents, the value
describes the computers where the source program is
specified by the CODEPAGE compiler option.
compiled and those where the object program is run. It
provides a linkage between the logical concept of files * external data. The data that is described in a
and their records, and the physical aspects of the program as external data items and external file
devices on which files are stored. connectors.
environment-name. A name, specified by IBM, that * external data item. A data item that is described as
identifies system logical units, printer and card punch part of an external record in one or more programs of a
control characters, report codes, program switches or run unit and that can be referenced from any program
all of these. When an environment-name is associated in which it is described.
with a mnemonic-name in the ENVIRONMENT DIVISION,
the mnemonic-name can be substituted in any format * external data record. A logical record that is
in which such substitution is valid. described in one or more programs of a run unit and
whose constituent data items can be referenced from
environment variable. Any of a number of variables any program in which they are described.
that define some aspect of the computing environment,
and are accessible to programs that operate in that external decimal item. A format for representing
environment. Environment variables can affect the numbers in which the digit is contained in bits 4
behavior of programs that are sensitive to the through 7 and the sign is contained in bits 0 through 3
environment in which they operate. of the rightmost byte. Bits 0 through 3 of all other bytes
contain 1 (hex F). For example, the decimal value of
EXE. See executable file (EXE). +123 is represented as 1111 0001 1111 0010 1111 0011.
Synonymous with zoned decimal item.
executable file (EXE). A file that contains programs or
commands that perform operations or actions to be * external file connector. A file connector that is
taken. accessible to one or more object programs in the run
unit.
execution time. See run time.
external floating-point item. A format for
execution-time environment. See run-time environment.
representing numbers in which a real number is
expanded date field. A date field containing an represented by a pair of distinct numerals. In a
expanded (four-digit) year. See also date field and floating-point representation, the real number is the
expanded year. product of the fixed-point part (the first numeral), and
Glossary 735
a value obtained by raising the implicit floating-point * file-name. A user-defined word that names a file
base to a power denoted by the exponent (the second connector described in a file description entry or a
numeral). For example, a floating-point representation sort-merge file description entry within the FILE
of the number 0.0001234 is: 0.1234 -3, where 0.1234 is SECTION of the DATA DIVISION.
the mantissa and -3 is the exponent.
* file organization. The permanent logical file
external program. The outermost program. A program structure established at the time that a file is created.
that is not nested.
*file position indicator. A conceptual entity that
* external switch. A hardware or software device, contains the value of the current key within the key of
defined and named by the implementor, which is used reference for an indexed file, or the record number of
to indicate that one of two alternate states exists. 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 an
F optional input file is not present, or that the AT END
condition already exists, or that no valid next record
factory data. Data that is allocated once for a class and
has been established.
shared by all instances of the class. Factory data is
declared in the WORKING-STORAGE SECTION of the DATA * FILE SECTION. The section of the DATA DIVISION that
DIVISION in the FACTORY paragraph of the class contains file description entries and sort-merge file
definition, and is equivalent to Java private static data. description entries together with their associated record
descriptions.
factory method. A method that is supported by a class
independently of an object instance. Factory methods file system. The collection of files that conform to a
are declared in the FACTORY paragraph of the class specific set of data-record and file-description protocols,
definition, and are equivalent to Java public static and a set of programs that manage these files.
methods. They are typically used to customize the
creation of objects. * fixed file attributes. Information about a file that is
established when a file is created and that cannot
* figurative constant. A compiler-generated value subsequently be changed during the existence of the
referenced through the use of certain reserved words. file. These attributes include the organization of the file
(sequential, relative, or indexed), the prime record key,
* file. A collection of logical records.
the alternate record keys, the code set, the minimum
* file attribute conflict condition. An unsuccessful and maximum record size, the record type (fixed or
attempt has been made to execute an input-output variable), the collating sequence of the keys for indexed
operation on a file and the file attributes, as specified files, the blocking factor, the padding character, and the
for that file in the program, do not match the fixed record delimiter.
attributes for that file.
* fixed-length record. A record associated with a file
* file clause. A clause that appears as part of any of whose file description or sort-merge description entry
the following DATA DIVISION entries: file description requires that all records contain the same number of
entry (FD entry) and sort-merge file description entry bytes.
(SD entry).
fixed-point item. A numeric data item defined with a
* file connector. A storage area that contains PICTURE clause that specifies the location of an optional
information about a file and is used as the linkage sign, the number of digits it contains, and the location
between a file-name and a physical file and between a of an optional decimal point. The format can be either
file-name and its associated record area. binary, packed decimal, or external decimal.
FILE-CONTROL paragraph. A paragraph in the floating-point item. A numeric data item that contains
ENVIRONMENT DIVISION in which the data files for a a fraction and an exponent. Its value is obtained by
given source unit are declared. multiplying the fraction by the base of the numeric
data item raised to the power that the exponent
* file control entry. A SELECT clause and all its specifies.
subordinate clauses that declare the relevant physical
attributes of a file. * format. A specific arrangement of a set of data.
* file description entry. An entry in the FILE SECTION * function. A temporary data item whose value is
of the DATA DIVISION that is composed of the level determined at the time the function is referenced
indicator FD, followed by a file-name, and then during the execution of a statement.
followed by a set of file clauses as required.
* function-identifier. A syntactically correct
combination of character strings and separators that
hierarchical file system. A collection of files and indexed data-name. An identifier that is composed of
directories that are organized in a hierarchical structure a data-name, followed by one or more index-names
and can be accessed by using UNIX System Services. enclosed in parentheses.
* high-order end. The leftmost character of a string of * indexed file. A file with indexed organization.
characters.
* indexed organization. The permanent logical file
hiperspace. In a z/OS environment, a range of up to 2 structure in which each record is identified by the
GB of contiguous virtual storage addresses that a value of one or more keys within that record.
program can use as a buffer.
indexing. Synonymous with subscripting using
index-names.
Glossary 737
* index-name. A user-defined word that names an does not include any digit positions to the right of the
index associated with a specific table. decimal point. (3) A numeric function whose definition
provides that all digits to the right of the decimal point
inheritance. A mechanism for using the are zero in the returned value for any possible
implementation of a class as the basis for another class. evaluation of the function.
By definition, the inheriting class conforms to the
inherited classes. Enterprise COBOL does not support integer function. A function whose category is
multiple inheritance; a subclass has exactly one numeric and whose definition does not include any
immediate superclass. digit positions to the right of the decimal point.
inheritance hierarchy. See class hierarchy. Interactive System Productivity Facility (ISPF). An
IBM software product that provides a menu-driven
* initial program. A program that is placed into an interface for the TSO or VM user. ISPF includes library
initial state every time the program is called in a run utilities, a powerful editor, and dialog management.
unit.
interlanguage communication (ILC). The ability of
* initial state. The state of a program when it is first routines written in different programming languages to
called in a run unit. communicate. ILC support allows the application
developer to readily build applications from component
inline. In a program, instructions that are executed routines written in a variety of languages.
sequentially, without branching to routines,
subroutines, or other programs. intermediate result. An intermediate field that
contains the results of a succession of arithmetic
* input file. A file that is opened in the input mode. operations.
* input mode. The state of a file after execution of an * internal data. The data that is described in a
OPEN statement, with the INPUT phrase specified, for program and excludes all external data items and
that file and before the execution of a CLOSE statement, external file connectors. Items described in the LINKAGE
without the REEL or UNIT phrase for that file. SECTION of a program are treated as internal data.
* input-output file. A file that is opened in the I-O * internal data item. A data item that is described in
mode. one program in a run unit. An internal data item can
have a global name.
* INPUT-OUTPUT SECTION. The section of the
ENVIRONMENT DIVISION that names the files and the internal decimal item. A format in which each byte in
external media required by an object program or a field except the rightmost byte represents two
method and that provides information required for numeric digits. The rightmost byte contains one digit
transmission and handling of data at run time. and the sign. For example, the decimal value +123 is
represented as 0001 0010 0011 1111. Synonymous with
* input-output statement. A statement that causes files
packed decimal item.
to be processed by performing operations on individual
records or on the file as a unit. The input-output * internal file connector. A file connector that is
statements are ACCEPT (with the identifier phrase), accessible to only one object program in the run unit.
CLOSE, DELETE, DISPLAY, OPEN, READ, REWRITE, SET (with
the TO ON or TO OFF phrase), START, and WRITE. International Components for Unicode (ICU). An
open source development project sponsored, supported,
* input procedure. A set of statements, to which and used by IBM. ICU libraries provide robust and
control is given during the execution of a SORT full-featured Unicode services on a wide variety of
statement, for the purpose of controlling the release of platforms, including
specified records to be sorted.
* intrarecord data structure. The entire collection of
instance data. Data that defines the state of an object. groups and elementary data items from a logical record
The instance data introduced by a class is defined in that a contiguous subset of the data description entries
the WORKING-STORAGE SECTION of the DATA DIVISION in defines. These data description entries include all
the OBJECT paragraph of the class definition. The state entries whose level-number is greater than the
of an object also includes the state of the instance level-number of the first data description entry
variables introduced by classes that are inherited by the describing the intra-record data structure.
current class. A separate copy of the instance data is
created for each object instance. intrinsic function. A predefined function, such as a
commonly used arithmetic function, called by a built-in
* integer. (1) A numeric literal that does not include function reference.
any digit positions to the right of the decimal point. (2)
A numeric data item defined in the DATA DIVISION that
* I-O status. A conceptual entity that contains the JBP. See Java batch-processing program (JBP).
two-character value indicating the resulting status of an
input-output operation. This value is made available to JDBC. See Java Database Connectivity (JDBC).
the program through the use of the FILE STATUS clause
JMP. See Java message-processing program (JMP).
in the file control entry for the file.
job control language (JCL). A control language used
is-a. A relationship that characterizes classes and
to identify a job to an operating system and to describe
subclasses in an inheritance hierarchy. Subclasses that
the job’s requirements.
have an is-a relationship to a class inherit from that
class. JVM. See Java virtual machine (JVM).
ISPF. See Interactive System Productivity Facility (ISPF).
K
iteration structure. A program processing logic in
which a series of statements is repeated while a K. When referring to storage capacity, two to the tenth
condition is true or until a condition is true. power; 1024 in decimal notation.
Glossary 739
last-used state. A state that a program is in if its literal. A character string whose value is specified
internal values remain the same as when the program either by the ordered set of characters comprising the
was exited (the values are not reset to their initial string or by the use of a figurative constant.
values).
little-endian. The default format that Intel hardware
* letter. A character belonging to one of the following uses to store binary data. In this format, the most
two sets: significant digit is at the highest address. Compare with
1. Uppercase letters: A, B, C, D, E, F, G, H, I, J, K, L, big-endian.
M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z
local reference. A reference to an object that is within
2. Lowercase letters: a, b, c, d, e, f, g, h, i, j, k, l, m, n, the scope of your method.
o, p, q, r, s, t, u, v, w, x, y, z
locale. A set of attributes for a program execution
* level indicator. Two alphabetic characters that environment that indicates culturally sensitive
identify a specific type of file or a position in a considerations, such as character code page, collating
hierarchy. The level indicators in the DATA DIVISION are: sequence, date and time format, monetary value
CD, FD, and SD. representation, numeric value representation, or
language.
* level-number. A user-defined word (expressed as a
two-digit number) that indicates the hierarchical * LOCAL-STORAGE SECTION. The section of the DATA
position of a data item or the special properties of a DIVISION that defines storage that is allocated and freed
data description entry. Level-numbers in the range from on a per-invocation basis, depending on the value
1 through 49 indicate the position of a data item in the assigned in the VALUE clauses.
hierarchical structure of a logical record. Level-numbers
in the range 1 through 9 can be written either as a * logical operator. One of the reserved words AND,
single digit or as a zero followed by a significant digit. OR, or NOT. In the formation of a condition, either
Level-numbers 66, 77, and 88 identify special properties AND, or OR, or both can be used as logical
of a data description entry. connectives. NOT can be used for logical negation.
* library-name. A user-defined word that names a * logical record. The most inclusive data item. The
COBOL library that the compiler is to use for level-number for a record is 01. A record can be either
compiling a given source program. an elementary item or a group of items. Synonymous
with record.
* library text. A sequence of text words, comment
lines, the separator space, or the separator pseudo-text * low-order end. The rightmost character of a string of
delimiter in a COBOL library. characters.
name. A word (composed of not more than 30 * numeric character. A character that belongs to the
characters) that defines a COBOL operand. following set of digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.
Glossary 741
numeric-edited item. A data item that contains on the data objects that comprise the problem and how
numeric data in a form suitable for use in printed they are manipulated, not on how something is
output. It can consist of external decimal digits from 0 accomplished.
through 9, the decimal separator, commas, the currency
sign, sign control characters, and other editing object program. A set or group of executable
characters. machine-language instructions and other material
designed to interact with data to provide problem
* numeric function. A function whose class and solutions. In this context, an object program is generally
category are numeric but that for some possible the machine language result of the operation of a
evaluation does not satisfy the requirements of integer COBOL compiler on a source program or class
functions. definition. Where there is no danger of ambiguity, the
word program can be used in place of object program.
* numeric item. A data item whose description
restricts its content to a value represented by characters object reference. A value that identifies an instance of
chosen from the digits 0 through 9. If signed, the item a class. If the class is not specified, the object reference
can also contain a +, -, or other representation of an is universal and can apply to instances of any class.
operational sign.
* object time. The time at which an object program is
* numeric literal. A literal composed of one or more executed. Synonymous with run time.
numeric characters that can contain a decimal point or
an algebraic sign, or both. The decimal point must not * obsolete element. A COBOL language element in
be the rightmost character. The algebraic sign, if Standard COBOL 85 that was deleted from Standard
present, must be the leftmost character. COBOL 2002.
object code. Output from a compiler or assembler that The value of the ODO object determines how many of
is itself executable machine code or is suitable for the ODO subject appear in the table.
processing to produce executable machine code.
ODO subject. In the example above, Y is the subject
* OBJECT-COMPUTER. The name of an ENVIRONMENT of the OCCURS DEPENDING ON clause (ODO subject). The
DIVISION paragraph in which the computer number of Y ODO subjects that appear in the table
environment, where the object program is run, is depends on the value of X.
described.
* open mode. The state of a file after execution of an
* object computer entry. An entry in the OPEN statement for that file and before the execution of
OBJECT-COMPUTER paragraph of the ENVIRONMENT a CLOSE statement without the REEL or UNIT phrase for
DIVISION; this entry contains clauses that describe the that file. The particular open mode is specified in the
computer environment in which the object program is OPEN statement as either INPUT, OUTPUT, I-O, or EXTEND.
to be executed.
* operand. (1) The general definition of operand is
object deck. A portion of an object program suitable “the component that is operated upon.” (2) For the
as input to a linkage editor. Synonymous with object purposes of this document, any lowercase word (or
module and text deck. words) that appears in a statement or entry format can
be considered to be an operand and, as such, is an
object instance. See object.
implied reference to the data indicated by the operand.
object module. Synonym for object deck or text deck.
operation. A service that can be requested of an
* object of entry. A set of operands and reserved object.
words, within a DATA DIVISION entry of a COBOL
* operational sign. An algebraic sign that is associated
program, that immediately follows the subject of the
with a numeric data item or a numeric literal, to
entry.
indicate whether its value is positive or negative.
object-oriented programming. A programming
* optional file. A file that is declared as being not
approach based on the concepts of encapsulation and
necessarily present each time the object program is run.
inheritance. Unlike procedural programming
techniques, object-oriented programming concentrates
* output mode. The state of a file after execution of an The permissible paragraph headers in the ENVIRONMENT
OPEN statement, with the OUTPUT or EXTEND phrase DIVISION are:
specified, for that file and before the execution of a
SOURCE-COMPUTER.
CLOSE statement without the REEL or UNIT phrase for
OBJECT-COMPUTER.
that file. SPECIAL-NAMES.
REPOSITORY. (Program or Class
* output procedure. A set of statements to which CONFIGURATION SECTION)
control is given during execution of a SORT statement FILE-CONTROL.
after the sort function is completed, or during I-O-CONTROL.
execution of a MERGE statement after the merge function
reaches a point at which it can select the next record in * paragraph-name. A user-defined word that identifies
merged order when requested. and begins a paragraph in the PROCEDURE DIVISION.
overflow condition. A condition that occurs when a parameter. (1) Data passed between a calling program
portion of the result of an operation exceeds the and a called program. (2) A data element in the USING
capacity of the intended unit of storage. phrase of a method invocation. Arguments provide
additional information that the invoked method can
overload. To define a method with the same name as use to perform the requested operation.
another method that is available in the same class, but
with a different signature. See also signature. Persistent Reusable JVM. A JVM that can be serially
reused for transaction processing by resetting the JVM
override. To redefine an instance method (inherited between transactions. The reset phase restores the JVM
from a parent class) in a subclass. to a known initialization state.
Glossary 743
from programs, especially non-COBOL programs. The use of a compiler to prepare the program for execution,
environment is not terminated until an explicit as well as a run-time environment to execute it. (2) A
termination. logical assembly of one or more interrelated modules.
Multiple copies of the same program can be run in
* prime record key. A key whose contents uniquely different processes.
identify a record within an indexed file.
* program identification entry. In the PROGRAM-ID
* priority-number. A user-defined word that classifies paragraph of the IDENTIFICATION DIVISION, an entry
sections in the PROCEDURE DIVISION for purposes of that contains clauses that specify the program-name
segmentation. Segment numbers can contain only the and assign selected program attributes to the program.
characters 0 through 9. A segment number can be
expressed as either one or two digits. * program-name. In the IDENTIFICATION DIVISION and
the end program marker, a user-defined word or
private. As applied to factory data or instance data, alphanumeric literal that identifies a COBOL source
accessible only by methods of the class that defines the program.
data.
project environment. The central location where you
* procedure. A paragraph or group of logically launch your COBOL tools such as the editor and job
successive paragraphs, or a section or group of monitor and work with COBOL files or data sets.
logically successive sections, within the PROCEDURE
DIVISION. * pseudo-text. A sequence of text words, comment
lines, or the separator space in a source program or
* procedure branching statement. A statement that COBOL library bounded by, but not including,
causes the explicit transfer of control to a statement pseudo-text delimiters.
other than the next executable statement in the
sequence in which the statements are written in the * pseudo-text delimiter. Two contiguous equal sign
source code. The procedure branching statements are: characters (==) used to delimit pseudo-text.
ALTER, CALL, EXIT, EXIT PROGRAM, GO TO, MERGE (with the
OUTPUT PROCEDURE phrase), PERFORM and SORT (with the * punctuation character. A character that belongs to
INPUT PROCEDURE or OUTPUT PROCEDURE phrase), XML the following set:
PARSE.
Character Meaning
PROCEDURE DIVISION. The COBOL division that , Comma
contains instructions for solving a problem. ; Semicolon
: Colon
procedure integration. One of the functions of the . Period (full stop)
COBOL optimizer is to simplify calls to performed
“ Quotation mark
procedures or contained programs.
( Left parenthesis
PERFORM procedure integration is the process whereby a ) Right parenthesis
PERFORM statement is replaced by its performed Space
procedures. Contained program procedure integration
= Equal sign
is the process where a call to a contained program is
replaced by the program code.
* record area. A storage area allocated for the purpose Character Meaning
of processing the record described in a record > Greater than
description entry in the FILE SECTION of the DATA < Less than
DIVISION. In the FILE SECTION, the current number of = Equal to
character positions in the record area is determined by
the explicit or implicit RECORD clause.
* relation condition. The proposition (for which a
* record description. See record description entry. truth value can be determined) that the value of an
arithmetic expression, data item, nonnumeric literal, or
* record description entry. The total set of data
index-name has a specific relationship to the value of
description entries associated with a particular record.
another arithmetic expression, data item, nonnumeric
Synonymous with record description.
literal, or index name. See also relational operator.
record key. A key whose contents identify a record
* relational operator. A reserved word, a relation
within an indexed file.
character, a group of consecutive reserved words, or a
* record-name. A user-defined word that names a group of consecutive reserved words and relation
record described in a record description entry in the characters used in the construction of a relation
DATA DIVISION of a COBOL program. condition. The permissible operators and their
meanings are:
* record number. The ordinal number of a record in
the file whose organization is sequential. Character Meaning
IS GREATER THAN Greater than
recording mode. The format of the logical records in a IS > Greater than
file. Recording mode can be F (fixed length), V IS NOT GREATER THAN Not greater than
(variable length), S (spanned), or U (undefined). IS NOT > Not greater than
recursion. A program calling itself or being directly or
indirectly called by a one of its called programs. IS LESS THAN Less than
IS < Less than
recursively capable. A program is recursively capable IS NOT LESS THAN Not less than
(can be called recursively) if the RECURSIVE attribute is IS NOT < Not less than
on the PROGRAM-ID statement.
IS EQUAL TO Equal to
reel. A discrete portion of a storage medium, the
IS = Equal to
dimensions of which are determined by each
implementor that contains part of a file, all of a file, or IS NOT EQUAL TO Not equal to
any number of files. Synonymous with unit and volume. IS NOT = Not equal to
reentrant. The attribute of a program or routine that IS GREATER THAN OR EQUAL Greater than or equal to
allows more than one user to share a single copy of a TO
load module. IS >= Greater than or equal to
Glossary 745
* relative file. A file with relative organization. * section. A set of zero, one or more paragraphs or
entities, called a section body, the first of which is
* relative key. A key whose contents identify a logical preceded by a section header. Each section consists of
record in a relative file. the section header and the related section body.
* relative organization. The permanent logical file * section header. A combination of words followed by
structure in which each record is uniquely identified by a separator period that indicates the beginning of a
an integer value greater than zero, which specifies the section in any of these divisions: ENVIRONMENT, DATA, or
logical ordinal position of the record in the file. PROCEDURE. In the ENVIRONMENT DIVISION and DATA
DIVISION, a section header is composed of reserved
* relative record number. The ordinal number of a words followed by a separator period. The permissible
record in a file whose organization is relative. This section headers in the ENVIRONMENT DIVISION are:
number is treated as a numeric literal that is an integer.
CONFIGURATION SECTION.
* reserved word. A COBOL word that is specified in INPUT-OUTPUT SECTION.
the list of words that can be used in a COBOL source
program, but that must not appear in the program as a The permissible section headers in the DATA DIVISION
user-defined word or system-name. are:
FILE SECTION.
* resource. A facility or service, controlled by the WORKING-STORAGE SECTION.
operating system, that an executing program can use. LOCAL-STORAGE SECTION.
LINKAGE SECTION.
* resultant identifier. A user-defined data item that is
to contain the result of an arithmetic operation. In the PROCEDURE DIVISION, a section header is
composed of a section-name, followed by the reserved
reusable environment. A reusable environment is
word SECTION, followed by a separator period.
created when you establish an assembler program as
the main program by using either the old COBOL * section-name. A user-defined word that names a
interfaces for preinitialization (functions ILBOSTP0 and section in the PROCEDURE DIVISION.
IGZERRE, and the RTEREUS run-time option), or the
Language Environment interface, CEEPIPI. selection structure. A program processing logic in
which one or another series of statements is executed,
ring. In the COBOL editor, a set of files that are depending on whether a condition is true or false.
available for editing so that you can easily move
between them. * sentence. A sequence of one or more statements, the
last of which is terminated by a separator period.
routine. A set of statements in a COBOL program that
causes the computer to perform an operation or series * separately compiled program. A program that,
of related operations. In Language Environment, refers together with its contained programs, is compiled
to either a procedure, function, or subroutine. separately from all other programs.
* routine-name. A user-defined word that identifies a * separator. A character or two or more contiguous
procedure written in a language other than COBOL. characters used to delimit character strings.
* run time. The time at which an object program is * separator comma. A comma (,) followed by a space
executed. Synonymous with object time. used to delimit character strings.
run-time environment. The environment in which a * separator period. A period (.) followed by a space
COBOL program executes. used to delimit character strings.
* run unit. A stand-alone object program, or several * separator semicolon. A semicolon (;) followed by a
object programs, that interact via COBOL CALL or space used to delimit character strings.
INVOKE statements and function at run time as an entity.
sequence structure. A program processing logic in
which a series of statements is executed in sequential
S order.
SBCS. See single-byte character set (SBCS). * sequential access. An access mode in which logical
records are obtained from or placed into a file in a
scope terminator. A COBOL reserved word that marks consecutive predecessor-to-successor logical record
the end of certain PROCEDURE DIVISION statements. It sequence determined by the order of records in the file.
can be either explicit (END-ADD, for example) or implicit
(separator period). * sequential file. A file with sequential organization.
serial search. A search in which the members of a set * source computer entry. An entry in the
are consecutively examined, beginning with the first SOURCE-COMPUTER paragraph of the ENVIRONMENT
member and ending with the last. DIVISION; this entry contains clauses that describe the
computer environment in which the source program is
session bean. In EJB, an enterprise bean that is created to be compiled.
by a client and that usually exists only for the duration
of a single client/server session. (Sun) * source item. An identifier designated by a SOURCE
clause that provides the value of a printable item.
* 77-level-description-entry. A data description entry
that describes a noncontiguous data item with the source program. Although a source program can be
level-number 77. represented by other forms and symbols, in this
document the term always refers to a syntactically
* sign condition. The proposition (for which a truth correct set of COBOL statements. A COBOL source
value can be determined) that the algebraic value of a program commences with the IDENTIFICATION DIVISION
data item or an arithmetic expression is either less than, or a COPY statement and terminates with the end
greater than, or equal to zero. program marker, if specified, or with the absence of
additional source program lines.
signature. (1) The name of an operation and its
parameters. (2) The name of a method and the number source unit. A unit of COBOL source code that can be
and types of its formal parameters. separately compiled: a program or a class definition.
Also known as a compilation unit.
* simple condition. Any single condition chosen from
the set: * special character. A character that belongs to the
following set:
Relation condition
Class condition Character Meaning
Condition-name condition + Plus sign
Switch-status condition - Minus sign (hyphen)
Sign condition * Asterisk
/ Slant (virgule, slash)
See also condition and negated simple condition. = Equal sign
$ Currency sign
single-byte character set (SBCS). A set of characters
in which each character is represented by a single byte. , Comma (decimal point)
See also ASCII and EBCDIC (Extended Binary-Coded ; Semicolon
Decimal Interchange Code). . Period (decimal point, full stop)
” Quotation mark
slack bytes. Bytes inserted between data items or ( Left parenthesis
records to ensure correct alignment of some numeric ) Right parenthesis
items. Slack bytes contain no meaningful data. In some > Greater than symbol
cases, they are inserted by the compiler; in others, it is
< Less than symbol
the responsibility of the programmer to insert them.
: Colon
The SYNCHRONIZED clause instructs the compiler to insert
slack bytes when they are needed for proper alignment.
Slack bytes between records are inserted by the SPECIAL-NAMES. The name of an ENVIRONMENT DIVISION
programmer. paragraph in which environment-names are related to
user-specified mnemonic-names.
* sort file. A collection of records to be sorted by a
SORT statement. The sort file is created and can be used * special names entry. An entry in the SPECIAL-NAMES
by the sort function only. paragraph of the ENVIRONMENT DIVISION; this entry
provides means for specifying the currency sign;
* sort-merge file description entry. An entry in the
choosing the decimal point; specifying symbolic
FILE SECTION of the DATA DIVISION that is composed of
characters; relating implementor-names to
the level indicator SD, followed by a file-name, and
user-specified mnemonic-names; relating
then followed by a set of file clauses as required.
alphabet-names to character sets or collating sequences;
and relating class-names to sets of characters.
Glossary 747
* special registers. Certain compiler-generated storage Unicode character. The first unit of the pair is called a
areas whose primary use is to store information high surrogate and the second a low surrogate. The code
produced in conjunction with the use of a specific value of a high surrogate is in the range X’D800’
COBOL feature. through X’DBFF’. The code value of a low surrogate is
in the range X’DC00’ through X’DFFF’. Surrogate pairs
Standard COBOL 85. The COBOL language defined provide for more characters than the 65,536 characters
by the following standards: that fit in the Unicode 16-bit coded character set.
v ANSI INCITS 23-1985, Programming languages -
COBOL, as amended by ANSI INCITS 23a-1989, switch-status condition. The proposition (for which a
Programming Languages - COBOL - Intrinsic Function truth value can be determined) that an UPSI switch,
Module for COBOL and ANSI INCITS 23b-1993, capable of being set to an on or off status, has been set
Programming Languages - Correction Amendment for to a specific status.
COBOL
* symbolic-character. A user-defined word that
v ISO 1989:1985, Programming languages - COBOL, as specifies a user-defined figurative constant.
amended by ISO/IEC 1989/AMD1:1992, Programming
languages - COBOL: Intrinsic function module and syntax. (1) The relationship among characters or
ISO/IEC 1989/AMD2:1994, Programming languages - groups of characters, independent of their meanings or
Correction and clarification amendment for COBOL the manner of their interpretation and use. (2) The
structure of expressions in a language. (3) The rules
* statement. A syntactically valid combination of governing the structure of a language. (4) The
words, literals, and separators, beginning with a verb, relationship among symbols. (5) The rules for the
written in a COBOL source program. construction of a statement.
structured programming. A technique for organizing * system-name. A COBOL word that is used to
and coding a computer program in which the program communicate with the operating environment.
comprises a hierarchy of segments, each segment
having a single entry point and a single exit point.
Control is passed downward through the structure T
without unconditional branches to higher levels of the
hierarchy. * table. A set of logically consecutive items of data
that are defined in the DATA DIVISION by means of the
* subclass. A class that inherits from another class. OCCURS clause.
When two classes in an inheritance relationship are
considered together, the subclass is the inheritor or * table element. A data item that belongs to the set of
inheriting class; the superclass is the inheritee or repeated items comprising a table.
inherited class.
text deck. Synonym for object deck or object module.
* subject of entry. An operand or reserved word that
appears immediately following the level indicator or * text-name. A user-defined word that identifies
the level-number in a DATA DIVISION entry. library text.
token. In the COBOL editor, a unit of meaning in a * user-defined word. A COBOL word that must be
program. A token can contain data, a language supplied by the user to satisfy the format of a clause or
keyword, an identifier, or other part of the language statement.
syntax.
Glossary 749
v Next line XML document. A data object that is well formed as
defined by the W3C XML specification.
as named in the Unicode Standard.
XML type definition. An XML element that contains
windowed date field. A date field containing a or points to markup declarations that provide a
windowed (two-digit) year. See also date field and grammar for a class of documents. This grammar is
windowed year. known as a document type definition, or DTD.
X
x. The symbol in a PICTURE clause that can hold any
character in the character set of the computer.
z/Architecture
Unicode, www.unicode.org/
Java
Index 755
collating sequence (continued) compiler error messages compiler options (continued)
the ordinal position of a character 99 from exit modules 644 SIZE 302
columns in tables 59 sending to terminal 236 SOURCE 302, 331
COMMENT XML event 452 compiler listings SPACE 303
COMMON attribute 6, 403 getting 331 specifying 238
COMP (COMPUTATIONAL) 41 compiler messages PROCESS (CBL) statement 238
COMP-1 (COMPUTATIONAL-1) 42, 582 analyzing 572 specifying under TSO 239
COMP-2 (COMPUTATIONAL-2) 42, 582 compiler options specifying under UNIX 250
COMP-3 (COMPUTATIONAL-3) 42 ADATA 271 specifying under z/OS 239
COMP-4 (COMPUTATIONAL-4) 41 APOST 299 SQL 303, 373
COMP-5 (COMPUTATIONAL-5) 41 ARITH 271 SSRANGE 304, 327, 589
comparing AWO 272 status 334
national and alphabetic or AWO and performance 589 TERMINAL 305
alphanumeric 111 BUFSIZE 273 TEST 306, 334, 355, 589
national and group 111 CICS 273 THREAD 309
national and numeric 111 CODEPAGE 274 TRUNC 310, 589
national data 111 COMPILE 275 under CICS 362
object references 505 conflicting 269 under IMS and CICS 362
of date fields 560 CURRENCY 276 VBREF 313, 331
COMPAT suboption of PGMNAME 297 DATA 277 WORD 313
compatibility mode 37, 603 DATEPROC 278 XREF 314, 329
compatible dates DBCS 279 YEARWINDOW 315
in comparisons 560 DECK 279 ZWB 316
with MLE 561 DIAGTRUNC 280 compiler-directing statements
compilation DLL 281 description 317
COBOL 85 Standard 269 DUMP 281 list 20
results 239 DYNAM 282, 589 overview 20
statistics 334 EXIT 283, 635 compiling
with HFS files 220 EXPORTALL 283 batch 241
COMPILE compiler option FASTSRT 193, 284, 589 control of 238
description 275 FLAG 284, 328 data sets for 233
use NOCOMPILE to find syntax FLAGSTD 285 from an assembler program 231
errors 326 for debugging 325 OO applications
compile-time considerations IMS, recommended for 377 example 259, 263
compiler directed errors 246 in effect 343 under UNIX 257
display compile and link steps 254 INTDATE 287 using JCL or TSO/E 261
error message severity 247 LANGUAGE 287 under TSO 229
executing compile and link steps after example in batch compilation 244 under UNIX 249
display 254 LIB 288 under z/OS 217
compile-time dump, generating 281 LINECOUNT 289 using shell script 255
compile-time error messages LIST 289, 331, 334 using the cob2 command 251
choosing severity to be flagged 328 MAP 290, 330, 331, 334 examples 252
determining what severity level to NAME 291 with cataloged procedures 218
produce 284 NOCOMPILE 326 compile 219
embedding in source listing 328 NOFASTSRT 195 compile and link-edit 220
compiler NSYMBOL 291 compile, link-edit, run 221
calculation of intermediate NUMBER 292, 332 compile, load, run 222
results 604 NUMPROC 293 compile, prelink, link-edit 223
generating list of error messages 246 NUMPROC(PFD) 589 compile, prelink, link-edit,
invoking in the UNIX shell 251 NUMPROC(PFD|NOPFD|MIG) 45 run 224
examples 252 OBJECT 294 compile, prelink, load, run 226
limits 12 OFFSET 294, 334 with JCL (job control language) 217
compiler data sets on compiler invocation 334 compiling and linking in the UNIX
in the HFS 218, 228 OPTIMIZE 295, 586, 589 shell 251
input and output 233 OUTDD 296 examples 252
required for compilation 233 performance considerations 589 OO applications
SYSADATA (ADATA records) 237 PGMNAME 297 example 259
SYSDEBUG (debug records) 237 precedence in batch compilation completion code, sort 192
SYSIN (source code) 235 example 243 complex OCCURS DEPENDING ON
SYSJAVA 237 precedence of 238 basic forms of 613
SYSLIB (libraries) 235 QUOTE 299 complex ODO item 613
SYSLIN (object code) 236 RENT 299, 589 variably located data item 614
SYSOUT (listing) 236 RMODE 300 variably located group 614
SYSPUNCH (object code) 236 RMODE and performance 589 computation
SYSTERM (messages) 236 SEQUENCE 301, 327 arithmetic data items 581
with cob2 254 settings for COBOL 85 Standard 269 constant data items 580
signature bytes 343 duplicate 581
Index 757
data item (continued) date windowing (continued) debugging (continued)
finding the smallest or largest in MLE approach 556 using COBOL language features 322
group 99 when not supported 562 debugging, language features
index 62 DATE-COMPILED paragraph 5 class test 323
map 239 DATE-OF-INTEGER intrinsic debugging declaratives 324
numeric 37 function 52 file status keys 323
reference modification 93 DATEPROC compiler option INITIALIZE statements 323
referencing substrings 93 analyzing warning-level diagnostic scope terminators 322
replacing 95 messages 572 SET statements 323
reversing characters 97 description 278 DECK compiler option 279
splitting 89 DATEVAL intrinsic function 571 declarative procedures
unused 295, 337 DB2 EXCEPTION/ERROR 207
variably located 614 COBOL language usage with SQL with multithreading 207
data manipulation statements 372, 373 LABEL 142
DBCS data 619 coding considerations 371 USE FOR DEBUGGING 324
nonnumeric data 87 coprocessor 375 deferred restart 549
DATA RECORDS clause 14 options 373 defining
data set return codes 373 debug data set 237
alternate data set names 231 SQL DECLARE statement 372 files, overview 10, 113
checkpoint record 547 SQL INCLUDE statement 371 libraries 235
checkpoint/restart 551 SQL statements 371 line-sequential files
defining with environment DBCS to z/OS 177
variable 117 comparison 79 QSAM files
JAVAERR 263 compiler option 269, 279 to z/OS 134, 135
JAVAIN 263 converting 112, 619 sort files
JAVAOUT 263 encoding 107 under z/OS 187
names, alternate 232 user-defined words in XREF VSAM files 166
output 236 output 329 to z/OS 166
source code 235 DBCS compiler option DELETE statement
SYSADATA 237 for Java interoperability 257, 261 compiler-directing 317
SYSDEBUG 237 for OO COBOL 257, 261 multithreading serialization 440
SYSIN 235 DBCSXREF 330 VSAM, coding 155
SYSJAVA 237 dbg extension with cob2 254 deleting records from VSAM file 163
SYSLIB 235 DCB 129 delimited scope statement
SYSLIN 236 DD control statement description of 19
SYSPRINT 236 AMP parameter 169 nested 21
SYSPUNCH 236 ASCII tape files 144 DEPENDING ON option 122, 155
SYSTERM 236 creating line-sequential files 177 depth in tables 60
used interchangeably for file 7 creating QSAM files 134, 135 developing programs for CICS 359
data sets DCB overrides data set label 135 device
required for compilation, z/OS 233 define file 10 classes 233
used for compilation 233 defining sort data sets 187 requirements 233
data-definition attribute codes 336 JAVAERR 263 DFCOMMAREA parameter for
data-name JAVAIN 263 CALL 361
cross-reference 352 JAVAOUT 263 DFHEIBLK parameter for CALL 361
cross-reference list 239 RLS parameter 170 DFSORT
in MAP listing 336 SYSADATA 237 using 187
OMITTED 14 SYSDEBUG 237 diagnostic messages
password for VSAM files 164 SYSIN 235 from millennium language
date and time operations SYSJAVA 237 extensions 572
Language Environment callable SYSLIB 235 diagnostics, program 334
services 597 SYSLIN 236 DIAGTRUNC compiler option 280
date arithmetic 569 SYSPRINT 236 direct-access
date comparisons 560 SYSPUNCH 236 direct indexing 63
date field expansion ddname definition 10 file organization 114
advantages 556 deadlock storage device (DASD) 171
description 558 in I/O error declarative 207 directories
date fields Debug Tool adding a path to 253
potential problems 574 compiler options for maximum where error listing file is written 246
date operations support 355 DISK compiler option 267
intrinsic functions 33 description 321 DISPLAY (USAGE IS)
date processing with internal bridges debugging encoding 107
advantages 556 and performance 307 external decimal 40
date windowing approaches 321 DISPLAY statement
advantages 556 defining data set 237 directing output 296
example 562 dynamic 308 displaying data values 30
how to control 571 useful compiler options 325 interaction with OUTDD 31
Index 759
exit modules figurative constants (continued) file status code (continued)
called for SYSADATA data set 642 national characters as 106 49 162
error messages generated 644 file access mode 90 128
loading and invoking 637 dynamic 153 92 386
used in place of library-name 638 example 154 using 203
used in place of SYSLIB 638 for indexed files (KSDS) 153 file status key
used in place of SYSPRINT 641 for relative files (RRDS) 153 checking for successful OPEN 208,
EXIT PROGRAM statement for sequential files (ESDS) 153 209
in subprogram 394 performance considerations 171 importance of in VSAM 164
with multithreading 394 random 153 set for error handling 118, 323
expanded IF statement 75 sequential 153 to check for I/O errors 208
explicit scope terminator 21 summary table of 115, 149 used with VSAM return code 209
exponentiation file allocation 117 file-name
evaluated in fixed-point file availability specification 14
arithmetic 606 VSAM files under z/OS 165 FILEDEF command
evaluated in floating-point file conversion ASCII tape files 144
arithmetic 611 with millennium language files
performance tips 582 extensions 558 associating program files to external
EXPORTALL compiler option file description (FD) entry 14 files 7
description 283 file extensions COBOL coding
multioption interaction 269 for error messages listing 246 DATA DIVISION entries 120, 154,
extended mode 37, 603 file name 176
external class-name 491, 503 change 11 ENVIRONMENT DIVISION
EXTERNAL clause file organization entries 119, 149, 175
example for files 421, 422 comparison of ESDS, KSDS, input/output statements 129, 155,
for data items 420 RRDS 148 177
for files 13 indexed 113, 150 overview 116
used for input/output 421 line-sequential 175 defining to operating system 10
external code page overview 113 describing 13
definition 463 QSAM 119 description of optional 130, 158
external data relative 113 identifying to z/OS 134, 135, 166,
obtaining storage for 35 relative-record 151 177
sharing 420 sequential 113, 150 improving sort performance 193
storage location of 35 summary table of 115 labels 145
external decimal data item 40 VSAM 148 overview 114
external file 13, 421 file position indicator (CRP) 157, 160 processing
external floating-point data item 40 FILE SECTION line-sequential 175
BLOCK CONTAINS clause 14 QSAM 119
CODE-SET clause 14 VSAM 147
F DATA RECORDS clause 14
description 13
usage explanation 11
used interchangeably for data set 7
F format record 121
EXTERNAL clause 13 with multithreading 440
factoring expressions 580
FD entry 14 finding
factory data
GLOBAL clause 13 date of compilation 102
defining 515
LABEL RECORDS clause 14 largest or smallest data item 99
definition of 485
LINAGE clause 14 length of data items 101
making it accessible 515
OMITTED 14 fixed century window 556
private 515
RECORD CONTAINS clause 14 fixed-length records
factory definition, coding 514
record description 13 format 154
factory methods
RECORD IS VARYING 14 QSAM 121
defining 516
RECORDING MODE clause 14 VSAM 148, 154
definition of 485
VALUE OF 14 fixed-point arithmetic
hiding 517
FILE STATUS clause comparisons 54
invoking 517
description 118 evaluation 53
using to wrap procedural
line-sequential error processing 180 example evaluations 55
programs 523
NOFASTSRT error processing 195 exponentiation 606
FACTORY paragraph
QSAM error processing 133 fixed-point data
factory data 515
using 208 binary 41
factory methods 516
VSAM error processing 164 conversions between fixed- and
factory section, defining 514
VSAM file loading 159 floating-point data 44
FASTSRT compiler option
with VSAM return code 209 external decimal 40
description 284
file status code intermediate results 605
improving sort performance 193, 589
02 161 packed-decimal 42
information message 193
05 158 planning use of 581
requirements 193
35 158 FLAG compiler option
FD (file description) entry 14
37 129 compiler output 328
figurative constants
39 130, 137, 140, 158 description 284
definition 25
Index 761
INTDATE compiler option 287 intrinsic functions (continued) Java (continued)
INTEGER intrinsic function 95 numeric functions (continued) global references 530
INTEGER-OF-DATE intrinsic nested 49 JNI services 531
function 52 special registers as arguments 49 managing 530
integrated CICS translator 364 table elements as arguments 49 object 530
interactive program, example 709 type of integer, floating-point, passing 530
Interactive System Productivity Facility mixed 48 int array 532
(ISPF) 709 uses for 48 int type 532
interlanguage communication processing table elements 73 interoperability 527
and PL/I tasking 393 simplifying coding 595 interoperable data types, coding 532
between COBOL and Java 527 UNDATE 571 jstring class 531
subprograms 393 INVALID KEY phrase 212 local references 530
under CICS 361 INVOKE statement deleting 530
with multithreading 393 use with PROCEDURE DIVISION freeing 530
interlanguage communication (ILC) 393 RETURNING 419 JNI services 531
intermediate results 603 using to create objects 508 managing 530
internal bridges using to invoke methods 506 object 530
advantages 556 with ON EXCEPTION 506, 518 passing 530
example 558 invoking per multithreading 530
for date processing 557 COBOL UNIX programs 383 saving 530
internal floating-point data factory or static methods 517 long array 532
bytes required 42 instance methods 506 long type 532
defining 42 Language Environment callable methods
uses for 42 services 599 access control 531
interoperable data types 532 ISAM data set 147 object array 532
intrinsic functions ISPF (Interactive System Productivity record class 531
as reference modifier 95 Facility) 709 running with COBOL 259, 263
converting character data items 97 sharing data with 531
DATEVAL 571 short array 532
evaluating data items 99
example of
J short type 532
string array 533
J2EE client
ANNUITY 52 strings
example 539
CHAR 99 declaring 532
running 260
CURRENT-DATE 52 manipulating 536
Java
DISPLAY-OF 109 Java virtual machine
and COBOL 527
INTEGER 95 exceptions 529
binding 262
INTEGER-OF-DATE 52 initializing 260
compiling under UNIX 257
LENGTH 51, 100, 101 object references 530
compiling using JCL or
LOG 53 java.lang.Object
TSO/E 261
LOWER-CASE 97 referring to as Base 490
linking 258
MAX 51, 74, 100 javac command 257
running 259, 263
MEAN 53 JAVAERR data set 263
structuring applications 524
MEDIAN 53, 74 JAVAIN data set 263
array classes 531
MIN 95 JAVAOUT data set 263
arrays
NATIONAL-OF 109 JCL
declaring 532
NUMVAL 97 ASCII tape files 144
example 535
NUMVAL-C 51, 97 cataloged procedures 218
manipulating 534
ORD 99 checkpoint/restart sample 551
boolean array 532
ORD-MAX 74, 100 FASTSRT requirement 193
boolean type 532
PRESENT-VALUE 52 for compiling 217
byte array 532
RANGE 53, 74 for compiling with HFS 220
byte type 532
REM 53 for line-sequential files 177
char array 532
REVERSE 97 for OO applications 261
char type 532
SQRT 53 example 263
class types 532
SUM 74 for QSAM files 135
double array 533
UPPER-CASE 97 for Sort 187
double type 532
WHEN-COMPILED 102 for VSAM data sets 169
example
intermediate results 608, 611 JNI
exception handling 529
introduction to 32 accessing services 527
J2EE client 539
nesting 33 comparing object references 505
processing an array 535
numeric functions converting local references to
exception
differences from Language global 508
catching 529
Environment callable EBCDIC services 537
example 529
services 50 environment structure 527
handling 528
equivalent Language Environment addressability for 528
throwing 529
callable services 49 exception handling services 528
float array 533
examples of 49 Java array services 534
float type 532
Index 763
LST file extension 246 methods (continued) multithreading (continued)
invoking superclass 507 preinitializing 440
Java access control 531 preparing COBOL programs for 437
M obtaining passed arguments 497
overloading 498
recursion 439
recursive requirement 442
main program
overriding 497, 517 reentrancy 442
and subprograms 394
PROCEDURE DIVISION reentrancy requirement 442
dynamic CALL 397
RETURNING 420 run-time restrictions 443
parameter list in UNIX 388
returning a value from 497 STOP RUN statement 394
main storage, allocating to buffers 273
signature 494 synchronizing access to
MAP compiler option
millennium language extensions resources 442
data items and relative addresses 239
assumed century window 564 terminology 438
description 290
compatible dates 561 THREAD compiler option
embedded MAP summary 331
concepts 554 restrictions under 309
example 336, 340
date windowing 553 when to choose 439
nested program map 331
DATEPROC compiler option 278 UPSI switches 443
example 340
nondates 565 with PL/I tasks 393
symbols used in output 338
objectives 555
terms used in output 338
principles 554
using 330, 331
mapping of DATA DIVISION items 331
YEARWINDOW compiler option 315
MIN intrinsic function 95, 100
N
mathematics NAME compiler option
mixed DBCS/EBCDIC literal
intrinsic functions 49, 53 description 291
alphanumeric to DBCS
Language Environment callable using 5
conversion 619
services 50, 597 name declaration
DBCS to alphanumeric
MAX intrinsic function searching for 406
conversion 622
example 51, 74 naming
MLE 554
using 100 files 10
mnemonic-name
MEAN intrinsic function 53, 74 programs 5
SPECIAL-NAMES paragraph 7
MEDIAN intrinsic function 53, 74 national
modules, exit
memory map literal 106
loading and invoking 637
DSA 340 national comparison 79
MOVE statement
TGT 340 national data
using 27
memory map, TGT comparing to alphabetic or
with national items 28, 107
example 350 alphanumeric 111
MSGFILE run-time option 296
merge comparing to groups 111
multiple currency signs
concepts 182 comparing to numeric 111
example 56
description 181 converting 107
using 55
files, describing 183 Chinese GB 18030 110
multiple inheritance, not permitted 488,
line-sequential files 181 example 109
511
pass control statements to 197 exceptions 108
multiple thread environment, running
storage use 197 UTF-8 109
in 309
successful 192 DISPLAY-OF intrinsic 108
multitasking
with multitasking 181 in conditional expression 111
merge under 181
MERGE statement in XML document 462
sort under 181
description 182 input with ACCEPT 30
multithreading
message handling, Language joining 87
AMODE setting 443
Environment callable services 597 LENGTH intrinsic function 101
asynchronous signals 443
messages LENGTH OF special register 101
choosing data section 437
compile-time error MOVE statement 28
in an OO client 504
choosing severity to be NATIONAL-OF intrinsic 108
closing QSAM files 133
flagged 328 output with DISPLAY 30
closing VSAM files 163
embedding in source listing 328 reference modification 93
COBOL programs 437
compiler error specifying 106
coding file I/O 440
sending to terminal 236 spliting 89
control transfer issues 439
compiler-directed 246 tallying and replacing 95
example of file I/O usage 441
determining what severity level to national language support
EXIT PROGRAM statement 394
produce 284 LANGUAGE compiler option 287
GOBACK statement 394
from exit modules 644 national languages
I/O error declaratives 207
generating a list of 246 run-time use 103
IGZBRDGE 443
severity levels 247 NATIONAL-OF intrinsic function
IGZEOPT 443
METHOD-ID paragraph 494 using 108
IGZETUN 443
methods with XML document 464
interlanguage communication 393
constructor 516 nested COPY statement 595, 639
limitations on COBOL 442
factory 516 nested delimited scope statements 21
nested programs 442
hiding factory 517 nested IF statement
older compilers 443
instance 493, 513 coding 76
overview 437
invoking 506, 517 CONTINUE statement 76
Index 765
OPEN statement (continued) output procedure (continued) PERFORM statement (continued)
VSAM files 155 requires RETURN or RETURN INTO TEST AFTER 84
opening files statement 185 TEST BEFORE 84
line-sequential 178 restrictions 187 TIMES 84
multithreading serialization 440 using 185 UNTIL 84
QSAM 130 overflow condition 202, 213 VARYING 85
VSAM 158 overloading instance methods 498 VARYING WITH TEST AFTER 85
optimization overriding WITH TEST AFTER . . . UNTIL 84
avoid ALTER statement 580 factory methods 517 WITH TEST BEFORE . . . UNTIL 84
avoid backward branches 580 instance methods 497 performance
BINARY data items 581 AIXBLD run-time option 593
consistent data 582 and debugging 307
constant computations 580
constant data items 580
P APPLY WRITE-ONLY clause 12
arithmetic expressions 582
PACKED-DECIMAL
contained program integration 587 blocking QSAM files 127
synonym 39
duplicate computations 581 CBLPSHPOP run-time option 367
packed-decimal data item
effect of compiler options on 588 CICS environment 592
date fields, potential problems 574
effect on parameter passing 413 coding 579
description 42
effect on performance 579 coding tables 583
using efficiently 42, 582
factor expressions 580 compiler option
page
index computations 584 AWO 589
control 132
indexing 583 DYNAM 589
depth 14
nested program integration 587 FASTSRT 589
header 334
OCCURS DEPENDING ON 584 NUMPROC 45, 589
customized 334, 335
out-of-line PERFORM 580 OPTIMIZE 586, 589
paragraph
packed-decimal data items 582 RENT 589
grouping 85
performance implications 584 RMODE 589
introduction 19
procedure integration 587 SSRANGE 589
parameter list
structured programming 579 TEST 589
for ADEXIT 642
subscript computations 584 THREAD 310
for INEXIT 637
subscripting 583 TRUNC 310, 589
for LIBEXIT 640
table elements 583 data usage 581
for PRTEXIT 641
top-down programming 580 effect of compiler options on 588
main program in UNIX 388
unreachable code 587 effects of buffer size 273
parameters
unused data items 295, 337 exponentiations 582
describing in called program 413
OPTIMIZE compiler option IMS environment 377, 593
parsing
description 295 OCCURS DEPENDING ON 584
XML documents 447, 449
effect on parameter passing 413 of calls 401
passing data between programs
effect on performance 586 optimizer 586, 588
addresses 416
multioption interaction 269 planning arithmetic evaluations 581
BY CONTENT 411
performance considerations 589 programming style 579
BY REFERENCE 411
using 586 run-time considerations 367, 579
BY VALUE 411
optimizer 586, 588 table handling 584
called program 413
optional files 130, 158 tape, QSAM 128
calling program 413
ORD intrinsic function 99 variable subscript data format 62
EXTERNAL data 420
ORD-MAX intrinsic function 74, 100 VSAM file considerations 171
JNI services 528
ORD-MIN intrinsic function 100 worksheet 592
language used 413
order of evaluation period, as scope terminator 21
OMITTED arguments 414
arithmetic operators 48, 605 PGMNAME compiler option 297
options considerations 35
compiler options 269 physical
with Java 531
out-of-line PERFORM 83 block 113
password
OUTDD compiler option record 14, 113
alternate index 165
DD not allocated 31 PICTURE clause
example 165
description 296 determining symbol used 276
VSAM files 164
interaction with DISPLAY 31 numeric data 37
PASSWORD clause 164
output PL/I tasking
PATH environment variable 262, 385
coding for line-sequential files 177 POSIX run-time option 442
path name
coding for QSAM files 129 with COBOL 393
for copybook search 253, 317
coding for VSAM files 155 pointer data item
PERFORM statement
coding in CICS 360 description 33
. . .THRU 85
data set 236 incrementing addresses with 417
coding loops 83
from compiler, under z/OS 233 NULL value 416
for a table 66
to files 113 used to pass addresses 416
indexing 63
output file with cob2 254 used to process chained list 416, 417
inline 83
output procedure porting your program 38
out-of-line 83
FASTSRT option not effective 193 POSIX
performed a definite number of
calling APIs 386
times 84
Index 767
reference modifier return code (continued) run-time options (continued)
arithmetic expression as 94 when control returns to operating TRAP
intrinsic function as 95 system 419 closing files in line-sequential 179
variables as 93 RETURN INTO statement 185 closing files in QSAM 132
register 15 and CICS 362 RETURN statement 185 closing files in VSAM 163
registers, affected by EXIT compiler RETURN-CODE special register ON SIZE ERROR 203
option 637 considerations for DB2 373 running OO applications
relation condition 79 not set by INVOKE 507 under UNIX 259
relative file organization 113 value after call to Language using JCL or TSO/E 263
RELEASE FROM statement Environment service 599
compared to RELEASE 184 when control returns to operating
example 184
RELEASE statement
system 419
RETURNING phrase
S
S format record 125
compared to RELEASE FROM 184 INVOKE statement 507
S-level error message 247, 328
with SORT 184 methods, use of 420
sample programs 705
REM intrinsic function 53 PROCEDURE DIVISION header 497
scope of names 406
RENT compiler option REVERSE intrinsic function 97
scope terminator
description 299 reverse order of tape files 130
aids in debugging 322
for Java interoperability 257, 261 reversing characters 97
explicit 19, 21
for OO COBOL 257, 261 REWRITE statement
implicit 21
influencing addressability 35 multithreading serialization 440
SEARCH ALL statement
multioption interaction 34 QSAM 129
binary search 72
performance considerations 589 VSAM 155
indexing 63, 71
when passing data 35 RLS parameter 170
ordered table 72
REPLACE statement 317 RMODE
search order
replacing assigned for EXIT modules 637
DLLs in the HFS 430
data items 95 description 34
SEARCH statement
records in QSAM file 131 RMODE compiler option
examples 71
records in VSAM file 162 description 300
indexing 63
REPOSITORY paragraph influencing addressability 34
nesting 71
class 490 multioption interaction 34
serial search 71
client 503 performance considerations 589
searching a table 71
coding 7 when passing data 35
searching for name declarations 406
subclass 512 Rotational Position Sensing feature 129
section
representation ROUNDED phrase 604
declarative 22
data 46 rows in tables 60
description of 18
sign 45 RRDS (relative-record data sets)
grouping 85
RERUN clause file access mode 153
segmentation 589
checkpoint/restart 198 fixed-length records 148
SELECT clause
reserved-word table organization 150, 151
ASSIGN clause 10
alternate, CICS 314, 366 performance considerations 171
naming files 10
residency mode 34 simulating variable-length
vary input-output file 11
restart records 152
SELECT OPTIONAL 130, 158
automatic 549 variable-length records 148
SELF 505
deferred 549 run time
sending field 89
routine 545 changing file-name 11
sentence 19
restarting a program 548 multithreading restrictions 443
separate digit sign 38
restrictions performance considerations 579
SEQUENCE compiler option 301, 327
CICS coding 7 run unit
sequential file organization 113
coding programs for CICS 359 description 393
sequential storage device 114
coding programs for IMS 377 role in multithreading 438
serial search 71
IMS coding 7, 362 run-time options
serialization
input/output procedures 187 affecting DATA compiler option 35
of files with multithreading 440
OO programs 485 AIXBLD 593
SERVICE LABEL statement 317
subscripting 62 ALL31 399
SET condition-name TO TRUE statement
using EXEC SQL under IMS 380 CBLPSHPOP 367
example 84, 85
resubmitting a job 551 CHECK(OFF) 589
switches and flags 81
return code COBOL 85 Standard
SET statement
compiler 247 conformance 269
for function-pointer data items 408
feedback code from Language ENVAR 263
for procedure-pointer data items 408
Environment services 599 MSGFILE 296
handling of programs name in 297
from CICS ECI 362 POSIX
setting object references 505
from DB2 373 DLL search order 430
using for debugging 323
RETURN-CODE special register 419, use in OO applications 263
setting
599 SIMVRD 152
switches and flags 81
VSAM files 209 specifying under UNIX 383
sharing
data 406, 420
Index 769
substrings table (continued) TRAP run-time option
reference modification 93 dynamically loading 64 closing line-sequential files 179
referencing table items 93 efficient coding 583, 584 closing QSAM files 132
SUM intrinsic function 74 handling 59 closing VSAM files 163
SUPER 508 identical element specifications 583 ON SIZE ERROR 203
surrogate values 110 index 62 TRUNC compiler option
switch-status condition 79 initialize 64 description 310
switches and flags intrinsic functions 73 performance considerations 589
defining 80 loading values in 64 TSO
description 80 looping through 85 ALLOCATE command 229
resetting 81 making reference 61 CALL command 229
SYMBOLIC CHARACTERS clause 10 one-dimensional 59 compiling under 229
symbolic constant 580 reference modification 62 SYSTERM for compiler messages 236
syntax errors referencing table entry substrings 93 tuning considerations, performance 588,
finding with NOCOMPILE compiler rows 60 589
option 326 searching 71 typed object references 504
SYSADATA subscripts 61
output 271 three-dimensional 60
records, exit module 642
SYSADATA data set 237
two-dimensional 60
variable-length 68
U
U format record 126
SYSADATA file TALLYING option 96
U-level error message 247, 328
example 657 tape files
UNDATE intrinsic function 571
file contents 655 performance 128
undefined record format
record descriptions 658 reverse order 130
description 126
record types 656 TERMINAL compiler option 305
layout 126
SYSDEBUG data set terminal, sending messages to 305
QSAM 144
defining 237 termination 394
requesting 126
use of 307 terminology
unfilled tracks 129
SYSIN data set VSAM 147
Unicode
defining 235 terms used in MAP output 338
description 105
description 233 test
encoding 107
user exit error message 644 conditions 84
JNI services 536
SYSJAVA data set 237 data 79
run-time support 103
SYSLIB data set numeric operand 79
using with DB2 372
defining 235 UPSI switch 79
universal object references 504
description 233 TEST AFTER 84
UNIX
when not used 638 TEST BEFORE 84
accessing environment variables 384
SYSLIB environment variable 250, 257 TEST compiler option
example 385
SYSLIN data set 236 description 306
accessing main parms 388
SYSPRINT data set for full advantage of Debug Tool 355
example 388
defining 236 multioption interaction 269
calling APIs 386
description 233 performance considerations 589
compiler environment variables 249
when not used 641 text-name environment variable 250
compiling from script 255
SYSPUNCH data set TGT memory map
compiling OO applications 257
description 233, 236 description 340
example 259
requirements for DECK compiler example 350
compiling under 249
option 279 THREAD compiler option
copybook search order 250, 253, 318
system date and the LINKAGE SECTION 17
copybooks 318
under CICS 360 description 309
developing programs 383
system dump 202 for Java interoperability 257, 261
execution environments 383
system-determined block size 127, 235 for OO COBOL 257, 261
linking OO applications 258
system-name 7 threading consideration 383
example 259
SYSTERM data set TITLE statement
preparing OO applications 258
defining 236 controlling header on listing 7
example 259
description 233 top-down programming
running OO applications 259
sending messages to 305 constructs to avoid 580
running programs 383
SYSUT data set 233 TRACK OVERFLOW option 129
setting environment variables 384
trademarks 726
example 385
transferring control
sort and merge 181
T between COBOL and non-COBOL
programs 393
specifying compiler options 250
table UNIX APIs
between COBOL programs 396, 403
assigning values 65 calling 386
called program 394
columns 59 UNKNOWN-REFERENCE-IN-
calling program 394
compare to array 33 ATTRIBUTE XML event 455
main and subprograms 394
defining 59 UNKNOWN-REFERENCE-IN-CONTENT
nested programs 404
depth 60 XML event 455
transforming COBOL data to XML 471
description 33 unreachable code 587
Index 771
XML event (continued) XML-NTEXT special register (continued)
START-OF-DOCUMENT 451 using 447
START-OF-ELEMENT 452 XML-TEXT special register 456
UNKNOWN-REFERENCE-IN- using 447
ATTRIBUTE 455 XREF compiler option 314, 329
UNKNOWN-REFERENCE-IN- XREF output
CONTENT 455 data-name cross-references 352
VERSION-INFORMATION 451 program-name cross-references 353
XML events
description 447
processing 450
processing procedure 449
Y
year field expansion 558
XML exception codes
year windowing
for generating 481, 633
advantages 556
for parsing
how to control 571
handleable 625
MLE approach 556
not handleable 628
when not supported 562
XML GENERATE statement
year-last date fields 560
COUNT IN 481
YEARWINDOW compiler option
NOT ON EXCEPTION 473
description 315
ON EXCEPTION 480
effect on sort/merge 196
XML generation
counting generated characters 472
description 471
enhancing output 476 Z
example 477 z/OS
example 473 compiling under 217
handling errors 480 zero comparison 567
ignored data items 472 zoned decimal 40
overview 471 ZWB compiler option 316
XML output
encoding 480
enhancing 476
example 477
generating 471
example 473
XML PARSE statement
description 447
NOT ON EXCEPTION 465
ON EXCEPTION 465
using 449
XML parser
conformance 631
description 447
XML parsing
CCSID conflict 469
code-page conflict 469
description 449
overview 447
special registers 456
terminating 468
XML declaration 449
XML processing procedure
example 460
specifying 449
using special registers 456
writing 456
XML-CODE special register
description 456
using in generating 473
using in parsing 447
with generating exceptions 480
with parsing exceptions 465
XML-EVENT special register
description 456
using 447, 450
XML-NTEXT special register 457
Overall, how satisfied are you with the information in this book?
How satisfied are you that the information in this book is:
When you send comments to IBM, you grant IBM a nonexclusive right to use or distribute your comments in any
way it believes appropriate without incurring any obligation to you.
Name Address
Company or Organization
Phone No.
___________________________________________________________________________________________________
Readers’ Comments — We’d Like to Hear from You Cut or Fold
SC27-1412-02 Along Line
_ _ _ _ _ _ _Fold
_ _ _and
_ _ _Tape
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _Please
_ _ _ _ _do
_ _not
_ _ staple
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _Fold
_ _ _and
_ _ Tape
______
NO POSTAGE
NECESSARY
IF MAILED IN THE
UNITED STATES
IBM Corporation
H150/090
555 Bailey Avenue
San Jose, CA
U.S.A. 95141-9989
_________________________________________________________________________________________
Fold and Tape Please do not staple Fold and Tape
Cut or Fold
SC27-1412-02 Along Line
Printed in USA
SC27-1412-02