fhg
Volume 10, Number 3 -- January 20, 2010

Can a Function Return More Than One Value?

Published: January 20, 2010

Hey, Ted:

Is it possible for an RPG subprocedure to return more than one value? (I assume it isn't; the RETURN opcode only allows for one argument.) I want to write a function subprocedure that will return a data structure of information taken from various database files. However, the subprocedure will also need to return a status code to indicate whether or not the I/O was successful. Do you have any suggestions?

--Travis


What you want to do is something like this:

eval (MyDataStructure: Status) = GetData (KeyValue)

No, that won't work. But I can show you two other ways that will.

Let's set up a situation like the one you're describing. Suppose a service program needs a subprocedure GetCustInfo to provide customer data to its caller. It also needs to tell the caller whether the data retrieval succeeded or not.

One way to handle this is to return both values in parameters. GetCustInfo uses the values in Company and Customer to retrieve the data, then modifies CustRec and FileStatus accordingly. The subprocedure behaves as a subroutine, not as a function, and any RETURN opcodes in the subprocedure do not have arguments.

P GetCustInfo     b
D                 pi
D  inCompany                     3p 0 value
D  inCustomer                    5p 0 value
D  ouCustRec                          likeds(CustRec)
D  ouStatus                      1p 0
D
D CustKey         ds                  likerec(Customer: *key)
 /free
     CustKey.CompanyNo = inCompany;
     CustKey.CustomerNo = inCustomer;
     monitor;
        chain %kds(CustKey) Customer ouCustRec;
        if %found();
           ouStatus = *zero;
        else;
           ouStatus = 1;
        endif;
     on-error;
        ouStatus = 2;
     endmon;
     return;
 /end-free
P                 e

Use CALLP to invoke GetCustInfo.

D Company         s              3p 0
D Customer        s              5p 0
D FileStatus      s              1p 0
D CustRec         ds                  likerec(Customer: *input) inz
 /free
   callp GetCustInfo (Company: Customer: CustRec: FileStatus);

If you prefer, you can use a function subprocedure that modifies a parameter. The function passes two values--a status code and a data structure--to the caller through two mechanisms, so which mechanism should you pair with which value?

I prefer to pass data through the modified parameter and let the function return the status.

P GetCustInfo     b
D                 pi             1p 0
D  inCompany                     3p 0 value
D  inCustomer                    5p 0 value
D  ouCustRec                          likeds(CustRec)
D
D CustKey         ds                  likerec(Customer: *key)
 /free
     CustKey.CompanyNo = inCompany;
     CustKey.CustomerNo = inCustomer;
     monitor;
        chain %kds(CustKey) Customer ouCustRec;
        if %found();
           return *zero;
        else;
           return 1;
        endif;
     on-error;
        return 2;
     endmon;
 /end-free
P                 e

For one thing, status codes tend to be small and data structures tend to be bigger. But an even greater advantage is that the function calls work well with control structures. For instance:

dow GetCustInfo(Company: Customer: CustRec) = *zero;

As a rule, functions do not modify parameters. After all, can you think of an RPG built-in function that modifies an argument? But that's not to say that a function should never modify a parameter. Your application is a good example of that.

--Ted




                     Post this story to del.icio.us
               Post this story to Digg
    Post this story to Slashdot


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
E-mail: software@worksright.com
Web site: www.worksright.com


Senior Technical Editor: Ted Holt
Technical Editor: Joe Hertvik
Contributing Technical Editors: Erwin Earley, Brian Kelly, Michael Sansoterra
Publisher and Advertising Director: Jenny Thomas
Advertising Sales Representative: Kim Reed
Contact the Editors: To contact anyone on the IT Jungle Team
Go to our contacts page and send us a message.

Sponsored Links

PowerTech:  Strengthen your security. Get a FREE Compliance Assessment today
Profound Logic Software:  FREE Webinar, Jan 27. Learn how to integrate your i apps and save big
COMMON:  Join us at the annual 2010 conference, May 3 - 6, in Orlando, Florida


 

IT Jungle Store Top Book Picks

Easy Steps to Internet Programming for AS/400, iSeries, and System i: List Price, $49.95
The iSeries Express Web Implementer's Guide: List Price, $49.95
The System i RPG & RPG IV Tutorial and Lab Exercises: List Price, $59.95
The System i Pocket RPG & RPG IV Guide: List Price, $69.95
The iSeries Pocket Database Guide: List Price, $59.00
The iSeries Pocket SQL Guide: List Price, $59.00
The iSeries Pocket Query Guide: List Price, $49.00
The iSeries Pocket WebFacing Primer: List Price, $39.00
Migrating to WebSphere Express for iSeries: List Price, $49.00
Getting Started With WebSphere Development Studio Client for iSeries: List Price, $89.00
Getting Started with WebSphere Express for iSeries: List Price, $49.00
Can the AS/400 Survive IBM?: List Price, $49.00
Chip Wars: List Price, $29.95


 
The Four Hundred
The System iWant, 2010 Edition: Big Boxes

Analysts Bid Good Riddance to IT Recession

Microsoft, HP Talk Up Frontline Integrated Systems

Mad Dog 21/21: Orwell's Flat

Lawson Bets More Heavily on Healthcare

Four Hundred Stuff
Unitrends Delivers Backup Simplicity with D2D Appliances

Rainmaker's Profit Optimization Software Good as Gold to Casinos

Pat Townsend Updates MFT Offering for i/OS

Linoma Bolsters GoAnywhere MFT Tool with New Features

FIS Reports Solid 2009 Sales of i/OS Core Banking System

Four Hundred Monitor
Four Hundred Monitor's
Full iSeries Events Calendar

System i PTF Guide
January 16, 2010: Volume 12, Number 03

January 9, 2010: Volume 12, Number 02

January 2, 2010: Volume 12, Number 01

December 26, 2009: Volume 11, Number 52

December 19, 2009: Volume 11, Number 51

December 12, 2009: Volume 11, Number 50

TPM at The Register
Intel linked with HPC boost buy

Intel rides Nehalem to heavenly profits

Big Blue rides Schooner to MySQL boost

AMD's GlobalFoundries consumes Chartered Semi rival

Nvidia gets biological with life sciences nerds

VMware hypervisors on the Go

HP, Microsoft form $250m IT tag team

Sun marries Hadoop to Grid Engine

Cisco taps Avnet to peddle 'California' servers

Tech downturn is history, says Forrester

Terracotta polishes Quartz job scheduler

Sun, Fujitsu juice entry Sparc box

THIS ISSUE SPONSORED BY:

SEQUEL Software
WorksRight Software
COMMON


Printer Friendly Version


TABLE OF CONTENTS
Run SQL Scripts: Use Temporary JDBC Settings

Can a Function Return More Than One Value?

Admin Alert: Erasing i5/OS Disk for Fun and Compliance

Four Hundred Guru

BACK ISSUES




 
Subscription Information:
You can unsubscribe, change your email address, or sign up for any of IT Jungle's free e-newsletters through our Web site at http://www.itjungle.com/sub/subscribe.html.

Copyright © 1996-2010 Guild Companies, Inc. All Rights Reserved.
Guild Companies, Inc., 50 Park Terrace East, Suite 8F, New York, NY 10034

Privacy Statement