24
Wed, Apr
0 New Articles

External File Techniques in RPG/400

RPG
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

One popular misconception I run into from time to time is that input and output specifications (I- and O-specs) cannot be used with externally described files in RPG programs. I- and O-specs can be used with externally described files, but they serve a different function from those used for traditional, RPG II- type, program described files. The difference is that the I- and O-specs of program described files define records; those of externally described files modify external record definitions. The following material explains how some programming tasks can be made easier by using I- and O-specs with externally described files.

Input Specifications

One of the features I most like about RPG is that the cycle takes care of control break processing. Call me lazy, but I believe that the programmer should do nothing the computer can do for him. So I was overjoyed to learn that I could still use the cycle to handle control breaks, even with externally described files. I'll explain the process, but first let me give you some background information.

When you are working with files, there are two types of I-specs in RPG-the record definition and the field definition. Program described, record definition I-specs require a file name, but I-specs that modify an external definition take a record name instead. The only other entry permitted is an optional record identifying indicator.

Field definition I-specs for externally described files have more in common with program described I-specs. With field definition I-specs for externally described files, you list only the fields in the record that you wish to modify. The unlisted fields will still be included by the compiler. You do not specify beginning positions, ending positions, or the data type; the compiler will retrieve that information from the external definition. You may specify control level indicators, match field codes, or field indicators, but not field record relation indicators.

One nice feature of the field definition I-spec for an externally described file is that it allows you to rename a field. If you don't want to use the field names in the external definition, assign other field names instead. (Prior to ILE RPG, if your external definition defines a field name greater than six characters, you're forced to rename the field.) To rename a field, code its external name in columns 21-30, and the name by which it will be known within the program, in columns 53-58.

To illustrate, let's consider a file of sales transactions. The file name is SALES. It has one record type, SALESREC. The fields are listed in 1. Look at the program fragment in 2. SALES is being read in key sequence by the RPG cycle. Indicator 01 turns on when a record of this type is read. The cycle will check for a control break on the transaction date field. The item number is called ITEM# in the external file definition, but in this program it is known as ITM. The other fields-XACT#, CUST#, QTY, and STATUS-will be used in the program without change.

To illustrate, let's consider a file of sales transactions. The file name is SALES. It has one record type, SALESREC. The fields are listed in Figure 1. Look at the program fragment in Figure 2. SALES is being read in key sequence by the RPG cycle. Indicator 01 turns on when a record of this type is read. The cycle will check for a control break on the transaction date field. The item number is called ITEM# in the external file definition, but in this program it is known as ITM. The other fields-XACT#, CUST#, QTY, and STATUS-will be used in the program without change.

Output Specifications

Like I-specs, O-specs come in record definition and field definition varieties. You can probably guess the first difference in record definition O-specs-the record name, rather than the file name, is coded in columns 7-14. Other differences are that the space, skip, and fetch overflow entries are not used with externally described printer files.

Field definition O-specs associated with externally described files differ slightly from those for program described files. With externally described files, you cannot specify ending positions or data types for the field, or use edit codes or edit words.

The most common use of field definition O-specs is to select the fields to output. In 3, the sales record is voided by placing a V in the status field. No other field in the record will be changed. If you want all fields to be written to the output file, use the special value *ALL as shown in 4. You'll only need one field definition O-spec, of course. At detail output time, the RPG cycle will write an entire record if indicator 01 is on and indicator 23 is off.

The most common use of field definition O-specs is to select the fields to output. In Figure 3, the sales record is voided by placing a V in the status field. No other field in the record will be changed. If you want all fields to be written to the output file, use the special value *ALL as shown in Figure 4. You'll only need one field definition O-spec, of course. At detail output time, the RPG cycle will write an entire record if indicator 01 is on and indicator 23 is off.

Two major differences exist between I- and O-specs for externally described files. First, you cannot rename fields in O-specs. Second, omitted fields in I- specs are included by the compiler, but omitted fields in O-specs are ignored. Differences in ILE RPG

Specifications

According to IBM, the format of I- and O-specs in the new Integrated Language Environment (ILE) RPG has been changed, but not the function. The new format essentially allows room for 10-character field names.

5 shows the differences between I-specs for RPG/400 and ILE RPG. 6 shows the differences between O-specs. Neither type of specification has changed much.

Figure 5 shows the differences between I-specs for RPG/400 and ILE RPG. Figure 6 shows the differences between O-specs. Neither type of specification has changed much.

Even though I have used RPG/400 to illustrate the techniques I have described, they will work with externally described files in ILE RPG except for the renaming of externally described fields. Since ILE RPG can accommodate 10- character field names, the external field name column is obsolete. For more information about I- and O-specs in ILE RPG, see "An Introduction to ILE RPG: Part 3," MC, May 1994.

Thoughts on Programming

Technique

Control-level indicators and the ability to update only certain fields in a record are advantages RPG has over other programming languages. Contrary to what many programmers have been led to believe, you do not have to give up these strengths of RPG when you use externally described files.

Ted Holt is an associate technical editor for Midrange Computing.

REFERENCES

ILE RPG/400 Reference (SC09-1526-00, CD-ROM QBKAQE00). RPG/400 Reference (SC09-1817, CD-ROM QBKAQV00).


External File Techniques in RPG/400

Figure 1 Record Format SALESREC for File SALES

 Field Name Description XACT## Transaction serial number CUST## Customer number XDATE Transaction date ITEM## Number of the item sold to the customer QTY Quantity sold STATUS Record status 
External File Techniques in RPG/400

Figure 2 Externally Described I-specs

 *..1....+....2....+....3....+....4....+....5....+....6 FSALES IP E K DISK ISALESREC 01 I XDATE L1 I ITEM# ITM 
External File Techniques in RPG/400

Figure 3 Updating a Single Field Using O-specs

 *..1....+....2....+....3....+....4....+....5....+....6 C MOVE 'V' STATUS C EXCPTVOID ... OSALESRECE VOID O STATUS 
External File Techniques in RPG/400

Figure 4 Writing All Fields Using O-specs

 *..1....+....2....+....3....+....4....+....5....+....6 OSALESRECD 01N23 O *ALL 
External File Techniques in RPG/400

Figure 5 RPG/400 and ILE RPG I-spec Differences

 Specification Entry RPG/400 ILE RPG type name positions positions Record Record format name 7-14 7-16 Record Record dentification indicator 19-20 21-22 Field External field name 21-30 N/A Field Internal field name 53-58 49-62 Field Control-level indicator 59-60 63-64 Field Match field 61-62 65-66 Field Field record relation 63-64 67-68 Field Field indicators 65-70 69-74 
External File Techniques in RPG/400

Figure 6 RPG/400 and ILE RPG O-spec Differences

 Specification Entry RPG/400 ILE RPG type name positions positions Record Record format name 7-14 7-16 Record Line type 15 17 Record Conditioning indicators 23-31 21-29 Record EXCPT/EXCEPT name 32-37 30-39 Field Field name 32-37 30-43 Field Blank after 39 45 
TED HOLT

Ted Holt is IT manager of Manufacturing Systems Development for Day-Brite Capri Omega, a manufacturer of lighting fixtures in Tupelo, Mississippi. He has worked in the information processing industry since 1981 and is the author or co-author of seven books. 


MC Press books written by Ted Holt available now on the MC Press Bookstore.

Complete CL: Fifth Edition Complete CL: Fifth Edition
Become a CL guru and fully leverage the abilities of your system.
List Price $79.95

Now On Sale

Complete CL: Sixth Edition Complete CL: Sixth Edition
Now fully updated! Get the master guide to Control Language programming.
List Price $79.95

Now On Sale

IBM i5/iSeries Primer IBM i5/iSeries Primer
Check out the ultimate resource and “must-have” guide for every professional working with the i5/iSeries.
List Price $99.95

Now On Sale

Qshell for iSeries Qshell for iSeries
Check out this Unix-style shell and utilities command interface for OS/400.
List Price $79.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: