![]() |
Right Adjust and Zero-Fill SimoRA12 - The COBOL Source Code http://www.simotime.com |
| When technology complements business | Copyright © 1987-2010 SimoTime Enterprises All Rights Reserved |
This document provides a listing of the COBOL source code for viewing. Additional information about this program may be obtained by sending an e-mail to: helpdesk@simotime.com
The objective of the right-adjust, zero-fill routine is to create a numeric field that will contain all digits with leading zeroes in the leftmost positions and be properly aligned to the units position. If the requirement is to right-justify, left-justify or center a text string within a field with the appropriate leading and/or trailing space characters then refer to the text-justification routine (or simojust.htm).
The SimoRA12 routine (or callable program) will right-adjust the digits and zero-fill the left-most (or high-order) bytes with leading zeroes. For example, if a value of 123 is passed to the SimoRA12 routine the following will be returned in the pass area.
******************************************************************** RIGHTADJ 123 Right Adjusted Value......... 000000000123 RC=0000, Value is Numeric
The following will right-adjust the digits and zero-fill the left-most (or high-order) bytes with leading zeroes.
MOVE X'RIGHTADJ' to RA12-REQUEST
MOVE '123 ' to RA12-BUFFER
CALL 'SIMORA12' using RA12-PASS-AREA
In the preceding example the contents of RA12-PASS-AREA will be '000000000123' upon return from the call to SIMORA12.
A copy file is provided to define the pass area to be used when calling SimoRA12. The following statement is required in the WORKING STORAGE section of the calling program.
WORKING STORAGE.
...
...
COPY PASSRA12.
The callable right-adjust routine will accept a string of numbers up to twelve (12) digits. A Working Storage data structure for calling the SIMORA12 routine is required. A copy file (PASSRA12.CPY) is provided with the following fields defined.
*****************************************************************
* Data Structure or Pass Area used for calling SIMORA12. *
*****************************************************************
* Copyright (C) 1987-2004 SimoTime Enterprises *
* All Rights Reserved *
*****************************************************************
* Provided by SimoTime Enterprises *
* Our e-mail address is: helpdesk@simotime.com *
* Also, visit our Web Site at http://www.simotime.com *
*****************************************************************
01 RA12-PASS-AREA.
05 RA12-REQUEST PIC X(8).
05 RA12-RESPOND PIC 9(4).
05 RA12-BUFFER.
10 RA12-NUMBER PIC 9(12).
*! PASSRA12 - End-of-Copy File...
The following is the COBOL Source Code for SimoRA12.
IDENTIFICATION DIVISION.
PROGRAM-ID. SIMORA12.
AUTHOR. SIMOTIME ENTERPRISES.
*****************************************************************
* Copyright (C) 1987-2009 SimoTime Enterprises, LLC. *
* *
* 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 commercial purpose requires a fee to be paid to *
* SimoTime Enterprises. 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 *
* Enterprises. *
* *
* Permission to use, copy and modify 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 *
* Enterprises. *
* *
* SimoTime Enterprises makes no warranty or representations *
* about the suitability of the software for any purpose. It is *
* provided "AS IS" without any express or implied warranty, *
* including the implied warranties of merchantability, fitness *
* for a particular purpose and non-infringement. SimoTime *
* Enterprises 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 Enterprises *
* 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 Enterprises, *
* 15 Carnoustie Drive, Novato, CA 94949-5849. *
* *
*****************************************************************
* This program is provided by SimoTime Enterprises *
* Our e-mail address is: helpdesk@simotime.com *
* Also, visit our Web Site at http://www.simotime.com *
* *
*****************************************************************
*
*****************************************************************
* Source Member: SIMORA12.CBL
* Copy Files: PASSRA12.CPY
*****************************************************************
*
* SIMORA12 - Erase to End=Of-Field (EOF) after first space and
* then do a Right-Adjust, Zero-Fill for a 12 byte field.
*
* EXECUTION or CALLING PROTOCOL
* -----------------------------
* CALL 'SIMORA12' USING RA12-PASS-AREA.
*
*****************************************************************
*
* MAINTENANCE
* -----------
* 1997/02/27 Simmons, Created program.
* 1997/02/27 Simmons, No changes to date.
*
*****************************************************************
*
DATA DIVISION.
WORKING-STORAGE SECTION.
01 Z-X12 pic 9(3) value 0.
*****************************************************************
LINKAGE SECTION.
COPY PASSRA12.
*****************************************************************
PROCEDURE DIVISION using RA12-PASS-AREA.
add 16 to ZERO giving RA12-RESPOND
* The following INSPECT statement will erase to end-of-field
* any characters after the first space character.
inspect RA12-BUFFER
replacing CHARACTERS by ' ' after initial ' '
* The following IF logic is for performance. It quickly
* reduces the number of loops for the PERFORM logic.
if RA12-BUFFER(7:6) = SPACES
if RA12-BUFFER(4:3) = SPACES
move RA12-BUFFER(1:3) to RA12-BUFFER(10:3)
move all ZEROES to RA12-BUFFER(1:9)
else
move RA12-BUFFER(1:6) to RA12-BUFFER(7:6)
move all ZEROES to RA12-BUFFER(1:6)
end-if
else
if RA12-BUFFER(10:3) = SPACES
* The following three MOVE statements are used to
* avoid a potential problem with an overlapping MOVE.
move RA12-BUFFER(7:3) to RA12-BUFFER(10:3)
move RA12-BUFFER(4:3) to RA12-BUFFER(7:3)
move RA12-BUFFER(1:3) to RA12-BUFFER(4:3)
move all ZEROES to RA12-BUFFER(1:3)
end-if
end-if
perform until RA12-BUFFER(12:1) not = SPACE
if RA12-BUFFER(12:1) = SPACE
add 11 to ZERO giving Z-X12
perform 11 times
move RA12-BUFFER(Z-X12:1) to RA12-BUFFER
(Z-X12 + 1:1)
subtract 1 from Z-X12
end-perform
move ZERO to RA12-BUFFER(1:1)
end-if
end-perform
if RA12-BUFFER NUMERIC
move ZERO to RA12-RESPOND
else
add 8 to ZERO giving RA12-RESPOND
end-if
GOBACK.
*****************************************************************
* This example is provided by SimoTime Enterprises *
* Our e-mail address is: helpdesk@simotime.com *
* Also, visit our Web Site at http://www.simotime.com *
*****************************************************************
The purpose of this document is to provide a COBOL Source member for viewing.
Permission to use, copy, modify and distribute this software for any commercial purpose requires a fee to be paid to Simotime Enterprises. 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 Enterprises.
Permission to use, copy, modify and distribute this software for a 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 Enterprises.
SimoTime Enterprises makes no warranty or representations about the suitability of the software for any purpose. It is provided "AS IS" without any express or implied warranty, including the implied warranties of merchantability, fitness for a particular purpose and non-infringement. SimoTime Enterprises 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.
You may view an example of a COBOL program that uses the SimoRA12 routine at http://www.simotime.com/cblraz01.htm.
You may view the complete list of SimoTime callable Modules or Driver Programs at http://www.simotime.com/simomods.htm.
The SimoZAPS Utility Program has the capability of generating a COBOL program that will do the conversion of sequential and VSAM (KSDS) files between EBCDIC and ASCII. SimoZAPScan also read a sequential file in EBCDIC format and create an ASCII/CRLF file or VSAM KSDS file in ASCII format. The conversion tables may be viewed or modified to meet unique requirements. The Hexcess/2 function provides the capability of viewing, finding or patching the contents of a file in hexadecimal.
This item will provide a link to an ASCII or EBCDIC translation table. A column for decimal, hexadecimal and binary is also included.
This document provides a quick summary of the File Status Key for VSAM data sets and QSAM files.
Check out The SimoTime Library for a wide range of topics for Programmers, Project Managers and Software Developers.
To review all the information available on this site start at The SimoTime Home Page .
Check out The SimoTime Glossary for a list of terms and definitions used in the documents provided by SimoTime.
If you have any questions, suggestions or comments please call or send an e-mail to: helpdesk@simotime.com
We appreciate your comments and feedback.
Founded in 1987, SimoTime Enterprises 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. This includes the smallest thin client using the Internet and the very large mainframe systems. There is more to making the Internet work for your company's business than just having a nice looking WEB site. It is about combining the latest technologies and existing technologies with practical business experience. It's about the business of doing business and looking good in the process. 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. 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 |
| Copyright © 1987-2010 SimoTime Enterprises All Rights Reserved |
| When technology complements business |
| http://www.simotime.com |