• The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
Menu
  • The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
  • Reading Spool Files in RPG

    October 18, 2002 Timothy Prickett Morgan

    Hey, Ted:

    I have a problem similar to the one you solved in the February 27, 2002, issue of Midrange Guru. I wish to copy a spooled file that has been produced by a package, run an RPG program to modify the output, and build a new spooled file. In that example, you specified CTLCHAR(*FCFC) in the Copy Spooled File (CPYSPLF) command in order to use first-character form control characters. Can an RPG program interpret those characters and generate a new spool file with the same spacing?

    — Joe

    If you only want to modify the lines and reprint them, consider updating the disk file and using the Copy File (CPYF) command with CTLCHAR(*FCFC), as in the technique to which you referred.

    However, if you want to take more liberties with the new report, making an RPG program generate a fresh report is a good idea. It’s not difficult to make the RPG program read the first-character forms control characters and skip or space accordingly when it writes to a printer file. However, there’s an easier method that I have used several times.

    Rather than CTLCHAR(*FCFC), use CTLCHAR(*PRTCTL). Doing so puts a four-byte prefix on each record of the disk file. The first three bytes contain either blanks or a skip-before entry. The fourth byte contains either a blank or a space-before entry.

    In the following example, the printer skips to line 5 before printing the first line. It double-spaces before printing the second line and single-spaces before printing the third line:

    005 12/25/2002      My Report        Page 1
       2Blah blah blah
       1More blah blah blah
    

    In the RPG program, use the PRTCTL keyword on the printer file’s F spec. This lets you use a data structure, rather than hard-coded skipping and spacing entries, to control the spacing of the output.

    The good thing about this technique is that it’s easy to copy the skipping and spacing control characters from the spooled file image to the print control data structure.

    Here’s an example. It reads a disk file that was loaded by CPYSPLF and builds a duplicate report.

    — Ted

    Fspoolfile if   f  136        disk                      
    Fqsysprt   o    f  132        printer oflind(*inof)     
    F                                     prtctl(prtctlds)  
     
    D prtctlds        ds            15                      
    D  pSpaceBefore           1      3                      
    D  pSpaceAfter            4      6                      
    D  pSkipBefore            7      9                      
    D  pSkipAfter            10     12                      
    D  pLineNbr              13     15                      
                                                            
    D outputdata      s            132                      
                                                            
    Ispoolfile ns  01                                       
    I                                  1    3  sSkipBefore  
    I                                  4    4  sSpaceBefore 
    I                                  5  136  inputdata    
                                                            
    C                   read      spoolfile                  
    C                   dow       not %eof(spoolfile)        
    C                   eval      outputdata = inputdata     
    C                   if        sSkipBefore <> *blanks     
    C                   eval      pSkipBefore = sSkipBefore  
    C                   else                                 
    C                   eval      pSkipBefore = *blanks      
    C                   endif                                
    C                   if        sSpaceBefore <> *blanks    
    C                   eval      %subst(pSpaceBefore:3:1) = 
    C                                 sSpaceBefore           
    C                   else                                 
    C                   eval      pSpaceBefore = *blanks     
    C                   endif                                
    C                   except    lineout                    
    C                   read      spoolfile                  
    C                   enddo                                
    C                   eval      *inlr = *on                
    C                                              
    Oqsysprt   e            lineout                
    O                       outputdata         132
    

    Sponsored By
    ADVANCED SYSTEMS CONCEPTS

    SEQUEL meets all your iSeries and AS/400 data access needs in a single, integrated solution:

    • Windows, Web or host user interfaces

    • Convert AS/400 data into PC file formats

    • E-mail or FTP query results, reports and spool files
    • Run-time prompted queries and reports for end users

    • IF-THEN-ELSE logic in queries and reports

    • Report, form and label formatting second to none

    • Easily convert date fields, character-to-numeric, numeric-to-character and other data manipulation

    • SORT or JOIN using a calculated field

    • Quick summarization of data with Tabling function

    • Run multiple SEQUEL requests as one with the SEQUEL Scripting function

    • OLAP Business Intelligence at a fraction of the cost of comparable solutions

    Take 6 minutes to view a SEQUEL ViewPoint ScreenCam movie to see how simple Windows-based AS/400 and iSeries data access can be! In just a few short minutes, you can find out ways to make your job easier and improve data access throughout your organization. Download the ViewPoint movie here .

    For more information or a FREE trial of SEQUEL, call 847/605-1311 or visit Advanced Systems Concepts.

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Tags: Tags: mgo_rc, Volume 2, Number 80 -- October 18, 2002

    Sponsored by
    WorksRight Software

    Do you need area code information?
    Do you need ZIP Code information?
    Do you need ZIP+4 information?
    Do you need city name information?
    Do you need county information?
    Do you need a nearest dealer locator system?

    We can HELP! We have affordable AS/400 software and data to do all of the above. Whether you need a simple city name retrieval system or a sophisticated CASS postal coding system, we have it for you!

    The ZIP/CITY system is based on 5-digit ZIP Codes. You can retrieve city names, state names, county names, area codes, time zones, latitude, longitude, and more just by knowing the ZIP Code. We supply information on all the latest area code changes. A nearest dealer locator function is also included. ZIP/CITY includes software, data, monthly updates, and unlimited support. The cost is $495 per year.

    PER/ZIP4 is a sophisticated CASS certified postal coding system for assigning ZIP Codes, ZIP+4, carrier route, and delivery point codes. PER/ZIP4 also provides county names and FIPS codes. PER/ZIP4 can be used interactively, in batch, and with callable programs. PER/ZIP4 includes software, data, monthly updates, and unlimited support. The cost is $3,900 for the first year, and $1,950 for renewal.

    Just call us and we’ll arrange for 30 days FREE use of either ZIP/CITY or PER/ZIP4.

    WorksRight Software, Inc.
    Phone: 601-856-8337
    Fax: 601-856-9432
    Email: software@worksright.com
    Website: www.worksright.com

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Extending the Network Reader Feedback and Insights: Extending the Network

    Leave a Reply Cancel reply

MGO Volume: 2 Issue: 80

This Issue Sponsored By

    Table of Contents

    • Reader Feedback and Insights: Another Compression Utility
    • Reading Spool Files in RPG
    • Hex Dump of an IFS File

    Content archive

    • The Four Hundred
    • Four Hundred Stuff
    • Four Hundred Guru

    Recent Posts

    • Liam Allan Shares What’s Coming Next With Code For IBM i
    • From Stable To Scalable: Visual LANSA 16 Powers IBM i Growth – Launching July 8
    • VS Code Will Be The Heart Of The Modern IBM i Platform
    • The AS/400: A 37-Year-Old Dog That Loves To Learn New Tricks
    • IBM i PTF Guide, Volume 27, Number 25
    • Meet The Next Gen Of IBMers Helping To Build IBM i
    • Looks Like IBM Is Building A Linux-Like PASE For IBM i After All
    • Will Independent IBM i Clouds Survive PowerVS?
    • Now, IBM Is Jacking Up Hardware Maintenance Prices
    • IBM i PTF Guide, Volume 27, Number 24

    Subscribe

    To get news from IT Jungle sent to your inbox every week, subscribe to our newsletter.

    Pages

    • About Us
    • Contact
    • Contributors
    • Four Hundred Monitor
    • IBM i PTF Guide
    • Media Kit
    • Subscribe

    Search

    Copyright © 2025 IT Jungle