Create Generic Test Data
Customer Names and Addresses
  Table of Contents  v-24.01.01 - obfaid01.htm 
  Introduction
  CMD Files, CSV to Fixed-Field Format
  Female First Names
  Male First Names
  Last Names
  Street Names
  Postal Codes
  Data Files
  People Names
  First Names File for Females
  First Names File for Males
  The Last Names File
  The Street Names File
  The Postal Codes File
  Summary
  Software Agreement and Disclaimer
  Downloads and Links
  Current Server or Internet Access
  Internet Access Required
  Glossary of Terms
  Contact or Feedback
  Company Overview
The SimoTime Home Page 

Table of Contents Previous Section Next Section Introduction

The primary purpose of this suite of programs and procedures is to provide the information required to build a Customer Master File that may be used in the test and development environment. The names and addresses should not be associated with any real person. The primary pieces of customer information are stored in various Excel spreadsheets and saved in the Comma-Separated-Values (CSV) format.

The following is a list of the files that are created from the Excel spreadsheet data.

File Name Description
FNAMEF01 This is the file of first names for females. The file is sequenced by popularity in the United States.
FNAMEM01 This is the file of first names for males. The file is sequenced by popularity in the United States.
LASTNAME This is the file of surnames (or last names). The file is sequenced by popularity in the United States.
STREET01 This is a file with street names. The number for the address is randomly generated.
POSTCODE This is a file with Zip codes for the United States. Each Zip code record contains the associated city and telephone area codes
  List of the Input Files used when Generating a Customer Master File for Testing

The CSV Files are read and converted to Record Sequential files with fixed-field and fixed-record lengths.


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-2024
SimoTime Technologies and Services
All Rights Reserved

Table of Contents Previous Section Next Section CMD Files, CSV to Fixed-Field Format

This suite has six (6) command file scripts. The primary command sets the environment and calls the five (5) secondary commands that perform the tasks of converting the CSV formatted files to sequential files with fixed-field-length (FFL) format.

@echo OFF
rem  * *******************************************************************
rem  *               OBFAIDE1.CMD - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2019 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Convert CSV Files to Sequential with Fixed-Fields.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * The job will copy or restore the sequential files used to create
rem  * a customer master file of generic data. Five files will be restored
rem  * by reading the CSV files that are maintained in a suite of Excel
rem  * spreadsheets. The following is a list of the files.
rem  *
rem  * 1. Female First Names - %BASECAT%\APPL\SIMOTIME.DATA.FNAMEF01.DAT
rem  * 2. Male First Names   - %BASECAT%\APPL\SIMOTIME.DATA.FNAMEM01.DAT
rem  * 3. People Last Names  - %BASECAT%\APPL\SIMOTIME.DATA.LASTNAME.DAT
rem  * 4. Street Names       - %BASECAT%\APPL\SIMOTIME.DATA.STREET01.DAT
rem  * 5. Postal Code Names  - %BASECAT%\APPL\SIMOTIME.DATA.POSTCODE.DAT
rem  *
rem  * *******************************************************************
rem  * Prepare the Environment.
rem  *
     set CmdName=OBFAIDE1
     call ..\..\Env1BASE %CmdName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
     set JobStatus=0000
     set TaskStatus=0000
rem  *
     call SimoNOTE "*******************************************************%CmdName%"
     call SimoNOTE "Starting CmdName %CmdName%"
rem  *
rem  * *******************************************************************
     call OBACARE1 bypass
     if %JobStatus% == 0000 set JobStatus=%TaskStatus%
rem  *
     call OBACARE2 bypass
     if %JobStatus% == 0000 set JobStatus=%TaskStatus%
rem  *
     call OBACARE3 bypass
     if %JobStatus% == 0000 set JobStatus=%TaskStatus%
rem  *
     call OBACARE4 bypass
     if %JobStatus% == 0000 set JobStatus=%TaskStatus%
rem  *
     call OBACARE5 bypass
     if %JobStatus% == 0000 set JobStatus=%TaskStatus%
rem  *
rem  * *******************************************************************
:EojAok
     call SimoNOTE "Finished JobName %CmdName%, Job Status is %JobStatus%"
     goto :End
:EojNok
     call SimoNOTE "ABENDING JobName %CmdName%, Job Status is %JobStatus%"
:End
     if not "%1" == "nopause" pause

Table of Contents Previous Section Next Section Female First Names

The following member (OBACARE1.cmd) is the Command script that will convert a file containing a list of female first names. The input file is a line sequential (or ASCII/Text) file with a record structure of fields separated (or delimited) by a comma (CSV Format). The output is a record sequential file with a fixed record structure of fixed-field-lengths (FFL Format). The record length is 32 bytes.

@echo OFF
rem  * *******************************************************************
rem  *               OBACARE1.cmd - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2019 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Convert Female First Names from LCSV/ASC to RSEQ/ASC.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * The job will read a 32-byte file that contains female first names.
rem  *
rem  * The job will read an ASCII/Text (LSEQ or LCSV) file containing
rem  * records that are formatted using Comma-Separated-Values.
rem  *
rem  * The records will be converted to a Fixed-Field-Length (FFL) and
rem  * written to a new Record Sequential (RSEQ) file.
rem  *
rem  *                    ************
rem  *                    * OBACARE1 *
rem  *                    ********cmd*
rem  *                         *
rem  *                         *
rem  *   ************     ************     ************
rem  *   * FNAMEF01 *-----* OBF632C1 *-----* FNAMEF01 *   CSV to FFL
rem  *   * GETCSV32 *     * OBF632R1 *     * PUTFFL32 *
rem  *   ********csv*     ********cbl*     ********dat*
rem  *                         *
rem  *                         *
rem  *                    ************
rem  *                    *   EOJ    *
rem  *                    ************
rem  *
rem  * *******************************************************************
rem  * Prepare the Environment.
rem  *
     set TaskName=OBACARE1
     if not "%1" == "bypass" call ..\..\Env1BASE %TaskName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
     set TaskStatus=0000
rem  *
     call SimoNOTE "*******************************************************%TaskName%"
     call SimoNOTE "Starting Task Name %TaskName%"
rem  *
rem  * *******************************************************************
     call SimoNOTE "TaskInfo File Conversion for Female First Names"
     set GETCSV32=%BASECAT%\XLSS\SIMOTIME.DATA.FNAMEF01.CSV
     set PUTFFL32=%BASECAT%\APPL\SIMOTIME.DATA.FNAMEF01.DAT
     run OBF632C1
     if not "%ERRORLEVEL%" == "0" goto :EojNok
rem  *
:EojAok
     call SimoNOTE "DataMAKE %PUTFFL32%"
     call SimoNOTE "Finished Task Name %TaskName%, Task Status is %TaskStatus%"
     goto :End
:EojNok
     set TaskStatus=0016
     call SimoNOTE "DataMAKE %PUTFFL32%"
     call SimoNOTE "ABENDING Task Name %TaskName%, Task Status is %TaskStatus%"
:End
     if not "%1" == "bypass" pause

Table of Contents Previous Section Next Section Male First Names

The following member (OBACARE2.cmd) is the Command script that will convert a file containing a list of male first names. The input file is a line sequential (or ASCII/Text) file with a record structure of fields separated (or delimited) by a comma (CSV Format). The output is a record sequential file with a fixed record structure of fixed-field-lengths (FFL Format). The record length is 32 bytes.

@echo OFF
rem  * *******************************************************************
rem  *               OBACARE2.cmd - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2019 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Convert Male First Names from LCSV/ASC to RSEQ/ASC.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * The job will read a 32-byte file that contains male first names.
rem  *
rem  * The job will read an ASCII/Text (LSEQ or LCSV) file containing
rem  * records that are formatted using Comma-Separated-Values.
rem  *
rem  * The records will be converted to a Fixed-Field-Length (FFL) and
rem  * written to a new Record Sequential (RSEQ) file.
rem  *
rem  *                    ************
rem  *                    * OBACARE2 *
rem  *                    ********cmd*
rem  *                         *
rem  *                         *
rem  *   ************     ************     ************
rem  *   * FNAMEM01 *-----* OBF632C1 *-----* FNAMEM01 *   CSV to FFL
rem  *   * GETCSV32 *     * OBF632R1 *     * PUTFFL32 *
rem  *   ********csv*     ********cbl*     ********dat*
rem  *                         *
rem  *                         *
rem  *                    ************
rem  *                    *   EOJ    *
rem  *                    ************
rem  *
rem  * *******************************************************************
rem  * Prepare the Environment.
rem  *
     set TaskName=OBACARE2
     if not "%1" == "bypass" call ..\..\Env1BASE %TaskName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
     set TaskStatus=0000
rem  *
     call SimoNOTE "*******************************************************%TaskName%"
     call SimoNOTE "Starting Task Name %TaskName%"
rem  *
rem  * *******************************************************************
     call SimoNOTE "TaskInfo File Conversion for Male First Names"
     set GETCSV32=%BASECAT%\XLSS\SIMOTIME.DATA.FNAMEM01.CSV
     set PUTFFL32=%BASECAT%\APPL\SIMOTIME.DATA.FNAMEM01.DAT
     run OBF632C1
     if not "%ERRORLEVEL%" == "0" goto :EojNok
rem  *
:EojAok
     call SimoNOTE "DataMAKE %PUTFFL32%"
     call SimoNOTE "Finished Task Name %TaskName%, Task Status is %TaskStatus%"
     goto :End
:EojNok
     set TaskStatus=0016
     call SimoNOTE "DataMAKE %PUTFFL32%"
     call SimoNOTE "ABENDING Task Name %TaskName%, Task Status is %TaskStatus%"
:End
     if not "%1" == "bypass" pause

Table of Contents Previous Section Next Section Last Names

The following member (OBACARE3.cmd) is the Command script that will convert a file containing a list of individual last names. The input file is a line sequential (or ASCII/Text) file with a record structure of fields separated (or delimited) by a comma (CSV Format). The output is a record sequential file with a fixed record structure of fixed-field-lengths (FFL Format). The record length is 32 bytes.

@echo OFF
rem  * *******************************************************************
rem  *               OBACARE3.cmd - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2019 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Convert Individual last Names from LCSV/ASC to RSEQ/ASC.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * The job reads a 32-byte file that contains individual last names.
rem  *
rem  * The job will read an ASCII/Text (LSEQ or LCSV) file containing
rem  * records that are formatted using Comma-Separated-Values.
rem  *
rem  * The records will be converted to a Fixed-Field-Length (FFL) and
rem  * written to a new Record Sequential (RSEQ) file.
rem  *
rem  *                    ************
rem  *                    * OBACARE3 *
rem  *                    ********cmd*
rem  *                         *
rem  *                         *
rem  *   ************     ************     ************
rem  *   * LASTNAME *-----* OBF632C1 *-----* LASTNAME *   CSV to FFL
rem  *   * GETCSV32 *     * OBF632R1 *     * PUTFFL32 *
rem  *   ********csv*     ********cbl*     ********dat*
rem  *                         *
rem  *                         *
rem  *                    ************
rem  *                    *   EOJ    *
rem  *                    ************
rem  *
rem  * *******************************************************************
rem  * Prepare the Environment.
rem  *
     set TaskName=OBACARE3
     if not "%1" == "bypass" call ..\..\Env1BASE %TaskName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
     set TaskStatus=0000
rem  *
     call SimoNOTE "*******************************************************%TaskName%"
     call SimoNOTE "Starting Task Name %TaskName%"
rem  *
rem  * *******************************************************************
     call SimoNOTE "TaskInfo File Conversion for Individual Last Names"
     set GETCSV32=%BASECAT%\XLSS\SIMOTIME.DATA.LASTNAME.CSV
     set PUTFFL32=%BASECAT%\APPL\SIMOTIME.DATA.LASTNAME.DAT
     run OBF632C1
     if not "%ERRORLEVEL%" == "0" goto :EojNok
rem  *
:EojAok
     call SimoNOTE "DataMAKE %PUTFFL32%"
     call SimoNOTE "Finished Task Name %TaskName%, Task Status is %TaskStatus%"
     goto :End
:EojNok
     set TaskStatus=0016
     call SimoNOTE "DataMAKE %PUTFFL32%"
     call SimoNOTE "ABENDING Task Name %TaskName%, Task Status is %TaskStatus%"
:End
     if not "%1" == "bypass" pause

Table of Contents Previous Section Next Section Street Names

The following member (OBACARE4.cmd) is the Command script that will convert a file containing a list of street names. The input file is a line sequential (or ASCII/Text) file with a record structure of fields separated (or delimited) by a comma (CSV Format). The output is a record sequential file with a fixed record structure of fixed-field-lengths (FFL Format). The record length is 80 bytes.

@echo OFF
rem  * *******************************************************************
rem  *               OBACARE4.cmd - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2019 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Convert Street Names from LCSV/ASC to RSEQ/ASC.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * The job reads a 80-byte file that contains street names.
rem  *
rem  * The job will read an ASCII/Text (LSEQ or LCSV) file containing
rem  * records that are formatted using Comma-Separated-Values.
rem  *
rem  * The records will be converted to a Fixed-Field-Length (FFL) and
rem  * written to a new Record Sequential (RSEQ) file.
rem  *
rem  *                    ************
rem  *                    * OBACARE4 *
rem  *                    ********cmd*
rem  *                         *
rem  *                         *
rem  *   ************     ************     ************
rem  *   * STREET01 *-----* OBF680C1 *-----* STREET01 *   CSV to FFL
rem  *   * GETCSV80 *     * OBF680R1 *     * PUTFFL80 *
rem  *   ********csv*     ********cbl*     ********dat*
rem  *                         *
rem  *                         *
rem  *                    ************
rem  *                    *   EOJ    *
rem  *                    ************
rem  *
rem  * *******************************************************************
rem  * Prepare the Environment.
rem  *
     set TaskName=OBACARE4
     if not "%1" == "bypass" call ..\..\Env1BASE %TaskName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
     set TaskStatus=0000
rem  *
     call SimoNOTE "*******************************************************%TaskName%"
     call SimoNOTE "Starting Task Name %TaskName%"
rem  *
rem  * *******************************************************************
     call SimoNOTE "TaskInfo File Conversion for Street Names"
     set GETCSV80=%BASECAT%\XLSS\SIMOTIME.DATA.STREET01.CSV
     set PUTFFL80=%BASECAT%\APPL\SIMOTIME.DATA.STREET01.DAT
     run OBF680C1
     if not "%ERRORLEVEL%" == "0" goto :EojNok
rem  *
:EojAok
     call SimoNOTE "DataMAKE %PUTFFL80%"
     call SimoNOTE "Finished Task Name %TaskName%, Task Status is %TaskStatus%"
     goto :End
:EojNok
     set TaskStatus=0016
     call SimoNOTE "DataMAKE %PUTFFL80%"
     call SimoNOTE "ABENDING Task Name %TaskName%, Task Status is %TaskStatus%"
:End
     if not "%1" == "bypass" pause

Table of Contents Previous Section Next Section Postal Codes

The following member (OBACARE5.cmd) is the Command script that will convert a file containing a list of postal codes with the City, State and Zip information. The input file is a line sequential (or ASCII/Text) file with a record structure of fields separated (or delimited) by a comma (CSV Format). The output is a record sequential file with a fixed record structure of fixed-field-lengths (FFL Format). The record length is 80 bytes.

@echo OFF
rem  * *******************************************************************
rem  *               OBACARE5.cmd - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2019 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Convert Postal Codes from LCSV/ASC to RSEQ/ASC.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * The job reads a 80-byte file that contains postal codes.
rem  *
rem  * The job will read an ASCII/Text (LSEQ or LCSV) file containing
rem  * records that are formatted using Comma-Separated-Values.
rem  *
rem  * The records will be converted to a Fixed-Field-Length (FFL) and
rem  * written to a new Record Sequential (RSEQ) file.
rem  *
rem  *                    ************
rem  *                    * OBACARE5 *
rem  *                    ********cmd*
rem  *                         *
rem  *                         *
rem  *   ************     ************     ************
rem  *   * POSTCODE *-----* OBFPCDC1 *-----* POSTCODE *   CSV to FFL
rem  *   * GETCSV80 *     * OBFPCDR1 *     * PUTFFL80 *
rem  *   ********csv*     ********cbl*     ********dat*
rem  *                         *
rem  *                         *
rem  *                    ************
rem  *                    *   EOJ    *
rem  *                    ************
rem  *
rem  * *******************************************************************
rem  * Prepare the Environment.
rem  *
     set TaskName=OBACARE5
     if not "%1" == "bypass" call ..\..\Env1BASE %TaskName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
     set TaskStatus=0000
rem  *
     call SimoNOTE "*******************************************************%TaskName%"
     call SimoNOTE "Starting Task Name %TaskName%"
rem  *
rem  * *******************************************************************
     call SimoNOTE "TaskInfo File Conversion for Postal Codes"
     set GETCSV80=%BASECAT%\XLSS\SIMOTIME.DATA.POSTCODE.CSV
     set PUTFFL80=%BASECAT%\APPL\SIMOTIME.DATA.POSTCODE.DAT
     run OBFPCDC1
     if not "%ERRORLEVEL%" == "0" goto :EojNok
rem  *
:EojAok
     call SimoNOTE "DataMAKE %PUTFFL80%"
     call SimoNOTE "Finished Task Name %TaskName%, Task Status is %TaskStatus%"
     goto :End
:EojNok
     set TaskStatus=0016
     call SimoNOTE "DataMAKE %PUTFFL80%"
     call SimoNOTE "ABENDING Task Name %TaskName%, Task Status is %TaskStatus%"
:End
     if not "%1" == "bypass" pause

Table of Contents Previous Section Next Section Data Files

As stated earlier the primary purpose of this suite of programs and procedures is to provide the information required to build a Customer Master File that may be used in the test and development environment. The names and addresses should not be associated with any real person. To do this a number of secondary files are used. There are three files that contain people names (First names for Females, First names for males and last names). There is a file for street names and the street numbers are randomly generated. There is a file of City, State and Postal Codes that is what may be obtained from the Postal Service. There is a Control File that may be configured to determine program behavior and what options are enabled.

The following sections will describe these secondary files.

Table of Contents Previous Section Next Section People Names

There are three (3) files containing "First and Last Names" for individuals. The female first names, male first names and last names are in separate files. The format of the files are the same.

The following COBOL copy file (OBF632B1.cpy) shows the record structure for the files containing people names.

      *****************************************************************
      *               OBF632B1.CPY - a COBOL Copy File                *
      *         Copyright (C) 1987-2019 SimoTime Technologies         *
      *                     All Rights Reserved                       *
      *              Provided by SimoTime Technologies                *
      *        Our e-mail address is: helpdesk@simotime.com           *
      *     Also, visit our Web Site at http://www.simotime.com       *
      *****************************************************************
      *
       01  OBF632-RECORD.
           05  OBF632-NUMBER          PIC 9(6).                         COL-A
           05  OBF632-STRING          PIC X(26).                        COL-B
      *
      ***  OBF632B1 - End-of-Copy File - - - - - - - - - - - OBF632B1 *
      *****************************************************************
      *

Table of Contents Previous Section Next Section First Names File for Females

This is a record sequential file containing fixed length records of 32 bytes. The first six positions of each record is a sequence number. Positions 7-32 is a 26 byte text string containing a female first name. The first name is left-justified with trailing spaces.

Table of Contents Previous Section Next Section First Names File for Males

This is a record sequential files containing fixed length records of 32 bytes. The first six positions of each record is a sequence number. Positions 7-32 is a 26 byte text string containing a male first name. The first name is left-justified with trailing spaces.

Table of Contents Previous Section Next Section The Last Names File

This is a record sequential file containing fixed length records of 32 bytes. The first six positions of each record is a sequence number. Positions 7-32 is a 26 byte text string containing a last name. The last name is left-justified with trailing spaces.

Table of Contents Previous Section Next Section The Street Names File

This is a record sequential file containing fixed length records of 80 bytes. The first six positions of each record is a sequence number. Positions 7-80 is a 74 byte text string containing a street name. The street name is left-justified with trailing spaces.

The following COBOL copy file (OBF680B1.cpy) shows the record structure for the files containing street names.

      *****************************************************************
      *               OBF680B1.CPY - a COBOL Copy File                *
      *         Copyright (C) 1987-2019 SimoTime Technologies         *
      *                     All Rights Reserved                       *
      *              Provided by SimoTime Technologies                *
      *        Our e-mail address is: helpdesk@simotime.com           *
      *     Also, visit our Web Site at http://www.simotime.com       *
      *****************************************************************
      *
       01  OBF680-RECORD.
           05  OBF680-NUMBER          PIC 9(6).                         COL-A
           05  OBF680-STRING          PIC X(74).                        COL-B
      *
      ***  OBF680B1 - End-of-Copy File - - - - - - - - - - - OBF680B1 *
      *****************************************************************
      *

Table of Contents Previous Section Next Section The Postal Codes File

This is a record sequential file containing fixed length records of 80 bytes. The first six positions of each record is a sequence number. Positions 7-80 is a 74 byte text string containing the City, State and Zip code values. The following COBOL copy file (OBFPCDB1.cpy) shows the format of the records in the Postal Codes file.

      *****************************************************************
      *               OBFPCDB1.CPY - a COBOL Copy File                *
      *            Record Structure for Postal Code File              *
      *         Copyright (C) 1987-2019 SimoTime Technologies         *
      *                     All Rights Reserved                       *
      *              Provided by SimoTime Technologies                *
      *        Our e-mail address is: helpdesk@simotime.com           *
      *     Also, visit our Web Site at http://www.simotime.com       *
      *****************************************************************
      *
       01  POSTCODE-REC.
           05  POSTCODE-DATA-01.
               10  POSTCODE-KEY            pic 9(6).
               10  POSTCODE-ZIP-10.
                   15  POSTCODE-ZIP-05     pic X(5).
                   15  POSTCODE-ZIP-EXT    pic X(5).
               10  POSTCODE-CITY           pic X(27).
               10  POSTCODE-STATE-GROUP.
                   15  POSTCODE-STATE      pic X(2).
                   15  POSTCODE-STATE-EXT  pic X(5).
               10  POSTCODE-AREA-CODES     pic X(30).
      *
      ***  OBFPCDB1 - End-of-Copy File - - - - - - - - - - - OBFPCDB1 *
      *****************************************************************
      *

Table of Contents Previous Section Next Section Summary

The primary purpose of this suite of programs and procedures is to provide the information required to build a Customer Master File that may be used in the test and development environment. This document may be used 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 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 How to Create a New or Update an Existing Customer Data Set that is a VSAM Key-Sequenced-Data-Set (KSDS). This document will describe the jobs and programs that create and maintain a Customer Data Set. The program will run on an IBM Mainframe System or a Linux, UNIX or Windows System with Micro Focus COBOL Support.

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

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 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 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 that are used 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 connect.

This suite of programs and documentation is available to download for review and evaluation purposes. Other uses will require a SimoTime Software License. Link to an Evaluation zPAK Option that includes the program members, documentation and control files.

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.

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 or Feedback

This document was created and is maintained by SimoTime Technologies. 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
Sample Template for HTMGENER, ZEROHTMG - a Zero Reference Baseline
Copyright © 1987-2024
SimoTime Technologies and Services
All Rights Reserved
When technology complements business
http://www.simotime.com