Edit a Street-Address Field SimoROAD - The COBOL Source Code |
The SimoTime Home Page |
This document provides a listing of the COBOL source code for the SIMOROAD Member. Additional information about this program may be obtained by sending an e-mail to: helpdesk@simotime.com .
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
This is an example of a callable COBOL program that will edit and modify a text string (or field) that contains a street address (oriented for the United States). This program is an example to show a possible technique to use.
The following shows some examples of the original content of an address string and the modified results produced by the callable SIMOROAD program,
| ||||||||||||||||||
Samples of the "Edit and Modify" Functions of the SIMOROAD Program |
To call the routine (SIMOROAD) the fields for the pass area need to be initialized. The following shows an example of initializing the pass area fields and making the call.
* Prepare the Pass Area and make the call to SIMOROAD move 'SIMOROAD' to RDPA-REQUEST move 'INP ' to RDPA-ADR1-CNTL move '123 MAIN STREET' to RDPA-ADR1-DATA call 'SIMOROAD' using ROAD-PASS-AREA * Upon return from the preceding call the content of the * RDPA-ADR2-DATA field will contain the following. * 123 Main Street
Upon return from the preceding call the content of the RDPA-ADR2-DATA field will contain the following.
123 Main Street
Note: The COBOL copy file that defines the data structure used as the pass area is included in a later section of this document.
The following (SIMOROAD.cbl) is the COBOL Source Code.
IDENTIFICATION DIVISION. PROGRAM-ID. SIMOROAD. AUTHOR. SIMOTIME TECHNOLOGIES. ***************************************************************** * Copyright (C) 1987-2019 SimoTime Technologies. * * * * All rights reserved. Unpublished, all rights reserved under * * copyright law and international treaty. Use of a copyright * * notice is precautionary only and does not imply publication * * or disclosure. * * * * Permission to use, copy, modify and distribute this software * * for any non-commercial purpose and without fee is hereby * * granted, 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. * * * * Permission to use, copy, modify and distribute this software * * for any commercial purpose requires a fee to be paid to * * SimoTime Technologies. Once the fee is received by SimoTime * * the latest version of the software 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 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 * * * * SimoTime Technologies * * 15 Carnoustie Drive * * Novato, CA 94949-5849 * * 415.883.6565 * * * * RESTRICTED RIGHTS LEGEND * * Use, duplication, or disclosure by the Government is subject * * to restrictions as set forth in subparagraph (c)(1)(ii) of * * the Rights in Technical Data and Computer Software clause at * * DFARS 52.227-7013 or subparagraphs (c)(1) and (2) of * * Commercial Computer Software - Restricted Rights at 48 * * CFR 52.227-19, as applicable. Contact SimoTime Technologies, * * 15 Carnoustie Drive, Novato, CA 94949-5849. * * * ***************************************************************** * This program is provided by SimoTime Technologies * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * * * ***************************************************************** * Source Member: SIMOROAD.CBL * Copy Files: PASSPARS.CPY * Calls to: SIMOPARS ***************************************************************** * MAINTENANCE * ----------- * 1994/02/27 Simmons, Created program. * 1994/03/17 Simmons, Fixed bug to correct recalculation of the * size of the edited street address. * ***************************************************************** DATA DIVISION. WORKING-STORAGE SECTION. 01 SIM-TITLE. 05 T1 pic X(11) value '* SIMOROAD '. 05 T2 pic X(32) value 'Processing a Street Address '. 05 T3 pic X(10) value ' v08.03.28'. 05 T4 pic X(24) value ' http://www.simotime.com'. 01 SIM-COPYRIGHT. 05 C1 pic X(11) value '* SIMOROAD '. 05 C2 pic X(20) value 'Copyright 1987-2019 '. 05 C3 pic X(28) value ' SimoTime Technologies '. 05 C4 pic X(20) value ' All Rights Reserved'. 01 MESSAGE-BUFFER. 05 MESSAGE-HEADER pic X(11) value '* SIMOROAD '. 05 MESSAGE-TEXT. 10 MESSAGE-TEXT-1 pic X(68) value SPACES. 10 MESSAGE-TEXT-2 pic X(188) value SPACES. 01 WORD-14 pic X(14) value SPACES. 01 WORD-12 pic X(12) value SPACES. 01 WORD-SIZE pic 9(5) value 0. 01 X1 pic 9(5) value 0. 01 X2 pic 9(5) value 0. 01 X3 pic 9(5) value 0. 01 LOWER-CASE pic X(26) value 'abcdefghijklmnopqrstuvwxyz'. 01 UPPER-CASE pic X(26) value 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'. ***************************************************************** * The following copy file is the pass area for calling SIMOPARS, * the field parsing routine. ***************************************************************** COPY PASSPARS. ***************************************************************** LINKAGE SECTION. COPY PASSROAD. ***************************************************************** PROCEDURE DIVISION using ROAD-PASS-AREA. * perform Z-POST-COPYRIGHT move 'UNK ' to RDPA-ADR2-CNTL move SPACES to RDPA-ADR2-DATA add 16 to ZERO giving RDPA-RESULT evaluate RDPA-ADR1-CNTL when 'INP ' perform PROCESS-STREET-ADDRESS when OTHER perform Z-ABEND-INVALID-REQUEST end-evaluate GOBACK. ***************************************************************** * The following routines are in alphabetical sequence.. * ***************************************************************** * This routine is used for debugging purposes, ***************************************************************** ADDR-FUNCTION-DISPLAY-WORDS. * Display the contents of the parsing tables. add 1 to ZERO giving X1 perform until PRS-SIZE(X1) = 0 or PRS-POSITION(X1) = 0 or X1 > PRS-TABLE-MAX or X1 > PRS-NUMBER-OF-ITEMS move X1 to MESSAGE-TEXT(6:5) move PRS-POSITION(X1) to MESSAGE-TEXT(19:4) move PRS-SIZE(X1) to MESSAGE-TEXT(32:4) if PRS-SIZE(X1) < 20 move PRS-BUFFER(PRS-POSITION(X1):PRS-SIZE(X1)) to MESSAGE-TEXT(50:PRS-SIZE(X1)) else move PRS-BUFFER(PRS-POSITION(X1):19) to MESSAGE-TEXT(50:19) end-if perform Z-DISPLAY-CONSOLE-MESSAGE add 1 to X1 end-perform exit. ***************************************************************** * Call the SIMOPARS routine to parse the Street Addres ***************************************************************** ADDR-FUNCTION-PARSE. *> Prepare control items for parsing. move '0' to PRS-REQUEST add 9 to ZERO giving PRS-STATUS move ' ' to PRS-DELIMITER move 'N' to PRS-TERMINATOR move ' ' to PRS-TERMINATOR-BYTE add 32 to ZERO giving PRS-TABLE-MAX if RDPA-ADR1-SIZE > 0 add RDPA-ADR1-SIZE to ZERO giving PRS-BUFFER-SIZE else add 48 to ZERO giving PRS-BUFFER-SIZE end-if move ZERO to PRS-NUMBER-OF-ITEMS *> Move the data string to the parsing buffer and call *> the parsing routine. move RDPA-ADR1-DATA to PRS-BUFFER call 'SIMOPARS' using PRS-PARAMETERS if PRS-STATUS not = 0 move 'Parsing Failure of Address Field' to MESSAGE-TEXT perform Z-ABEND-PROGRAM end-if exit. ***************************************************************** BUILD-NEW-STREET-ADDRESS. move SPACES to RDPA-ADR2-DATA inspect PRS-BUFFER(1:PRS-BUFFER-SIZE) converting UPPER-CASE to LOWER-CASE add 1 to ZERO giving X1 add 1 to ZERO giving X2 perform until PRS-SIZE(X1) = 0 or PRS-POSITION(X1) = 0 or X1 > PRS-TABLE-MAX or X1 > PRS-NUMBER-OF-ITEMS if PRS-BUFFER(PRS-POSITION(X1):1) is NUMERIC move PRS-BUFFER(PRS-POSITION(X1):PRS-SIZE(X1)) to RDPA-ADR2-DATA(X2:PRS-SIZE(X1)) inspect RDPA-ADR2-DATA(X2:PRS-SIZE(X1)) converting LOWER-CASE to UPPER-CASE add PRS-SIZE(X1) to X2 add 1 to X2 else perform BUILD-NEW-STREET-ADDRESS-100 end-if add 1 to X1 end-perform exit. *---------------------------------------------------------------* BUILD-NEW-STREET-ADDRESS-100. if PRS-BUFFER(PRS-POSITION(X1):1) = 'p' and PRS-SIZE(X1) < 5 move SPACES to WORD-14 move PRS-BUFFER(PRS-POSITION(X1):PRS-SIZE(X1)) to WORD-14 perform BUILD-NEW-STREET-POSSIBLE-POB else perform BUILD-NEW-STREET-NORMAL-WORD end-if exit. *---------------------------------------------------------------* BUILD-NEW-STREET-POSSIBLE-POB. evaluate WORD-14 when 'pob ' perform BUILD-NEW-STREET-POSSIBLE-PO-1 when 'pobox ' perform BUILD-NEW-STREET-POSSIBLE-PO-1 when 'p.o.box ' perform BUILD-NEW-STREET-POSSIBLE-PO-1 when 'pob. ' perform BUILD-NEW-STREET-POSSIBLE-PO-1 when 'po ' perform BUILD-NEW-STREET-POSSIBLE-PO-2 when 'p.o. ' perform BUILD-NEW-STREET-POSSIBLE-PO-2 when 'p. ' perform BUILD-NEW-STREET-POSSIBLE-PO-3 when 'p ' perform BUILD-NEW-STREET-POSSIBLE-PO-3 when 'post ' perform BUILD-NEW-STREET-POSSIBLE-PO-3 when OTHER perform BUILD-NEW-STREET-NORMAL-WORD end-evaluate exit. *---------------------------------------------------------------* BUILD-NEW-STREET-POSSIBLE-PO-1. move 'POB ' to RDPA-ADR2-CNTL move 'P.O. Box ' to RDPA-ADR2-DATA(X2:9) add 9 to X2 subtract RDPA-RESULT from RDPA-RESULT exit. *---------------------------------------------------------------* BUILD-NEW-STREET-POSSIBLE-PO-2. add X1 to 1 giving X3 if PRS-POSITION(X3) > 0 and PRS-SIZE(X3) > 0 if PRS-BUFFER(PRS-POSITION(X3):4) = 'box ' move 'POB ' to RDPA-ADR2-CNTL move 'P.O. Box ' to RDPA-ADR2-DATA(X2:9) add 1 to X1 add 9 to X2 subtract RDPA-RESULT from RDPA-RESULT else if PRS-BUFFER(PRS-POSITION(X3):1) is NUMERIC move 'POB ' to RDPA-ADR2-CNTL move 'P.O. Box ' to RDPA-ADR2-DATA(X2:9) add 9 to X2 subtract RDPA-RESULT from RDPA-RESULT else move 'PO? ' to RDPA-ADR2-CNTL perform BUILD-NEW-STREET-NORMAL-WORD subtract RDPA-RESULT from RDPA-RESULT end-if end-if end-if exit. *---------------------------------------------------------------* BUILD-NEW-STREET-POSSIBLE-PO-3. add X1 to 1 giving X3 if PRS-POSITION(X3) > 0 and PRS-SIZE(X3) > 0 if PRS-BUFFER(PRS-POSITION(X3):2) = 'o ' or PRS-BUFFER(PRS-POSITION(X3):3) = 'o. ' or PRS-BUFFER(PRS-POSITION(X3):7) = 'office ' add 1 to X3 if PRS-BUFFER(PRS-POSITION(X3):4) = 'box ' and PRS-POSITION(X3) > 0 and PRS-SIZE(X3) > 0 move 'POB ' to RDPA-ADR2-CNTL move 'P.O. Box ' to RDPA-ADR2-DATA(X2:9) add 2 to X1 add 9 to X2 subtract RDPA-RESULT from RDPA-RESULT else if PRS-BUFFER(PRS-POSITION(X3):1) is NUMERIC move 'POB ' to RDPA-ADR2-CNTL move 'P.O. Box ' to RDPA-ADR2-DATA(X2:9) add 9 to X2 subtract RDPA-RESULT from RDPA-RESULT else move 'PO? ' to RDPA-ADR2-CNTL perform BUILD-NEW-STREET-NORMAL-WORD subtract RDPA-RESULT from RDPA-RESULT end-if end-if else perform BUILD-NEW-STREET-NORMAL-WORD end-if end-if exit. *---------------------------------------------------------------* BUILD-NEW-STREET-NORMAL-WORD. *> Test for possible word substitution... move SPACES to WORD-12 if PRS-SIZE(X1) < 13 move PRS-BUFFER(PRS-POSITION(X1):PRS-SIZE(X1)) to WORD-12 perform BUILD-NEW-STREET-SUB-WORD-ALL end-if if WORD-12 = SPACES move PRS-BUFFER(PRS-POSITION(X1):PRS-SIZE(X1)) to RDPA-ADR2-DATA(X2:PRS-SIZE(X1)) inspect RDPA-ADR2-DATA(X2:1) converting LOWER-CASE to UPPER-CASE add PRS-SIZE(X1) to X2 add 1 to X2 subtract RDPA-RESULT from RDPA-RESULT else move WORD-12(1:WORD-SIZE) to RDPA-ADR2-DATA(X2:WORD-SIZE) if PRS-POSITION(X1) = 1 inspect RDPA-ADR2-DATA(X2:1) converting LOWER-CASE to UPPER-CASE end-if add WORD-SIZE to X2 add 1 to X2 subtract RDPA-RESULT from RDPA-RESULT end-if exit. *---------------------------------------------------------------* BUILD-NEW-STREET-SUB-WORD-ALL. evaluate WORD-12 when 'ave ' move 'Avenue ' to WORD-12 add 6 to ZERO giving WORD-SIZE when 'ave. ' move 'Avenue ' to WORD-12 add 6 to ZERO giving WORD-SIZE when 'bl ' move 'Blvd ' to WORD-12 add 4 to ZERO giving WORD-SIZE when 'bl. ' move 'Blvd ' to WORD-12 add 4 to ZERO giving WORD-SIZE when 'de ' move 'de ' to WORD-12 add 2 to ZERO giving WORD-SIZE when 'la ' move 'la ' to WORD-12 add 2 to ZERO giving WORD-SIZE when 'of ' move 'of ' to WORD-12 add 2 to ZERO giving WORD-SIZE when 'and ' move 'and ' to WORD-12 add 3 to ZERO giving WORD-SIZE when 'the ' move 'the ' to WORD-12 add 3 to ZERO giving WORD-SIZE when 'macdougal ' move 'MacDougal' to WORD-12 add 9 to ZERO giving WORD-SIZE when OTHER move SPACES to WORD-12 end-evaluate exit. ***************************************************************** CALCULATE-BUFFER-SIZE-01. add PRS-NUMBER-OF-ITEMS to ZERO giving X1 add PRS-POSITION(X1) to PRS-SIZE(X1) giving RDPA-ADR1-SIZE subtract 1 from RDPA-ADR1-SIZE exit. ***************************************************************** CALCULATE-BUFFER-SIZE-02. if RDPA-ADR2-DATA = SPACES move ZERO to RDPA-ADR2-SIZE else add length of RDPA-ADR2-DATA to ZERO giving X1 add length of RDPA-ADR2-DATA to ZERO giving X3 perform until X1 not = X3 or X1 < 4 divide X3 by 2 giving X1 if X1 > 0 if RDPA-ADR2-DATA(X1 + 1:X3 - X1) = SPACES add X1 to ZERO giving X3 end-if end-if end-perform add 1 to ZERO giving RDPA-ADR2-SIZE move ZERO to X2 perform until X2 = X3 add 1 to X2 if RDPA-ADR2-DATA(X2:1) not = SPACE add X2 to ZERO giving RDPA-ADR2-SIZE end-if end-perform end-if exit. ***************************************************************** COMPRESS-MULTIPLE-SPACES. move SPACES to RDPA-ADR2-DATA add 1 to ZERO giving X1 add 1 to ZERO giving X2 perform until PRS-SIZE(X1) = 0 or PRS-POSITION(X1) = 0 or X1 > PRS-TABLE-MAX or X1 > PRS-NUMBER-OF-ITEMS move PRS-BUFFER(PRS-POSITION(X1):PRS-SIZE(X1)) to RDPA-ADR2-DATA(X2:PRS-SIZE(X1)) add X2 to ZERO giving PRS-POSITION(X1) add PRS-SIZE(X1) to X2 add 1 to X2 add 1 to X1 end-perform move SPACES to PRS-BUFFER move RDPA-ADR2-DATA to PRS-BUFFER move SPACES to RDPA-ADR2-DATA exit. *---------------------------------------------------------------* POST-TABLE-ITEM. move 'Item-nnnn, Offset-nnnn, Length-nnnn, Parameter - ' to MESSAGE-TEXT(1:49) move X1 to MESSAGE-TEXT(6:4) move PRS-POSITION(X1) to MESSAGE-TEXT(19:4) move PRS-SIZE(X1) to MESSAGE-TEXT(32:4) if PRS-SIZE(X1) < 20 move PRS-BUFFER(PRS-POSITION(X1):PRS-SIZE(X1)) to MESSAGE-TEXT(50:PRS-SIZE(X1)) else move PRS-BUFFER(PRS-POSITION(X1):19) to MESSAGE-TEXT(50:19) end-if perform Z-DISPLAY-CONSOLE-MESSAGE exit. ***************************************************************** PROCESS-STREET-ADDRESS. if RDPA-ADR1-DATA = SPACES or RDPA-ADR1-DATA = LOW-VALUES perform Z-ABEND-INVALID-INPUT else perform ADDR-FUNCTION-PARSE perform CALCULATE-BUFFER-SIZE-01 if PRS-STATUS = 0 * perform ADDR-FUNCTION-DISPLAY-WORDS perform COMPRESS-MULTIPLE-SPACES perform PROCESS-STREET-ADDRESS-100 perform CALCULATE-BUFFER-SIZE-02 else move 'Parsing Error' to RDPA-ADR2-DATA move RDPA-ADR2-DATA to MESSAGE-TEXT perform Z-DISPLAY-CONSOLE-MESSAGE end-if end-if. exit. *---------------------------------------------------------------* PROCESS-STREET-ADDRESS-100. perform BUILD-NEW-STREET-ADDRESS if RDPA-ADR2-CNTL = 'UNK ' and RDPA-ADR2-DATA not = SPACES if RDPA-ADR1-DATA = RDPA-ADR2-DATA move 'AOK ' to RDPA-ADR2-CNTL subtract RDPA-RESULT from RDPA-RESULT else move 'MOD ' to RDPA-ADR2-CNTL subtract RDPA-RESULT from RDPA-RESULT end-if subtract RDPA-RESULT from RDPA-RESULT end-if exit. ***************************************************************** * The following Z-Routines perform 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-DISPLAY-CONSOLE-MESSAGE end-if move 'PROGRAM-IS-ABENDING...' to MESSAGE-TEXT perform Z-DISPLAY-CONSOLE-MESSAGE add 12 to ZERO giving RETURN-CODE STOP RUN. * exit. *---------------------------------------------------------------* Z-ABEND-INVALID-REQUEST. add 18 to ZERO giving RDPA-RESULT move 'ERR ' to RDPA-ADR2-CNTL move 'Call to SimoROAD with invalid request' to RDPA-ADR2-DATA exit. *---------------------------------------------------------------* Z-ABEND-INVALID-INPUT. add 20 to ZERO giving RDPA-RESULT move 'ERR ' to RDPA-ADR2-CNTL move 'Call to SimoROAD with blank input address' to RDPA-ADR2-DATA exit. ***************************************************************** * Display CONSOLE messages... * ***************************************************************** Z-DISPLAY-CONSOLE-MESSAGE. if MESSAGE-TEXT-2 = SPACES display MESSAGE-BUFFER(1:79) upon console else display MESSAGE-BUFFER upon console end-if move all SPACES to MESSAGE-TEXT exit. ***************************************************************** Z-POST-COPYRIGHT. display SIM-TITLE upon console display SIM-COPYRIGHT upon console exit. ***************************************************************** * This example is provided by SimoTime Technologies * * Our e-mail address is: helpdesk@simotime.com * * Also, visit our Web Site at http://www.simotime.com * *****************************************************************
The following (PASSROAD.cpy) is the COBOL Copy file that defines the data structure or pass area to use when calling the SIMOROAD routine.
***************************************************************** * Data Structure or Pass Area used for calling SIMOROAD. * ***************************************************************** * 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 * ***************************************************************** * RDPA-REQUEST, Type of request, must be "SIMOROAD" for * parsing. This item is provided by the calling * program and is not modified by the parse and * edit routine. * RDPA-RESULT, This is an indicator as to the success or * failure of the request. A value of zero (0000) * indicates the routine was successful. * A non-zero value indicates a failure. * RDPA-ADR1-CNTL, This is a four byte string that is used to * specify input data. This string should * contain "INP ". This item is provided by the * calling program and is not modified by the * parse and edit routine. * RDPA-ADR1-DATA, This string must contain the street address * to be parsed and edited. This string is not * modified by the parse and edit routine. * RDPA-ADR1-SIZE, This is the size of the actual text within * the RDPA-ADR1-DATA string. This item is * created by the parse and edit routine. * RDPA-ADR2-CNTL, This is a four byte string that is used to * specify the result of the parse and edit * routine for the input street address. This * item is created by the parse and edit routine. * RDPA-ADR2-DATA, This string will contain the street address * that is created by the parse and edit routine. * RDPA-ADR2-SIZE, This is the size of the actual text within * the RDPA-ADR2-DATA string. This item is * created by the parse and edit routine. * 01 ROAD-PASS-AREA. 05 RDPA-REQUEST PIC X(8). 05 RDPA-RESULT PIC S9(9) COMP. 05 RDPA-ADR1-CNTL PIC X(4). 05 RDPA-ADR1-DATA PIC X(128). 05 RDPA-ADR1-SIZE PIC 9(5). 05 RDPA-ADR2-CNTL PIC X(4). 05 RDPA-ADR2-DATA PIC X(256). 05 RDPA-ADR2-SIZE PIC 9(5). * *** PASSROAD - End-of-Copy File - - - - - - - - - - - PASSROAD * ***************************************************************** *
This document provides a listing of the COBOL source code for the SIMOROAD Member. 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, Comment or Feedback section of this document.
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.
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.
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 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 icon.
Explore a complete list of the SimoTime Callable Routines or Utility Programs. This includes the callable routines and utility programs for the Micro Focus environment.
Explore an Extended List of Software Technologies that are available for review and evaluation. The software technologies (or Z-Packs) provide individual programming examples, documentation and test data files in a single package. The Z-Packs are usually in zip format to reduce the amount of time to download.
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.
Explore The File Status Return Codes that are used to interpret the results of accessing VSAM data sets and/or QSAM files.
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.
Explore the Glossary of Terms for a list of terms and definitions used in this suite of documents and white papers.
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.
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 |
SimoROAD, COBOL Source Code for Editing Street Address |
Copyright © 1987-2024 SimoTime Technologies and Services All Rights Reserved |
When technology complements business |
http://www.simotime.com |