CPRS80C1
COBOL Source Member
  Table of Contents  v-23.01.01 
  Introduction
  COBOL Source Member
  Summary
  Software Agreement and Disclaimer
  Downloads and Links
  Current Server or Internet Access
  Internet Access Required
  Glossary of Terms
  Contact, Comments or Feedback
  Company Overview
The SimoTime Home Page 

Table of Contents Previous Section Next Section Introduction

This document shows the content of an ASCII/Text file. The record structure may use one of the following formats.

1. Comma-Separated-Values (CSV) format.
2. A group of concatenated Text string of fixed length. The numeric values may be padded with leading zeroes and the text values may be padded with trailing spaces.
3. A single string of ASCII-encoded text.

 


We have made a significant effort to ensure the documents and software technologies are correct and accurate. We reserve the right to make changes without notice at any time. The function delivered in this version is based upon the enhancement requests from a specific group of users. The intent is to provide changes as the need arises and in a timeframe that is dependent upon the availability of resources.

Copyright © 1987-2023
SimoTime Technologies and Services
All Rights Reserved

Table of Contents Previous Section Next Section COBOL Source Member

The following shows the content of a user-defined, ASCII/Text file.

This generated COBOL program will do a Data Compare of two files. When a NOT EQUAL condition is found a second program is called to show the content of each record. The positions within the records that are not equal are identified.

       IDENTIFICATION DIVISION.
       PROGRAM-ID.    CPRS80C1.
       AUTHOR.        SIMOTIME TECHNOLOGIES.
      *****************************************************************
      *           This program was generated by SimoZAPS              *
      *             A product of SimoTime Technologies                *
      *        Our e-mail address is: helpdesk@simotime.com           *
      *     Also, visit our Web Site at http://www.simotime.com       *
      *                                                               *
      *  Generation Date: 2022-09-06  Generation Time: 00:35:35:87    *
      *                                                               *
      *                                   Record    Record     Key    *
      *  Function  Name     Organization  Format    Max-Min  Pos-Len  *
      *  PRIMARY   RS0080D1 SEQUENTIAL    FIXED      00080            *
      *                                                               *
      *  SECONDARY RS0080D2 SEQUENTIAL    FIXED      00080            *
      *                                                               *
      *****************************************************************
       ENVIRONMENT DIVISION.
       INPUT-OUTPUT SECTION.
       FILE-CONTROL.
           SELECT RS0080D1-FILE  ASSIGN TO       RS0080D1
                  ORGANIZATION  IS SEQUENTIAL
                  ACCESS MODE   IS SEQUENTIAL
                  FILE STATUS   IS RS0080D1-STATUS.
           SELECT RS0080D2-FILE  ASSIGN TO       RS0080D2
                  ORGANIZATION  IS SEQUENTIAL
                  ACCESS MODE   IS SEQUENTIAL
                  FILE STATUS   IS RS0080D2-STATUS.

      *****************************************************************
       DATA DIVISION.
       FILE SECTION.
       FD  RS0080D1-FILE
           DATA RECORD    IS RS0080D1-REC
           .
       01  RS0080D1-REC.
           05  RS0080D1-DATA-01 PIC X(00080).

       FD  RS0080D2-FILE
           DATA RECORD    IS RS0080D2-REC
           .
       01  RS0080D2-REC.
           05  RS0080D2-DATA-01 PIC X(00080).

      *****************************************************************
      * This program was created using the SYSCOMP5.TXT file as the   *
      * template for the data file comparison. This program template  *
      * has the following characteristics.                            *
      * 1. The positions to be compared are determined during the     *
      *     program generation based on the &COMPARE statements in    *
      *     the Process Control File.                                 *
      * 2. The Hex-Dump information will be written to a Line         *
      *    Sequential (LSEQ) File using the SIMOL32K program.         *
      * 3. The DRECLMAX function is supported using this template.    *
      *                                                               *
      * For more information or questions please contact SimoTime     *
      * Technologies. The version control number is 21.04.01          *
      *                                                               *
      *        Our e-mail address is: helpdesk@simotime.com           *
      *     Also, visit our Web Site at http://www.simotime.com       *
      *****************************************************************
       WORKING-STORAGE SECTION.
       01  SIM-TITLE.
           05  T1 pic X(11) value '* CPRS80C1 '.
           05  T2 pic X(34) value 'Physical COMPARE of RSEQ/80 Files '.
           05  T3 pic X(10) value ' v22.01.01'.
           05  T4 pic X(24) value '   helpdesk@simotime.com'.
       01  SIM-COPYRIGHT.
           05  C1 pic X(11) value '* CPRS80C1 '.
           05  C2 pic X(32) value 'This Data File Compare Member wa'.
           05  C3 pic X(32) value 's generated by SimoTime Technolo'.
           05  C4 pic X(04) value 'gies'.

       01  SIM-THANKS-01.
           05  C1 pic X(11) value '* CPRS80C1 '.
           05  C2 pic X(32) value 'A Data File Compare Program gene'.
           05  C3 pic X(32) value 'rated by using SimoTime Technolo'.
           05  C4 pic X(04) value 'gies'.

       01  SIM-THANKS-02.
           05  C1 pic X(11) value '* CPRS80C1 '.
           05  C2 pic X(32) value 'Please send all comments or sugg'.
           05  C3 pic X(32) value 'estions to the helpdesk@simotime'.
           05  C4 pic X(04) value '.com'.

       01  RS0080D1-STATUS.
           05  RS0080D1-STATUS-L     pic X.
           05  RS0080D1-STATUS-R     pic X.
       01  RS0080D1-EOF              pic X       value 'N'.
       01  RS0080D1-OPEN-FLAG        pic X       value 'C'.
       01  RS0080D1-LRECL            pic 9(5)    value 00080.

       01  RS0080D2-STATUS.
           05  RS0080D2-STATUS-L     pic X.
           05  RS0080D2-STATUS-R     pic X.
       01  RS0080D2-EOF              pic X       value 'N'.
       01  RS0080D2-OPEN-FLAG        pic X       value 'C'.
       01  RS0080D2-LRECL            pic 9(5)    value 00080.

      *****************************************************************
      * The following buffers are used to create a four-byte status   *
      * code that may be displayed.                                   *
      *****************************************************************
       01  IO-STATUS.
           05  IO-STAT1            pic X.
           05  IO-STAT2            pic X.
       01  IO-STATUS-04.
           05  IO-STATUS-0401      pic 9     value 0.
           05  IO-STATUS-0403      pic 999   value 0.
       01  TWO-BYTES-BINARY        pic 9(4)  BINARY.
       01  TWO-BYTES-ALPHA         redefines TWO-BYTES-BINARY.
           05  TWO-BYTES-LEFT      pic X.
           05  TWO-BYTES-RIGHT     pic X.

      *****************************************************************
      * Message Buffer used by the Z-POST-MESSAGE-TO-USER routine.    *
      *****************************************************************
       01  MESSAGE-BUFFER.
           05  MESSAGE-HEADER      pic X(11)   value '* CPRS80C1 '.
           05  MESSAGE-TEXT.
               10  MESSAGE-TEXT-1  pic X(68)   value SPACES.
               10  MESSAGE-TEXT-2  pic X(188)  value SPACES.
       01  MSG-LSB                 pic 9(3)    value 267.

      *****************************************************************
       01  APPL-RESULT             pic S9(9)    comp.
           88  APPL-AOK            value 0.
           88  APPL-EOF            value 16.

       01  KEY-ACTIVE              pic X       value 'Y'.
       01  KEY-CONTROL-1.
           05  K-PS-1              pic 9(5)    value 00000.
           05  K-LN-1              pic 9(5)    value 00000.
       01  KEY-CONTROL-2.
           05  K-PS-2              pic 9(5)    value 00000.
           05  K-LN-2              pic 9(5)    value 00000.

       01  KEYRECID-ACTIVE         pic X       value 'N'.
       01  KEYRECID-CONTROL-1.
           05  E-PS-1              pic 9(5)    value 00000.
           05  E-LN-1              pic 9(5)    value 00000.
       01  KEYRECID-CONTROL-2.
           05  E-PS-2              pic 9(5)    value 00000.
           05  E-LN-2              pic 9(5)    value 00000.

       01  READ-FLAGS.
           05  READ-1          pic X       value 'Y'.
           05  READ-2          pic X       value 'Y'.
       01  DUMP-FLAGS.
           05  DUMP-RPI        pic X       value 'Y'.
           05  DUMP-ASC        pic X       value 'Y'.
           05  DUMP-EBC        pic X       value 'Y'.
           05  DUMP-HEX        pic X       value 'Y'.
           05  DUMP-DET-GRP.
               10  DUMP-DET    pic X       value 'Y'.
               10  DUMP-DET-2  pic XX      value 'NE'.
           05  DUMP-SUM        pic X       value 'Y'.
           05  DUMP-STATUS     pic x       VALUE 'Y'.
       01  DUMP-PGM            pic X(8)    value 'SIMOL32K'.

       01  DPOS-UT1            pic 9(5)    value 1.
       01  DLEN-UT1            pic 9(5)    value 00000.
       01  DPOS-UT2            pic 9(5)    value 1.
       01  DLEN-UT2            pic 9(5)    value 00000.

       01  FUNCTION-FLAGS.
           05  FF-01       pic X       value '1'.
           05  FF-02       pic X       value '0'.
           05  FF-03       pic X       value '0'.

       01  HTML-FONT-TAG-02.
           05  filler          pic x(13) value '<FONT STYLE="'.
           05  filler          pic x(08) value 'color: #'.
           05  FONT-02-CLR     pic x(06) value '000000'.
           05  filler          pic x(02) value '; '.
           05  filler          pic x(19) value 'background-color: #'.
           05  FONT-02-BG-CLR  pic x(06) value 'FFBFBF'.
           05  filler          pic x(02) value '">'.

       01  COMPACT-STATUS      pic XX        value 'EQ'.
       01  COMPACT-PENDED      pic XX        value 'EQ'.
       01  COMPARE-STATUS      pic XX        value 'EQ'.
       01  FLAG-EQ             pic XX        value 'EQ'.
       01  FLAG-NE             pic XX        value 'NE'.
       01  FLAG-QT             pic XX        value 'QT'.
       01  DELTA-LINE-1        pic X(00080)  value all '-'.
       01  DELTA-LINE-2        pic X(00080)  value all '-'.
       01  PTR-1               pic 9(5)      value 0.
       01  PTR-2               pic 9(5)      value 0.
       01  IDX-1               pic 9(5)      value 0.
       01  IDX-2               pic 9(5)      value 0.
       01  BYPASS-UT1-CTR      pic 9(3)      value 0.
       01  BYPASS-UT2-CTR      pic 9(3)      value 0.

       01  WORK-02-COMP            pic 9(4)  COMP.
       01  WORK-02-X               redefines WORK-02-COMP.
           05  WORK-02-X-X1        pic X.
           05  WORK-02-X-X2        pic X.

       01  WORK-05         pic X(5)    value SPACES.
       01  WORK-05-A       pic X(5)    value SPACES.
       01  WORK-05-E       pic X(5)    value SPACES.
       01  PTR-ZD-3        pic 999     value 0.
       01  PTR-A-ZD-3      pic 999     value 0.
       01  PTR-E-ZD-3      pic 999     value 0.
       01  A-FLAG          pic X       value 'N'.
       01  E-FLAG          pic X       value 'N'.

       01  DELTA-MAX-ABEND.
           05  FILLER          pic X(10)
                               value 'ABENDING, '.
           05  FILLER          pic X(24)
                               value 'Not Equal count exceeds '.
           05  FILLER          pic X(22)
                               value 'user-defined limit of '.
           05  DELTA-MAXIMUM-X pic X(9)
                               value '&&&&&&&&&'.
           05  DELTA-MAXIMUM   redefines DELTA-MAXIMUM-X
                               pic 9(9).
           05  FILLER          pic X(19)
                               value ', ABEND process is '.
           05  DELTA-PROCESS   pic X(4)
                               value 'EOF '.

       01  IFNECODE-GROUP.
           05  IFNECODE-VALUE  pic 9(4) value 0016.

       01 USER-RETURN-CODE-STMT.
          05  USER-RETURN-TEXT pic X(23)
                               value 'Program return code is '.
          05  USER-RETURN-CODE pic 9(4) value 0.

       01  YES-YES         pic XX      value 'YY'.
       01  N-BYTE          pic X       value 'N'.
       01  Y-BYTE          pic X       value 'Y'.
       01  GROUP-DELIMITER pic X       value 'Y'.

       01  POS-1           pic 9(5)    value 1.
       01  LEN-1           pic 9(5)    value 128.
       01  POS-2           pic 9(5)    value 1.
       01  LEN-2           pic 9(5)    value 128.

       01  RS0080D1-LRECL-M  pic 9(5)    value 00080.
       01  RS0080D2-LRECL-M  pic 9(5)    value 00080.

       01  D-LEN           pic 9(5)    value 00080.
       01  D-POS           pic 9(5)    value 1.

       01  W-LEN           pic 9(5)    value 0.
       01  W-POS           pic 9(5)    value 10.

       01  LEN-UT1         pic 9(5)    value 128.
       01  POS-UT1         pic 9(5)    value 1.
       01  LEN-UT2         pic 9(5)    value 128.
       01  POS-UT2         pic 9(5)    value 1.

       01  DUMP-RECL-MAX-S pic X       value 'N'.
       01  DUMP-RECL-MAX   pic 9(5)    value 00000.

       01  CONTINUE-FLAG   pic X       value 'Y'.

       01  ASC-OR-EBC      pic 9(3)    comp    value 0.
       01  ASC-OR-EBC-R    redefines ASC-OR-EBC.
           05  ASC-A       pic X.
           05  EBC-A       pic X.

      *    Header row for positional indicator...
       01  DUMP-H10.
           05  FILLER      pic X(5)    value '....:'.
           05  POS-NO      pic 9(5)    value 10.
           05  FILLER      pic X(10)   value '....:.....'.
       01  DUMP-W10.
           05  FILLER      pic X(5)    value '....:'.
           05  W10-POS-NO  pic X(5)    value '00000'.
           05  FILLER      pic X(10)   value '....:.....'.

       01  DUMP-HEADER     pic X(00080)  value all '.'.
       01  D-P1            pic 9(5)      value 0.
       01  WK-1            pic 9(5)      value 0.
       01  WK-2            pic 9(5)      value 0.

       01  RECORD-HEADER.
           05  RECORD-ID   pic X(8)    value 'RS0080D1'.
           05  filler      pic X(2)    value '..'.
           05  REC-NUMBER  pic 9(9)    value 0.
           05  filler      pic X       value '('.
           05  RECORD-POS  pic 9(5)    value 0.
           05  filler      pic X       value ':'.
           05  RECORD-LEN  pic 9(5)    value 0.
           05  filler      pic X(14)   value ') of possible '.
           05  RECORD-SIZE pic 9(5)    value 0.
           05  filler      pic X(10)   value ' bytes    '.
           05  REC-CTYPE   pic X(10)   value 'UNKNOWN   '.
           05  filler      pic X(2)    value SPACES.
           05  REC-CMODE   pic X(10)   value 'UNKNOWN   '.

       01  INFO-STATEMENT.
           05  filler      pic X(2)    value '* '.
           05  INFO-SHORT.
               10  INFO-ID pic X(8)    value 'Starting'.
               10  filler  pic X(4)    value '  - '.
               10  INFO-34 pic X(34)
                   value   'Physical COMPARE of RSEQ/80 Files '.
           05  filler      pic X(31)
               value '        http://www.SimoTime.com'.

       01  UT1-MISSING.
           05  filler      pic X(5)  value 'This '.
           05  filler      pic X(31)
                           value 'record is MISSING from RS0080D1'.
           05  filler      pic X(7)  value ' - the '.
           05  filler      pic X(29)
                           value 'record is PRESENT in RS0080D2'.

       01  UT2-MISSING.
           05  filler      pic X(5)  value 'This '.
           05  filler      pic X(29)
                           value 'record is PRESENT in RS0080D1'.
           05  filler      pic X(7)  value ' - the '.
           05  filler      pic X(31)
                           value 'record is MISSING from RS0080D2'.

       01  RS0080D1-TOTAL.
           05  RS0080D1-RDR  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  filler      pic X(25) value 'Record count for RS0080D1'.
       01  RS0080D2-TOTAL.
           05  RS0080D2-RDR  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  filler      pic X(25) value 'Record count for RS0080D2'.
       01  RS0080D1-OMIT.
           05  RS0080D1-OMT  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  filler      pic X(25) value 'Bypass count for RS0080D1'.
       01  RS0080D2-OMIT.
           05  RS0080D2-OMT  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  filler      pic X(25) value 'Bypass count for RS0080D2'.
       01  COMPARE-NE-TOTAL.
           05  COMPARE-NE  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  COMPARE-TAG.
               10  filler  pic X(25) value 'NOT Equal count for compa'.
               10  filler  pic X(25) value 're of existing records   '.
       01  COMPACT-NE-TOTAL.
           05  COMPACT-NE  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  COMPACT-TAG.
               10  filler  pic X(25) value 'NOT Equal count for compa'.
               10  filler  pic X(25) value 'ct of existing records   '.
       01  COMPARE-EQ-TOTAL.
           05  COMPARE-EQ  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  filler      pic X(25) value 'Number of matching record'.
           05  filler      pic X(25) value ' pairs for Compare Task  '.
       01  COMPACT-EQ-TOTAL.
           05  COMPACT-EQ  pic 9(9)  value 0.
           05  filler      pic X(3)  value ' - '.
           05  filler      pic X(25) value 'Number of matching record'.
           05  filler      pic X(25) value ' pairs for Compact Task  '.

       01  FORMAT-TYPE     pic X     value 'B'.

       COPY PASSULOG.
       COPY PAENVARS.
      *    USERDATA Definitions not specified.

      *****************************************************************
       PROCEDURE DIVISION.
           perform JOB-STARTING

           perform
               until COMPARE-STATUS = 'QT'
               or    RS0080D1-STATUS not = '00'
               or    RS0080D2-STATUS not = '00'
               if  READ-1 = 'Y'
                   perform RS0080D1-READ
               end-if
               if  READ-2 = 'Y'
                   perform RS0080D2-READ
               end-if
               if  RS0080D1-STATUS = '00'
               and RS0080D2-STATUS = '00'
                   move 'EQ' to COMPARE-STATUS
                   move 'N' to DUMP-STATUS
                   move all '-' to DELTA-LINE-1
                   move all '-' to DELTA-LINE-2
                   if  KEY-ACTIVE = 'Y'
                   and COMPARE-STATUS = FLAG-EQ
                       perform COMPARE-KEYS
                   end-if
                   if  COMPARE-STATUS = FLAG-EQ
                       perform COMPARE-RECORDS
                   end-if

                   if  DUMP-STATUS = 'Y'
                       if  GROUP-DELIMITER = 'Y'
                           perform DUMP-ASTERISK-ONE
                       end-if
                       add RS0080D1-LRECL-M to ZERO giving D-LEN
                       if  DUMP-RPI = 'Y'
                           perform DUMP-POSITION-INDICATOR
                       end-if
                       perform DUMP-PRIMARY-RECORD
                       perform DUMP-POSITION-DIFFERENCES-1
                       perform DUMP-SECONDARY-RECORD
                       perform DUMP-POSITION-DIFFERENCES-2
                       add RS0080D2-LRECL-M to ZERO giving D-LEN
                       move 'N' to DUMP-STATUS
                   end-if

                   if  COMPARE-STATUS = FLAG-NE
                       add 1 to COMPARE-NE
                   end-if
               else
                   if  RS0080D1-STATUS = '00'
                   or  RS0080D2-STATUS = '00'
                       if  KEY-ACTIVE = 'Y'
                           perform COMPARE-KEYS
                       end-if
                   end-if
                   move 'NE' to COMPARE-STATUS
               end-if
               if  COMPARE-STATUS = 'EQ'
                   add 1 to COMPARE-EQ
               end-if
               if  DELTA-PROCESS = 'QUIT'
               and COMPARE-NE > DELTA-MAXIMUM
                   perform JOB-FINISHED
                   move DELTA-MAX-ABEND to MESSAGE-TEXT
                   move 'POST' to ULOG-REQUEST
                   add 256 to ZERO giving ULOG-LENGTH
                   move MESSAGE-BUFFER to ULOG-MESSAGE
                   call DUMP-PGM using ULOG-PASS-AREA
                                       ULOG-MESSAGE
                   perform Z-ABEND-PROGRAM
               end-if
               if  DELTA-PROCESS = 'EOF '
               and COMPARE-NE > DELTA-MAXIMUM
                   move DELTA-MAX-ABEND to MESSAGE-TEXT
                   move 'POST' to ULOG-REQUEST
                   add 256 to ZERO giving ULOG-LENGTH
                   move MESSAGE-BUFFER to ULOG-MESSAGE
                   call DUMP-PGM using ULOG-PASS-AREA
                                       ULOG-MESSAGE
                   perform Z-POST-MESSAGE-TO-CONSOLE
                   move 'QT' to COMPARE-STATUS
               end-if
           end-perform

           perform JOB-FINISHED

           GOBACK.

      *****************************************************************
       COMPARE-RECORDS.
      *    Physical Comparison with NE Output of SIMOL32K
           move 'COMPARISON' to REC-CTYPE
           move 'PHYSICAL  ' to REC-CMODE
           move all '=' to DELTA-LINE-1(00001:00080)
           move all '=' to DELTA-LINE-2(00001:00080)
           if RS0080D1-REC(00001:00080) not = RS0080D2-REC(00001:00080)
              move FLAG-NE to COMPARE-STATUS
              move 'Y' to DUMP-STATUS
           end-if
           if  DUMP-DET    = 'Y'
           and DUMP-STATUS = 'Y'
               add 00001 to ZERO  giving POS-UT1
               add 00001 to ZERO  giving POS-UT2
               add 00080 to ZERO  giving LEN-UT1
               add 00080 to ZERO  giving LEN-UT2
               add 00080 to ZERO  giving ULOG-LENGTH
               perform CALC-DELTA-FOR-NE-EQ-NO
           end-if
           exit.


      *****************************************************************
       COMPARE-KEYS.
           move YES-YES to READ-FLAGS
           if  RS0080D1-REC(K-PS-1:K-LN-1)
            <  RS0080D2-REC(K-PS-2:K-LN-2)
               move N-BYTE to READ-2
               move FLAG-NE to COMPARE-STATUS
               if  COMPARE-NE < DELTA-MAXIMUM
               and DUMP-DET-GRP = 'YNE'
                   perform DUMP-SECONDARY-MISSING
               end-if
           end-if
           if  RS0080D1-REC(K-PS-1:K-LN-1)
            >  RS0080D2-REC(K-PS-2:K-LN-2)
               move N-BYTE to READ-1
               move FLAG-NE to COMPARE-STATUS
               if  COMPARE-NE < DELTA-MAXIMUM
               and DUMP-DET-GRP = 'YNE'
                   perform DUMP-PRIMARY-MISSING
               end-if
           end-if
           exit.

      *****************************************************************
       DUMP-ASTERISK-ONE.
           move SPACES       to ULOG-MESSAGE
           move 'TEXT'       to ULOG-REQUEST
           add 4 to ZERO giving ULOG-LENGTH
           move '*   '       to ULOG-MESSAGE(1:4)
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           exit.

      *****************************************************************
       DUMP-ASTERISK-ROW.
           move SPACES        to ULOG-MESSAGE
           move 'TEXT'        to ULOG-REQUEST
           add 79 to ZERO giving ULOG-LENGTH
           move all '*'       to ULOG-MESSAGE(1:ULOG-LENGTH)
           call DUMP-PGM   using ULOG-PASS-AREA ULOG-MESSAGE
           exit.

      *****************************************************************
      *    Build the position header row...
      *****************************************************************
       DUMP-POSITION-INDICATOR.
           add 10 to ZERO giving POS-NO
           subtract 1 from D-POS giving WK-1
           divide 10 into WK-1 giving WK-1 remainder WK-2
           add 1 to WK-2
           perform varying D-P1 from 1 by 10 until D-P1 > D-LEN - 10
               move DUMP-H10 to DUMP-W10
               inspect W10-POS-NO replacing leading ZEROES by '.'
               move DUMP-W10(WK-2:10) to DUMP-HEADER(D-P1:10)
               add 10 to POS-NO
           end-perform

           move 'TEXT'               to ULOG-REQUEST
           if  DUMP-RECL-MAX-S = 'Y'
           and DUMP-RECL-MAX   > 0
           and DUMP-RECL-MAX   < D-LEN
               add DUMP-RECL-MAX to ZERO giving ULOG-LENGTH
           else
               add D-LEN to ZERO giving ULOG-LENGTH
           end-if
           move DUMP-HEADER(1:ULOG-LENGTH) to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           exit.

      *****************************************************************
       DUMP-PRIMARY-MISSING.
           move 'RS0080D1-RDR='             to MESSAGE-TEXT
           move RS0080D1-RDR                to MESSAGE-TEXT(12:09)
           move RS0080D1-REC(K-PS-1:K-LN-1) to MESSAGE-TEXT(22:K-LN-1)
           perform Z-POST-MESSAGE-TO-SYSOUT
           move 'RS0080D2-RDR='             to MESSAGE-TEXT
           move RS0080D2-RDR                to MESSAGE-TEXT(12:09)
           move RS0080D2-REC(K-PS-2:K-LN-2) to MESSAGE-TEXT(22:K-LN-2)
           perform Z-POST-MESSAGE-TO-SYSOUT

           move 'TEXT' to ULOG-REQUEST
           add 79 to ZERO giving ULOG-LENGTH
           if  GROUP-DELIMITER = 'Y'
               move SPACES  to ULOG-MESSAGE
               move all '*' to ULOG-MESSAGE(1:79)
               call DUMP-PGM using ULOG-PASS-AREA
                                   ULOG-MESSAGE
           end-if
      *    Present in RS0080D2, missing from RS0080D1...
           move 'HYPE' to ULOG-REQUEST
           move UT1-MISSING to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA
                               ULOG-MESSAGE

           add RS0080D2-LRECL-M to ZERO giving D-LEN
           if  DUMP-RPI = 'Y'
               perform DUMP-POSITION-INDICATOR
           end-if
           perform DUMP-SECONDARY-RECORD
           move all '-' to DELTA-LINE-1(1:DLEN-UT1)
           move all '#' to DELTA-LINE-1(K-PS-1:K-LN-1)
           perform DUMP-POSITION-DIFFERENCES-1
           exit.

      *****************************************************************
       DUMP-PRIMARY-RECORD.
           add POS-UT1 to ZERO giving RECORD-POS
           add LEN-UT1 to ZERO giving RECORD-LEN
           add RS0080D1-LRECL-M to ZERO giving RECORD-SIZE
           add DPOS-UT1 to ZERO giving D-POS
           add DLEN-UT1 to ZERO giving D-LEN
           move 'RS0080D1..' to RECORD-ID
           add RS0080D1-RDR to ZERO giving REC-NUMBER

           move 'HYPE'         to ULOG-REQUEST
           add 128 to ZERO giving ULOG-LENGTH
           move RECORD-HEADER  to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           move 'DUMP'                    to ULOG-REQUEST
           if  DUMP-RECL-MAX-S = 'Y'
           and DUMP-RECL-MAX   > 0
           and DUMP-RECL-MAX   < RS0080D1-LRECL-M
               add DUMP-RECL-MAX to ZERO giving ULOG-LENGTH
           else
               add RS0080D1-LRECL-M to ZERO giving ULOG-LENGTH
           end-if
           call DUMP-PGM using ULOG-PASS-AREA
                               RS0080D1-REC
           exit.

      *****************************************************************
       DUMP-SECONDARY-MISSING.
           move 'RS0080D1-RDR='             to MESSAGE-TEXT
           move RS0080D1-RDR                to MESSAGE-TEXT(12:09)
           move RS0080D1-REC(K-PS-1:K-LN-1) to MESSAGE-TEXT(22:K-LN-1)
           perform Z-POST-MESSAGE-TO-SYSOUT
           move 'RS0080D2-RDR='             to MESSAGE-TEXT
           move RS0080D2-RDR                to MESSAGE-TEXT(12:09)
           move RS0080D2-REC(K-PS-2:K-LN-2) to MESSAGE-TEXT(22:K-LN-2)
           perform Z-POST-MESSAGE-TO-SYSOUT

           move 'TEXT' to ULOG-REQUEST
           add 79 to ZERO giving ULOG-LENGTH
           if  GROUP-DELIMITER = 'Y'
               move SPACES  to ULOG-MESSAGE
               move all '*' to ULOG-MESSAGE(1:79)
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           end-if
      *    Present in RS0080D1, missing from RS0080D2...
           move 'HYPE' to ULOG-REQUEST
           move UT2-MISSING to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           add RS0080D1-LRECL-M to ZERO giving D-LEN
           if  DUMP-RPI = 'Y'
               perform DUMP-POSITION-INDICATOR
           end-if
           perform DUMP-PRIMARY-RECORD
           move all '#' to DELTA-LINE-2(K-PS-2:K-LN-2)
           perform DUMP-POSITION-DIFFERENCES-2
           exit.

      *****************************************************************
       DUMP-SECONDARY-RECORD.
           add POS-UT2 to ZERO giving RECORD-POS
           add LEN-UT2 to ZERO giving RECORD-LEN
           add RS0080D2-LRECL-M to ZERO giving RECORD-SIZE
           add DPOS-UT2 to ZERO giving D-POS
           add DLEN-UT2 to ZERO giving D-LEN
           move 'RS0080D2..' to RECORD-ID
           add RS0080D2-RDR to ZERO giving REC-NUMBER

           move 'HYPE'         to ULOG-REQUEST
           add 128 to ZERO giving ULOG-LENGTH
           move RECORD-HEADER  to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           move 'DUMP'                    to ULOG-REQUEST
           if  DUMP-RECL-MAX-S = 'Y'
           and DUMP-RECL-MAX   > 0
           and DUMP-RECL-MAX   < RS0080D2-LRECL-M
               add DUMP-RECL-MAX to ZERO giving ULOG-LENGTH
           else
               add RS0080D2-LRECL-M to ZERO giving ULOG-LENGTH
           end-if
           call DUMP-PGM using ULOG-PASS-AREA
                               RS0080D2-REC
           exit.

      *****************************************************************
       DUMP-POSITION-CALCULATIONS.
           add POS-1 to ZERO giving PTR-1
           add POS-2 to ZERO giving PTR-2
           perform until PTR-1 > POS-1 + LEN-1 - 1
                      or PTR-2 > POS-2 + LEN-2 - 1
               if RS0080D1-REC(PTR-1:1)
                = RS0080D2-REC(PTR-2:1)
                  move '=' to DELTA-LINE-1(PTR-1:1)
                  move '=' to DELTA-LINE-2(PTR-2:1)
               else
                  move '#' to DELTA-LINE-1(PTR-1:1)
                  move '#' to DELTA-LINE-2(PTR-2:1)
               end-if
               add 1 to PTR-1
               add 1 to PTR-2
           end-perform
           exit.
      *****************************************************************
       CALC-DELTA-FOR-NE-EQ-NO.
           add POS-UT1 to ZERO giving PTR-1
           add POS-UT2 to ZERO giving PTR-2
           perform until PTR-1 > POS-UT1 + LEN-UT1 - 1
                      or PTR-2 > POS-UT2 + LEN-UT2 - 1
               if RS0080D1-REC(PTR-1:1)
                = RS0080D2-REC(PTR-2:1)
                  move '=' to DELTA-LINE-1(PTR-1:1)
                  move '=' to DELTA-LINE-2(PTR-2:1)
               else
                  move '#' to DELTA-LINE-1(PTR-1:1)
                  move '#' to DELTA-LINE-2(PTR-2:1)
               end-if
               add 1 to PTR-1
               add 1 to PTR-2
           end-perform
           exit.

      *****************************************************************
       DUMP-POSITION-DIFFERENCES-1.
           move 'TEXT' to ULOG-REQUEST
           if  DUMP-RECL-MAX-S = 'Y'
           and DUMP-RECL-MAX   > 0
           and DUMP-RECL-MAX   < RS0080D1-LRECL-M
               add DUMP-RECL-MAX to ZERO giving ULOG-LENGTH
           else
               add RS0080D1-LRECL-M to ZERO giving ULOG-LENGTH
           end-if
           add 1 to ZERO giving PTR-1
           if  ULOG-SYSLOG-FORMAT = 'HTML'
               move HTML-FONT-TAG-02 to ULOG-MESSAGE(PTR-1:ULOG-LENGTH)
               add length of HTML-FONT-TAG-02 to PTR-1
           end-if
           move DELTA-LINE-1(1:ULOG-LENGTH)
                                     to ULOG-MESSAGE(PTR-1:ULOG-LENGTH)
           if  ULOG-SYSLOG-FORMAT = 'HTML'
               inspect ULOG-MESSAGE replacing first '       '
                                                 by '</FONT>'
               add 7 to ULOG-LENGTH
               add length of HTML-FONT-TAG-02 to ULOG-LENGTH
           end-if
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           exit.

      *****************************************************************
       DUMP-POSITION-DIFFERENCES-2.
           move 'TEXT' to ULOG-REQUEST
           if  DUMP-RECL-MAX-S = 'Y'
           and DUMP-RECL-MAX   > 0
           and DUMP-RECL-MAX   < RS0080D2-LRECL-M
               add DUMP-RECL-MAX to ZERO giving ULOG-LENGTH
           else
               add RS0080D2-LRECL-M to ZERO giving ULOG-LENGTH
           end-if
           add 1 to ZERO giving PTR-1
           if  ULOG-SYSLOG-FORMAT = 'HTML'
               move HTML-FONT-TAG-02 to ULOG-MESSAGE(PTR-1:ULOG-LENGTH)
               add length of HTML-FONT-TAG-02 to PTR-1
           end-if
           move DELTA-LINE-2(1:ULOG-LENGTH)
                                     to ULOG-MESSAGE(PTR-1:ULOG-LENGTH)
           if  ULOG-SYSLOG-FORMAT = 'HTML'
               add ULOG-LENGTH to PTR-1
               move '</FONT>' to ULOG-MESSAGE(PTR-1:7)
               add 7 to ULOG-LENGTH
               add length of HTML-FONT-TAG-02 to ULOG-LENGTH
           end-if
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           exit.

      *****************************************************************
       JOB-FINISHED.
           if  RS0080D1-STATUS = '00'
           and DELTA-PROCESS   = 'EOF '
               perform until RS0080D1-STATUS not = '00'
                 perform RS0080D1-READ
                 add 1 to COMPARE-NE
               end-perform
           end-if
           if  RS0080D2-STATUS = '00'
           and DELTA-PROCESS   = 'EOF '
               perform until RS0080D2-STATUS not = '00'
                 perform RS0080D2-READ
                 add 1 to COMPARE-NE
               end-perform
           end-if
           if  RS0080D2-OPEN-FLAG = 'O'
               perform RS0080D2-CLOSE
           end-if
           if  RS0080D1-OPEN-FLAG = 'O'
               perform RS0080D1-CLOSE
           end-if

           move 'POST' to ULOG-REQUEST
           add 80 to ZERO giving ULOG-LENGTH

           if  GROUP-DELIMITER = 'Y'
               move SPACES  to ULOG-MESSAGE
      *        call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
               move all '*' to ULOG-MESSAGE(1:79)
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           end-if

           move 'Conclude' to INFO-ID
           move INFO-SHORT to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           move 'Finished' to INFO-ID

           move RS0080D1-TOTAL to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           if  RS0080D1-OMT > ZERO
               move RS0080D1-OMIT to ULOG-MESSAGE
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           end-if

           move RS0080D2-TOTAL to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           if  RS0080D2-OMT > ZERO
               move RS0080D2-OMIT to ULOG-MESSAGE
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           end-if

           if  RS0080D1-RDR not = RS0080D2-RDR
               move 'WARNING!  - Record counts are not equal'
                 to ULOG-MESSAGE
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
               move 'ABENDING' to INFO-ID
           end-if

           if  FF-01 = '1'
               if  COMPARE-NE = 0
                   inspect COMPARE-TAG
                   replacing first ' of existing records '
                                by ' is ZERO             '
               else
                   move 'ABENDING' to INFO-ID
               end-if
               move COMPARE-NE-TOTAL to ULOG-MESSAGE
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
               move COMPARE-EQ-TOTAL to ULOG-MESSAGE
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           end-if

           if  FF-02 = '1'
               if  COMPACT-NE = 0
                   inspect COMPACT-TAG
                   replacing first ' of existing records '
                                by ' is ZERO             '
               else
                   move 'ABENDING' to INFO-ID
               end-if
               move COMPACT-NE-TOTAL to ULOG-MESSAGE
               call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           end-if

           if  RS0080D1-EOF not = 'Y'
           or  RS0080D2-EOF not = 'Y'
               move 'ABENDING' to INFO-ID
           end-if

           perform DUMP-ASTERISK-ROW
           move INFO-STATEMENT to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           perform DUMP-ASTERISK-ONE

      *    move INFO-SHORT to MESSAGE-TEXT
      *    perform Z-POST-MESSAGE-TO-SYSOUT

           perform Z-THANK-YOU.

           move 'WRAP' to ULOG-REQUEST
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           if  COMPARE-NE > 0
           or  RS0080D1-RDR not = RS0080D2-RDR
               add IFNECODE-VALUE to ZERO giving RETURN-CODE
           end-if

           add RETURN-CODE to ZERO giving USER-RETURN-CODE
           move USER-RETURN-CODE-STMT to MESSAGE-TEXT
           perform Z-POST-MESSAGE-TO-USER
           exit.

      *****************************************************************
       JOB-STARTING.
           perform Z-POST-COPYRIGHT
           perform Z-DETERMINE-ENVIRONMENT
           perform RS0080D1-OPEN
           perform RS0080D2-OPEN
           move 'Y' to READ-1
           move 'Y' to READ-2
           if  DELTA-MAXIMUM not numeric
               add 100 to ZERO giving DELTA-MAXIMUM
           end-if
           if  K-PS-1 > 0
           and K-PS-2 > 0
           and K-LN-1 > 0
           and K-LN-2 > 0
               move 'Y' to KEY-ACTIVE
               move 'Key control is ENABLED...'
                 to MESSAGE-TEXT
           else
               move 'N' to KEY-ACTIVE
               move 'Key control is NOT enabled...'
                 to MESSAGE-TEXT
           end-if
           perform Z-POST-MESSAGE-TO-SYSOUT

           move 'PREP' to ULOG-REQUEST
           move SPACES        to ULOG-MESSAGE
           move 'SIMOL32K'    to ULOG-SYSLOG-MODE
           move 'HTML'        to ULOG-SYSLOG-FORMAT
           move 'DISABLED'    to ULOG-SYSOUT-MODE
           move 'TEXT'        to ULOG-SYSOUT-FORMAT
           move 'DISABLED'    to ULOG-SYSCON-MODE
           move 'TEXT'        to ULOG-SYSCON-FORMAT
           move 'Y'           to ULOG-DUMP-ASC
           move 'Y'           to ULOG-DUMP-HEX
           move 'Y'           to ULOG-DUMP-EBC
           move 'Y'           to ULOG-DUMP-RPI
           move 'Y'           to ULOG-DUMP-DTL

           move DUMP-ASC      to ULOG-DUMP-ASC
           move DUMP-EBC      to ULOG-DUMP-EBC
           move DUMP-HEX      to ULOG-DUMP-HEX

           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           move 'MAKE' to ULOG-REQUEST
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE

           move 'POST' to ULOG-REQUEST
           add 79 to ZERO giving ULOG-LENGTH
           move all '*' to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           move SIM-TITLE to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           move SIM-COPYRIGHT to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           move all '*' to ULOG-MESSAGE(1:79)
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           move INFO-STATEMENT to ULOG-MESSAGE
           call DUMP-PGM using ULOG-PASS-AREA ULOG-MESSAGE
           exit.

      *****************************************************************
      * I/O Routines for the Primary File...                          *
      *****************************************************************
       RS0080D1-CLOSE.
           add 8 to ZERO giving APPL-RESULT.
           close RS0080D1-FILE
           if  RS0080D1-STATUS = '00'
               subtract APPL-RESULT from APPL-RESULT
           else
               add 12 to ZERO giving APPL-RESULT
           end-if
           if  APPL-AOK
               CONTINUE
           else
               move 'CLOSE Failure with RS0080D1' to MESSAGE-TEXT
               perform Z-POST-MESSAGE-TO-USER
               move RS0080D1-STATUS to IO-STATUS
               perform Z-DISPLAY-IO-STATUS
               perform Z-ABEND-PROGRAM
           end-if
           exit.
      *---------------------------------------------------------------*
       RS0080D1-READ.
           read RS0080D1-FILE
           if  RS0080D1-STATUS = '00'
               subtract APPL-RESULT from APPL-RESULT
               add 1 to RS0080D1-RDR
           else
               if  RS0080D1-STATUS = '10'
                   add 16 to ZERO giving APPL-RESULT
               else
                   add 12 to ZERO giving APPL-RESULT
               end-if
           end-if
           if  APPL-AOK
               CONTINUE
           else
               if  APPL-EOF
                   move 'Y' to RS0080D1-EOF
               else
                   move 'READ Failure with RS0080D1' to MESSAGE-TEXT
                   perform Z-POST-MESSAGE-TO-USER
                   move RS0080D1-STATUS to IO-STATUS
                   perform Z-DISPLAY-IO-STATUS
                   perform Z-ABEND-PROGRAM
               end-if
           end-if
           exit.
      *---------------------------------------------------------------*
       RS0080D1-OPEN.
           add 8 to ZERO giving APPL-RESULT.
           open input RS0080D1-FILE
           if  RS0080D1-STATUS = '00'
               subtract APPL-RESULT from APPL-RESULT
               move 'O' to RS0080D1-OPEN-FLAG
           else
               add 12 to ZERO giving APPL-RESULT
           end-if
           if  APPL-AOK
               CONTINUE
           else
               move 'OPEN Failure with RS0080D1' to MESSAGE-TEXT
               perform Z-POST-MESSAGE-TO-CONSOLE
               perform Z-POST-MESSAGE-TO-USER
               move RS0080D1-STATUS to IO-STATUS
               perform Z-DISPLAY-IO-STATUS
               perform Z-ABEND-PROGRAM
           end-if
           exit.

      *****************************************************************
      * I/O Routines for the Secondary File...                        *
      *****************************************************************
       RS0080D2-READ.
           read RS0080D2-FILE
           if  RS0080D2-STATUS = '00'
               subtract APPL-RESULT from APPL-RESULT
               add 1 to RS0080D2-RDR
           else
               if  RS0080D2-STATUS = '10'
                   add 16 to ZERO giving APPL-RESULT
               else
                   add 12 to ZERO giving APPL-RESULT
               end-if
           end-if.
           if  APPL-AOK
               CONTINUE
           else
               if  APPL-EOF
                   move 'Y' to RS0080D2-EOF
               else
                   move 'READ Failure with RS0080D2' to MESSAGE-TEXT
                   perform Z-POST-MESSAGE-TO-USER
                   move RS0080D2-STATUS to IO-STATUS
                   perform Z-DISPLAY-IO-STATUS
                   perform Z-ABEND-PROGRAM
               end-if
           end-if
           exit.
      *---------------------------------------------------------------*
       RS0080D2-OPEN.
           add 8 to ZERO giving APPL-RESULT.
           open input RS0080D2-FILE
           if  RS0080D2-STATUS = '00'
               subtract APPL-RESULT from APPL-RESULT
               move 'O' to RS0080D2-OPEN-FLAG
           else
               add 12 to ZERO giving APPL-RESULT
           end-if
           if  APPL-AOK
               CONTINUE
           else
               move 'OPEN Failure with RS0080D2' to MESSAGE-TEXT
               perform Z-POST-MESSAGE-TO-CONSOLE
               perform Z-POST-MESSAGE-TO-USER
               move RS0080D2-STATUS to IO-STATUS
               perform Z-DISPLAY-IO-STATUS
               perform Z-ABEND-PROGRAM
           end-if
           exit.
      *---------------------------------------------------------------*
       RS0080D2-CLOSE.
           add 8 to ZERO giving APPL-RESULT.
           close RS0080D2-FILE
           if  RS0080D2-STATUS = '00'
               subtract APPL-RESULT from APPL-RESULT
               move 'C' to RS0080D2-OPEN-FLAG
           else
               add 12 to ZERO giving APPL-RESULT
           end-if
           if  APPL-AOK
               CONTINUE
           else
               move 'CLOSE Failure with RS0080D2' to MESSAGE-TEXT
               perform Z-POST-MESSAGE-TO-USER
               move RS0080D2-STATUS to IO-STATUS
               perform Z-DISPLAY-IO-STATUS
               perform Z-ABEND-PROGRAM
           end-if
           exit.

      *****************************************************************
      * The following Z-ROUTINES provide administrative functions     *
      * for this program.                                             *
      *****************************************************************
      * ABEND the program, post a message to the console and issue    *
      * a STOP RUN.                                                   *
      *****************************************************************
       Z-ABEND-PROGRAM.
           if  MESSAGE-TEXT not = SPACES
               perform Z-POST-MESSAGE-TO-USER
           end-if
           move 'PROGRAM-IS-ABENDING...'  to MESSAGE-TEXT
           perform Z-POST-MESSAGE-TO-USER
           add 12 to ZERO giving RETURN-CODE
           STOP RUN.
      *    exit.

      *****************************************************************
       Z-DETERMINE-ENVIRONMENT.
           add 16833 to ASC-OR-EBC
           if  ASC-A = 'A'
               move 'Compiled for an ASCII environment...'
                 to MESSAGE-TEXT
           else
               if  EBC-A = 'A'
                   move 'Compiled for an EBCDIC environment...'
                     to MESSAGE-TEXT
               else
                   move 'Compiled for an UNKNOWN environment...'
                     to MESSAGE-TEXT
               end-if
           end-if
           perform Z-POST-MESSAGE-TO-USER
           exit.

      *****************************************************************
       Z-CALCULATE-MESSAGE-LSB.
           if  MESSAGE-TEXT-2 = SPACES
               add  79 to ZERO giving MSG-LSB
           else
               add 267 to ZERO giving MSG-LSB
           end-if
           perform until MSG-LSB < 80
                      or MESSAGE-BUFFER(MSG-LSB:1) not = SPACE
             if MESSAGE-BUFFER(MSG-LSB:1) = SPACE
                subtract 1 from MSG-LSB
             end-if
           end-perform
           exit.

      *****************************************************************
      * Display message to SYSOUT device...                           *
      *****************************************************************
       Z-POST-MESSAGE-TO-SYSOUT.
           perform Z-CALCULATE-MESSAGE-LSB
           display MESSAGE-BUFFER(1:MSG-LSB)
           move all SPACES to MESSAGE-TEXT
           exit.

      *****************************************************************
      * Display message to CONSOLE device...                          *
      *****************************************************************
       Z-POST-MESSAGE-TO-CONSOLE.
           perform Z-CALCULATE-MESSAGE-LSB
           display MESSAGE-BUFFER(1:MSG-LSB) upon console
           exit.

      *****************************************************************
       Z-POST-MESSAGE-TO-USER.
           perform Z-POST-MESSAGE-TO-CONSOLE
           perform Z-POST-MESSAGE-TO-SYSOUT
           exit.

      *****************************************************************
      * Display the file status bytes. This routine will display as   *
      * four digits. If the full two byte file status is numeric it   *
      * will display as 00nn. If the 1st byte is a numeric nine (9)   *
      * the second byte will be treated as a binary number and will   *
      * display as 9nnn.                                              *
      *****************************************************************
       Z-DISPLAY-IO-STATUS.
           if  IO-STATUS not NUMERIC
           or  IO-STAT1 = '9'
               move IO-STAT1 to IO-STATUS-04(1:1)
               subtract TWO-BYTES-BINARY from TWO-BYTES-BINARY
               move IO-STAT2 to TWO-BYTES-RIGHT
               add TWO-BYTES-BINARY to ZERO giving IO-STATUS-0403
               move 'File Status is: nnnn' to MESSAGE-TEXT
               move IO-STATUS-04 to MESSAGE-TEXT(17:4)
               perform Z-POST-MESSAGE-TO-USER
           else
               move '0000' to IO-STATUS-04
               move IO-STATUS to IO-STATUS-04(3:2)
               move 'File Status is: nnnn' to MESSAGE-TEXT
               move IO-STATUS-04 to MESSAGE-TEXT(17:4)
               perform Z-POST-MESSAGE-TO-USER
           end-if
           exit.

      *****************************************************************
       Z-POST-COPYRIGHT.
           move SIM-TITLE to MESSAGE-BUFFER
           perform Z-POST-MESSAGE-TO-SYSOUT
           move SIM-COPYRIGHT to MESSAGE-BUFFER
           perform Z-POST-MESSAGE-TO-SYSOUT
           exit.

      *****************************************************************
       Z-THANK-YOU.
           move SIM-THANKS-01 to MESSAGE-BUFFER
           perform Z-POST-MESSAGE-TO-SYSOUT
           move SIM-THANKS-02 to MESSAGE-BUFFER
           perform Z-POST-MESSAGE-TO-SYSOUT
           exit.
      *****************************************************************
      *           This program was generated by SimoZAPS              *
      *             A product of SimoTime Technologies                *
      *        Our e-mail address is: helpdesk@simotime.com           *
      *     Also, visit our Web Site at http://www.simotime.com       *
      *                                                               *
      *  Generation Date: 2022-09-06  Generation Time: 00:35:35:93    *
      *****************************************************************

Table of Contents Previous Section Next Section Summary

This document shows the content of an ASCII/Text file that has a record structure that uses a Comma-Separated-Values (CSV) format. This document may be used to assist as a tutorial for new programmers or as a quick reference for experienced programmers.

In the world of programming there are many ways to solve a problem. This documentation and software were developed and tested on systems that are configured for a SIMOTIME environment based on the hardware, operating systems, user requirements and security requirements. Therefore, adjustments may be needed to execute the jobs and programs when transferred to a system of a different architecture or configuration.

SIMOTIME Services has experience in moving or sharing data or application processing across a variety of systems. For additional information about SIMOTIME Services or Technologies please contact us using the information in the  Contact, Comment or Feedback  section of this document.

Table of Contents Previous Section Next Section Software Agreement and Disclaimer

Permission to use, copy, modify and distribute this software, documentation or training material for any purpose requires a fee to be paid to SimoTime Technologies. Once the fee is received by SimoTime the latest version of the software, documentation or training material will be delivered and a license will be granted for use within an enterprise, provided the SimoTime copyright notice appear on all copies of the software. The SimoTime name or Logo may not be used in any advertising or publicity pertaining to the use of the software without the written permission of SimoTime Technologies.

SimoTime Technologies makes no warranty or representations about the suitability of the software, documentation or learning material for any purpose. It is provided "AS IS" without any expressed or implied warranty, including the implied warranties of merchantability, fitness for a particular purpose and non-infringement. SimoTime Technologies shall not be liable for any direct, indirect, special or consequential damages resulting from the loss of use, data or projects, whether in an action of contract or tort, arising out of or in connection with the use or performance of this software, documentation or training material.

Table of Contents Previous Section Next Section Downloads and Links

This section includes links to documents with additional information that are beyond the scope and purpose of this document. The first group of documents may be available from a local system or via an Internet connection, the second group of documents will require an Internet connection.

Note: A SIMOTIME License is required for the items to be made available on a local system or server.

Table of Contents Previous Section Next Section Current Server or Internet Access

The following links may be to the current server or to the Internet.

Note: The latest versions of the SimoTime Documents and Program Suites are available on the Internet and may be accessed using the Link to Internet icon. If a user has a SimoTime Enterprise License the Documents and Program Suites may be available on a local server and accessed using the Link to Server icon.

Link to Internet   Link to Server   Explore An Enterprise System Model that describes and demonstrates how Applications that were running on a Mainframe System and non-relational data that was located on the Mainframe System were copied and deployed in a Microsoft Windows environment with Micro Focus Enterprise Server.

Link to Internet   Link to Server   Explore The Binary or COMP format for numeric data strings. This numeric structure is supported by COBOL and may be explicitly defined with the "USAGE IS COMP" or "USAGE IS BINARY" clause.

Link to Internet   Link to Server   Explore The Packed-Decimal or COMP-3 format for numeric data strings. This numeric structure is supported by COBOL and may be explicitly defined with the "USAGE IS COMP-3" clause.

Link to Internet   Link to Server   Explore The Zoned-Decimal format for numeric data strings. This numeric structure is the default numeric for COBOL and may be explicitly defined with the "USAGE IS DISPLAY" clause.

Link to Internet   Link to Server   Explore How to Generate a Data File Convert Program using simple specification statements in a Process Control File (PCF). This link to the User Guide includes the information necessary to create a Process Control File and generate the COBOL programs that will do the actual data file conversion. The User Guide contains a list of the PCF statements that are used for the data file convert process.

Link to Internet   Link to Server   Explore How to Generate a Data File Compare, Validate or Hex-Dump Program using simple specification statements in a Process Control File (PCF). This link to the User Guide includes the information necessary to create a Process Control File and generate the COBOL programs that will do a data file compare, accumulate summary totals with a record count or produce a Hex-Dump of records in a VSAM, KSDS based on a list of user-defined keys. The User Guide contains a list of the PCF statements that are used for the data file compare, validate or dump process.

Link to Internet   Link to Server   Explore the COBOL Connection for more examples of COBOL programming techniques and sample code.

Link to Internet   Link to Server   Explore The ASCII and EBCDIC Translation Tables. These tables are provided for individuals that need to better understand the bit structures and differences of the encoding formats.

Link to Internet   Link to Server   Explore The File Status Return Codes to interpret the results of accessing VSAM data sets and/or QSAM files.

Table of Contents Previous Section Next Section Internet Access Required

The following links will require an Internet connection.

A good place to start is The SimoTime Home Page for access to white papers, program examples and product information. This link requires an Internet Connection

Explore The Micro Focus Web Site for more information about products (including Micro Focus COBOL) and services available from Micro Focus. This link requires an Internet Connection.

Explore the GnuCOBOL Technologies available from SourceForge. SourceForge is an Open Source community resource dedicated to helping open source projects be as successful as possible. GnuCOBOL (formerly OpenCOBOL) is a COBOL compiler with run time support. The compiler (cobc) translates COBOL source to executable using intermediate C, designated C compiler and linker. This link will require an Internet Connection.

Table of Contents Previous Section Next Section Glossary of Terms

Link to Internet   Link to Server   Explore the Glossary of Terms for a list of terms and definitions used in this suite of documents and white papers.

Table of Contents Previous Section Next Section Contact, Comments or Feedback

This document was created and is maintained by SimoTime Technologies and Services. If you have any questions, suggestions, comments or feedback please use the following contact information.

1. Send an e-mail to our helpdesk.
1.1. helpdesk@simotime.com.
2. Our telephone numbers are as follows.
2.1. 1 415 763-9430 office-helpdesk
2.2. 1 415 827-7045 mobile

 

We appreciate hearing from you.

Table of Contents Previous Section Next Section Company Overview

SimoTime Technologies was founded in 1987 and is a privately owned company. We specialize in the creation and deployment of business applications using new or existing technologies and services. We have a team of individuals that understand the broad range of technologies being used in today's environments. Our customers include small businesses using Internet technologies to corporations using very large mainframe systems.

Quite often, to reach larger markets or provide a higher level of service to existing customers it requires the newer Internet technologies to work in a complementary manner with existing corporate mainframe systems. We specialize in preparing applications and the associated data that are currently residing on a single platform to be distributed across a variety of platforms.

Preparing the application programs will require the transfer of source members that will be compiled and deployed on the target platform. The data will need to be transferred between the systems and may need to be converted and validated at various stages within the process. SimoTime has the technology, services and experience to assist in the application and data management tasks involved with doing business in a multi-system environment.

Whether you want to use the Internet to expand into new market segments or as a delivery vehicle for existing business functions simply give us a call or check the web site at http://www.simotime.com


Return-to-Top
CPRS80C1 - COBOL Source Member
Copyright © 1987-2023
SimoTime Technologies and Services
All Rights Reserved
When technology complements business
http://www.simotime.com