Exclusive OR (XOR) Function
Boolean Logic using COBOL
  Table of Contents  v-24.01.01 – lorxor01.htm 
  Introduction
  Call Interface
  XOR of Single Byte Data Strings
  XOR of Data Strings
  Job Scripts
  The CMD Member
  The JCL Member
  The Bash Script
  COBOL Source Members
  Driver Program
  XOR Callable Routine
  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

This suite of programs is provided as a COBOL programming example of one of the possible solutions when performing Boolean logic. The AND, OR and NOT are the primary operations of Boolean logic. The XOR is a permutation of the primary operations of Boolean logic. This Test Case will focus on the Exclusive OR (XOR) Function.

This document will focus on the Exclusive OR (XOR) Function and is one of a suite of Logical Operator Routines.

1 LORANDC1 calls STANDPGM to perform a logical AND Function.
2 LORORRC1 calls STORRPGM to perform a logical OR Function.
3 LORXORC1 calls STXORPGM to perform an Exclusive OR Function.
  The Three Logical Operations provided by SimoTime

This test case uses a driver program to call the XOR routine that does the XOR function. This example contains one JCL member to execute the two COBOL programs. The main COBOL program (LORXORC1.CBL) is used to demonstrate and test the XOR functions. The XOR function is in a separate, callable COBOL program (STXORPGM.CBL). Both COBOL programs were written and tested using the Enterprise COBOL dialect. Both COBOL programs will work with COBOL for MVS or COBOL/370 and are ANSI/85 compliant. A JCL member is provided to run the job as an MVS batch job on an IBM Mainframe System running ZOS or Linux, UNIX or Windows (LUW) System running Micro Focus Enterprise Server. A Windows command file is provided to run the job on a Windows System using Micro Focus COBOL technology. A Bash Script File is provided to run the job on a Linux or UNIX System and GnuCOBOL (formerly known as Open COBOL) is used to compile the COBOL Programs.

In the world of programming there are many ways to solve a problem. This suite of programs is provided as a COBOL programming example of one of the possible solutions to performing an XOR function. This example may serve as a tutorial for new programmers and as a reference for experienced programmers. Additional information (including the original Assembler routine that does the XOR function) is provided in the Downloads and Links to Similar Pages section of this document.

This type of Boolean logic and bit manipulation is quite often considered something that cannot be done using COBOL. Many years ago I was asked to provide a mainframe assembler routine to perform a Exclusive OR (XOR) function using two user-defined data strings. I delivered the callable routine and was well paid for the task. However, something the client said bothered me, "I have been told this cannot be done in COBOL."

I have heard this statement many times over the years and in a number of instances it is simply not true. An assembler routine would probably be smaller and run faster. However, if the task could be accomplished in a reasonable manner using COBOL then the cost, effort, frustration and ongoing support of an assembler routine in a COBOL programming shop may not be worth these advantages. This is especially true if assembler expertise is not readily available.

Boolean logic is possible using COBOL. An assembler routine or the use of a language extension is not required. This capabilty allows a single source string to be used when moving an application between a Mainframe System and a Linux, UNIX or Windows (LUW) System. The LUW environments will require Micro Focus Enterprise Developer.

Note: Refer to the Download and Links to Similar Pages section of this document for links to additional documents that discuss this topic.


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 Call Interface

The callable interface requires three (3) parameters, two data strings and a length value.

Table of Contents Previous Section Next Section XOR of Single Byte Data Strings

This section illustrates an XOR using two data strings with a length of one (1) byte. The following shows the data structures that are passed to the XOR routine.

       01  XOR-ONE-BYTE-STRUCTURE.
           05  XOR-SOURCE-A-01     pic X       value LOW-VALUE.
           05  XOR-TARGET-A-01     pic X       value LOW-VALUE.
           05  XOR-LENGTH-A-01     pic 9(4)    COMP  value 0.
           . . .
           . . .
           The following shows the call to the XOR routine.
           . . .
           . . . 
           add 1 to ZERO giving XOR-LENGTH-A-01
           move 'A'   to XOR-SOURCE-A-01
           move X'02' to XOR-TARGET-A-01
           call 'STXORPGM' using XOR-SOURCE-A-01
                                 XOR-TARGET-A-01
                                 XOR-LENGTH-A-01

The preceding snippet of code will use the Exclusive OR function to convert the character "A" to be a character "C".

Table of Contents Previous Section Next Section XOR of Data Strings

This section illustrates an XOR using two data strings with a length of twenty-six (26) characters. The following shows the data structures that are passed to the XOR routine.

       01  A-Z-TEXT    pic X(26) value 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
       01  Z-A-TEXT    pic X(26) value 'ZYXWVUTSRQPONMLKJIHGFEDCBA'.
           . . .
           . . .
           The following shows the call to the XOR routine.
           . . .
           . . . 
           add 26 to ZERO giving XOR-LENGTH-A-01
           call 'STXORPGM' using A-Z-TEXT Z-A-TEXT XOR-LENGTH-A-01
           call 'STXORPGM' using Z-A-TEXT A-Z-TEXT XOR-LENGTH-A-01
           call 'STXORPGM' using A-Z-TEXT Z-A-TEXT XOR-LENGTH-A-01

The preceding snippet of code shows three (3) calls to the XOR routine. The 1st call and 3rd call are the same. The 2nd call has the sequence of the data strings reversed. Executing an exclusive OR three times in this sequence will cause the content of the two data strings to be swapped.

The following is the expected result that is posted to SYSOUT by the mainline COBOL program that calls the Assembler program.

* LORXORC0 Content Swap, Two Data Strings XOR v08.06.05 http://www.simotime.com
* LORXORC0 Copyright 1987-2017    SimoTime Technologies     All Rights Reserved
ABCDEFGHIJKLMNOPQRSTUVWXYZ-ZYXWVUTSRQPONMLKJIHGFEDCBA
ZYXWVUTSRQPONMLKJIHGFEDCBA-ABCDEFGHIJKLMNOPQRSTUVWXYZ
* LORXORC0 Complete RC=00000

Table of Contents Previous Section Next Section Job Scripts

A job script may be defined as a text file containing job setup information followed by job steps that identify programs to be executed along with parameters unique to the job step. A job script may be created using a text editor. The naming of a job script is determined by the Operating System. A simple job script may contain a single job step that performs a single function. A typical job script will contain multiple job steps executed in a predefined sequence. The status of each job step may be tested at the end of each job step.

Table of Contents Previous Section Next Section The CMD Member

The following is the Windows Command file (LORXORW1.cmd) that is required to run as a job on a Windows System using Micro Focus COBOL Technology.

@echo OFF
rem  * *******************************************************************
rem  *               LORXORW1.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   - Test Case for XOR Logical Operator Routine.
rem  * Author - SimoTime Technologies
rem  * Date   - December 15, 2016
rem  *
rem  * This set of programs illustrates the use a COBOL program to do
rem  * an Exclusive OR (XOR) function.
rem  *
rem  *   ************
rem  *   * LORXORW1 *
rem  *   ********cmd*
rem  *        *
rem  *        *
rem  *   ************      ************
rem  *   * LORXORC1 *------*  SYSOUT  *
rem  *   ********cbl*      ************
rem  *        *   *
rem  *        *   *        ************
rem  *        *   *--call--* STXORPGM *
rem  *        *            ********cbl*
rem  *        *
rem  *   ************
rem  *   *   EOJ    *
rem  *   ************
rem  *
rem  * *******************************************************************
rem  * Step 1, Prepare the Environment...
rem  *
     set CmdName=LORXORW1
     call ..\ENV1BASE %CmdName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
     set JobStatus=0000
rem  *
     call SimoNOTE "*******************************************************%CmdName%"
     call SimoNOTE "Starting JobName %CmdName%"
rem  *
rem  * *******************************************************************
rem  * Step 2, Execute the XOR Test Program...
     call SimoNOTE "Continue JobName %CmdName% Execute the XOR Test Program"
     set SYSOUT=%BASELIB1%\LOGS\SYSOUT_%CmdName%.txt
     run LORXORC1
     if not ERRORLEVEL = 0 set JobStatus=0010
     if not %JobStatus% == 0000 goto :EojNok
rem  *
rem  * *******************************************************************
rem  * Step 3, End-of-Job Processing...
: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 The JCL Member

The following is the mainframe JCL member (LORXORJ1.jcl) that is required to run as a job on an IBM Mainframe System using ZOS or a Linux, UNIX or Windows System using Micro Focus COBOL Technology.

//LORXORJ1 JOB SIMOTIME,'CBL BIT MANIPULATE',CLASS=1,MSGCLASS=0,
//             NOTIFY=CSIP1
//* *******************************************************************
//*       LORXORJ1.jcl - a JCL Member for Batch Job Processing        *
//*       This JCL member is provided by SimoTime Technologies        *
//*           (C) Copyright 1987-2019 All Rights Reserved             *
//*             Web Site URL:   http://www.simotime.com               *
//*                   e-mail:   helpdesk@simotime.com                 *
//* *******************************************************************
//*
//* Text   - COBOL calls COBOL for XOR Function
//* Author - SimoTime Technologies
//* Date   - January 01, 1989
//*
//* This set of programs illustrates the use a COBOL program to do
//* an Exclusive OR (XOR) function.
//*
//* The DD statement for SYSOUT is required by this example. The
//* COBOL program may be compiled using the SYSOUT directive and
//* without the DD statement for SYSOUT an RTS173 or RTS227 may occur.
//*
//* This set of programs may be compiled and executed on a Mainframe
//* System with ZOS or a Linux, UNIX or Windows System with Micro Focus
//* Enterprise Developer.
//*
//*   ************
//*   * LORXORJ1 *
//*   ********jcl*
//*        *
//*        *
//*   ************      ************
//*   * LORXORC1 *------*  SYSOUT  *
//*   ********cbl*      ************
//*        *   *
//*        *   *        ************
//*        *   *--call--* STXORPGM *
//*        *            ********cbl*
//*        *
//*   ************
//*   *   EOJ    *
//*   ************
//*
//* *******************************************************************
//* Step 1 of 1, This is a single step job.
//*
//CBLBITS1 EXEC PGM=LORXORC1
//STEPLIB  DD  DSN=SIMOTIME.DEMO.LOADLIB1,DISP=SHR
//SYSOUT   DD  SYSOUT=*
//*

Table of Contents Previous Section Next Section The Bash Script

The following is the Bash Shell Script (lorxors1.sh) that is required to run as a job on a Linux or UNIX System. For this test case the COBOL programs were compiled and executed on a Linux (Ubuntu) System using GnuCOBOL.

#!/bin/bash
   JOBNAME=lorxors1
#  * *******************************************************************
#  *       Bash Script File - provided by SimoTime Technologies        *
#  *           (C) Copyright 1987-2018 All Rights Reserved             *
#  *             Web Site URL:   http://www.simotime.com               *
#  *                   e-mail:   helpdesk@simotime.com                 *
#  * *******************************************************************
#  *
#  * Text    - Exclusive OR Function using COBOL
#  * Author  - SimoTime Technologies
#  * Date    - November 11, 2003
#  * Version - 06.07.16
#  *
#  * This program will use the Exclusive OR function to swap the content
#  * of two data strings..
#  *
#  * This technique provides a single set of source code that may be
#  * compiled and executed on an IBM Mainframe System, a Linux System
#  * or a UNIX System.
#  *
#  *   ************
#  *   * lorxors1 *
#  *   *********sh*
#  *        *
#  *        *
#  *   ************     ************     ************
#  *   * cobcrun  ******* lorxorc1 *******  SYSOUT  *
#  *   ************     * --call-- *     ************
#  *        *           * stxorpgm *
#  *        *           ************
#  *        *
#  *        *
#  *   ************
#  *   *   EOJ    *
#  *   ************
#  *
#  * ********************************************************************
#  * Prepare the System Environment.
#  *
   for textstring in $(cat ENV4SYS1.txt);
   do
#      # * The following statement will replace all occurences of
#      # * DL_BASESYS1 with the $BASESYS1 environment variable.
       textstring=${textstring//DL_BASESYS1/$BASESYS1}
#      # * The following statement will replace all occurences of
#      # * DL_JOBNAME with the $JOBNAME environment variable.
       textstring=${textstring/DL_JOBNAME/$JOBNAME}
       export $textstring
       rc=$?
       if [ $rc != 0 ]
       then
          simonote.sh "#  $textstring - Return Code is $rc"
          JOBSTATUS=$rc
       fi
   done
   JOBSTATUS=0
#  *
   simonote.sh "****************************************************************$JOBNAME"
   echo "# BASESYS1........... $BASESYS1"
   echo "# SIMONOTE........... $SIMONOTE"
   echo "# COB_LIBS........... $COB_LIBS"
   echo "# COB_LIBRARY_PATH... $COB_LIBRARY_PATH"
   simonote.sh "# Starting Job Name is $JOBNAME, User is $USER, Time is $(date +'%Y/%m/%d') - $(date +'%r')"
#  *
#  * ********************************************************************
#  * Step 1 of 2, Run the program.
#  *
#  * Note: The cobcrun command is the COBOL Run Time support for GnuCOBOL.
#  * Note: CV80ALAR is a convert program provided by SimoTime Technologies.
#  *
   name=Job_Step_02
   cobcrun LORXORC1
   rc=$?
   if [ $rc != 0 ]
   then
      simonote.sh "# $name - Return Code is $rc"
      JOBSTATUS=$rc
   fi
#  *
#  * ********************************************************************
#  * Step 2 of 2, End of Job Processing.
#  *
     if [ "$JOBSTATUS" = "0" ]
     then
        simonote.sh "# Finished Job Name $JOBNAME, Time is $(date +'%Y/%m/%d') - $(date +'%r')"
     else
        simonote.sh "# ABENDING Job Name $JOBNAME"
     fi


Table of Contents Previous Section Next Section COBOL Source Members

There are two (2) COBOL members in this suite of programs, a mainline (or driver) program and a callable routine that does the XOR function.

Table of Contents Previous Section Next Section Driver Program

This program (LORXORC1.cbl) was written to test the callable program (STXORPGM) that does the Exclusive OR (XOR) Function

       IDENTIFICATION DIVISION.
       PROGRAM-ID.    LORXORC1.
       AUTHOR.        SIMOTIME TECHNOLOGIES.
      *****************************************************************
      * SOURCE MODULE LORXORC1.CBL
      *****************************************************************
      * LORXORC1 - Driver program, XOR Function Test.
      *
      * DESCRIPTION
      * -----------
      * This program will do an XOR of two data strings.
      *
      * This program is one of a suite of Logical Operator Routines.
      * LORANDC1 calls STANDPGM to perform a logical AND Function.
      * LORORRC1 calls STORRPGM to perform a logical OR Function.
      * LORXORC1 calls STXORPGM to perform an Exclusive OR Function.
      *
      *****************************************************************
      * MAINTENANCE
      * -----------
      * 1999/03/89 SimoTime, Created program.
      * 1999/03/89 SimoTime, No changes to date.
      *
      *****************************************************************
       ENVIRONMENT DIVISION.
      *****************************************************************
       DATA DIVISION.
       WORKING-STORAGE SECTION.
      *****************************************************************
      *    Data-structure for Title and Copyright...
      *    ------------------------------------------------------------
       01  SIM-TITLE.
           05  T1 pic X(11) value '* LORXORC1 '.
           05  T2 pic X(34) value 'Test Case, Exclusive XOR Function '.
           05  T3 pic X(10) value ' v08.06.05'.
           05  T4 pic X(24) value ' http://www.simotime.com'.
       01  SIM-COPYRIGHT.
           05  C1 pic X(11) value '* LORXORC1 '.
           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  XOR-ONE-BYTE-STRUCTURE.
           05  XOR-SOURCE-A-01     pic X       value LOW-VALUE.
           05  XOR-TARGET-A-01     pic X       value LOW-VALUE.
           05  XOR-LENGTH-A-01     pic 9(4)    COMP  value 0.

       01  A-Z-TEXT    pic X(26) value 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
       01  Z-A-TEXT    pic X(26) value 'ZYXWVUTSRQPONMLKJIHGFEDCBA'.

      *****************************************************************
       PROCEDURE DIVISION.
           perform POST-STARTUP-INFO-TO-SYSOUT

           perform TEST-CASE-01
           perform TEST-CASE-02

           display '* LORXORC1 Complete RC=' RETURN-CODE upon console
           display '* LORXORC1 Complete RC=' RETURN-CODE

           GOBACK.

      *****************************************************************
       TEST-CASE-01.
      *    A simple exclusive OR (XOR) using single-byte data strings.
      *
      *                XOR-SOURCE-A-01   XOR-TARGET-A-01
      *    Before XOR      01000001          00000010
      *    After XOR       01000001          01000011
      *
           add 1 to ZERO giving XOR-LENGTH-A-01
           move 'A'   to XOR-SOURCE-A-01
           move X'02' to XOR-TARGET-A-01

           call 'STXORPGM' using XOR-SOURCE-A-01
                                 XOR-TARGET-A-01
                                 XOR-LENGTH-A-01

           display XOR-SOURCE-A-01 '-' XOR-TARGET-A-01
           exit.

      *****************************************************************
       TEST-CASE-02.
      *    Use the Exclusive OR (XOR) function to swap the contents of
      *    two data strings. This is accomplished by doing three (3)
      *    XOR's of the two data strings. The second XOR has the
      *    sequence of the data strings reversed.
      *
      *         =========A-Z-TEXT=========   =========Z-A-TEXT=========
      *  Before ABCDEFGHIJKLMNOPQRSTUVWXYZ   ZYXWVUTSRQPONMLKJIHGFEDCBA
      *  After  ZYXWVUTSRQPONMLKJIHGFEDCBA   ABCDEFGHIJKLMNOPQRSTUVWXYZ
      *
           display A-Z-TEXT '-' Z-A-TEXT
           add 26 to ZERO giving XOR-LENGTH-A-01

           call 'STXORPGM' using A-Z-TEXT Z-A-TEXT XOR-LENGTH-A-01
           call 'STXORPGM' using Z-A-TEXT A-Z-TEXT XOR-LENGTH-A-01
           call 'STXORPGM' using A-Z-TEXT Z-A-TEXT XOR-LENGTH-A-01

           display A-Z-TEXT '-' Z-A-TEXT
           exit.

      *****************************************************************
       POST-STARTUP-INFO-TO-SYSOUT.
           display SIM-TITLE
           display SIM-COPYRIGHT
           exit.

Table of Contents Previous Section Next Section XOR Callable Routine

The original version of this program (STXORPGM) was created on an IBM Mainframe System and was written in IBM Assembler/H and later recompiled using HLASM. A replacement program was required when it was necessary to move a segment of a business application to a Windows System.

The requirement was to use a single source code base for a version of the application segment would compile and execute on an IBM Mainframe System and a Linux, UNIX or Windows (LUW) System. The LUW environment would require Micro Focus COBOL technology.

The HLASM version of the XOR program was re-written in COBOL and complies with the ANSI/85 standard and has been compiled and executed using various COBOL compilers with various dialects (OS/390, Enterprise COBOL and more).

For additional information about this program please call or send an e-mail to: helpdesk@simotime.com

Table of Contents Previous Section Next Section Summary

This suite of programs is provided as a COBOL programming example of one of the possible solutions when performing Boolean logic. This Test Case will perform an Exclusive OR (XOR) Function. 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 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.

Link to Internet   Link to Server   Explore Bit Manipulation using a COBOL program calling COBOL to do the accessing of individuals bits within a byte.

Link to Internet   Link to Server   Explore Bit Manipulation using a COBOL program calling Assembler to do the accessing of individuals bits within a byte.

Link to Internet   Link to Server   Explore How to do a logical OR Function using a COBOL program that calls a COBOL routine to do the actual logical OR of two data strings.

Link to Internet   Link to Server   Explore How to do a logical AND Function using a COBOL program that calls a COBOL routine to do the actual logical AND of two data strings.

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

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 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
Exclusive OR using COBOL
Copyright © 1987-2024
SimoTime Technologies and Services
All Rights Reserved
When technology complements business
http://www.simotime.com