fhg
Volume 11, Number 32 -- October 26, 2011

10 Facts You Should Know about Special Values

Published: October 26, 2011

by Ted Holt

Imagine not being allowed to code *FIRST in the MBR parameter of the Override with Database File (OVRDBF) command. Horrible thought, isn't it? Special values make commands more sensible and easy to use. Here are 10 facts every IBM i developer should know in order to effectively use special values in his own commands.

1. Special values are character strings that are incompatible with validity checking rules. In this example, BATCH requires a three-digit number, and *ALL does not fit that description.

PARM  KWD(BATCH) +
      TYPE(*DEC) LEN(3 0) +
      DFT(*ALL) +
      REL(*GT 0) +
      SPCVAL((*ALL -1)) +
      PROMPT('Batch number')</all>

2. Special values make it easier for humans to communicate with computers. Here's a logical parameter that accepts *YES and *NO. These values make more sense to humans than 1 and 0.

PARM  KWD(BLANKRECS) TYPE(*LGL) +
       RSTD(*YES) +
       DFT(*YES) +
       SPCVAL((*YES '1') (*NO '0')) +
       PROMPT('Write blank records?' 5)

3. IBM's standard is that special values begin with an asterisk, but this is not a system requirement. Here ALL is a special value.

PARM  KWD(BATCH) +
       TYPE(*DEC) LEN(3 0) +
       DFT(ALL) +
       REL(*GT 0) +
       SPCVAL((ALL -1)) +
       PROMPT('Batch number')
</all>

4. The data type and length of a data element match the underlying values, not the special values. BATCH is defined here as a three-digit decimal number with no decimal places, not as a four-byte character variable.

PARM  KWD(BATCH) +
      TYPE(*DEC) LEN(3 0) +
      DFT(*ALL) +
      REL(*GT 0) +
      SPCVAL((*ALL -1)) +
      PROMPT('Batch number') </all>

5. A special value may be passed as is, or replaced by a replacement value, when passed to the command-processing program (CPP). Here *MBR is passed to the CPP.

PARM  KWD(WORKMBR) TYPE(*NAME) DFT(*MBR) +
        SPCVAL((*MBR)) EXPR(*YES) PMTCTL(CHANGE) +
        PROMPT('Member')

But here a blank and an asterisk replace *BLANK and *AST respectively.

PARM   KWD(CURRENCY) TYPE(*CHAR) LEN(1) DFT(*BLANK) +
        RANGE(X'41' X'FE') +
        SPCVAL((*BLANK ' ') (*AST '*')) +
        EXPR(*YES) PROMPT('Currency fill character')

6. If the replacement value of special value *CURLIB is the unquoted string *CURLIB, the name of the current library is passed to the command-processing program. Otherwise, the string *CURLIB is passed to the CPP. In this example, there is no replacement value, so the string *CURLIB will be passed to the CPP.

QUAL  TYPE(*NAME) LEN(10) DFT(*LIBL) +
       SPCVAL((*LIBL) (*CURLIB)) +
       EXPR(*YES) +
       PROMPT('Library')

But here *CURLIB is replaced with the name of the current library.

QUAL  TYPE(*NAME) LEN(10) DFT(*LIBL) +
       SPCVAL((*LIBL) (*CURLIB *CURLIB)) +
       EXPR(*YES) +      
       PROMPT('Library')

If the job has no defined current library, QGPL is passed to the CPP.

7. You can ignore errors of severity 20 and below in the compiler listing, provided that the command processing program can properly handle the invalid substitution values. The following parameter definition generates three CPF0257 errors, because the three replacement values are not valid dates. However, because the CPP must define date fields as seven-byte character variables, the replacement values are appropriate ones.

PARM  KWD(DATE) TYPE(*DATE) +
       DFT(TODAY) +
       SPCVAL((TODAY 2222222) (YESTERDAY 3333333) (TOMORROW 4444444)) +
       EXPR(*YES) +
       PROMPT('Cutoff date')

8. You may list up to 300 special values in the SPCVAL parameter. This PARM defines three special values.

PARM  KWD(SPLNBR) TYPE(*INT4) +
       DFT(*ONLY) +
       RANGE(1 999999) +
       SPCVAL((*ONLY 0) (*LAST -1) (*ANY -2)) +
       EXPR(*YES) +
       PROMPT('Spooled file number' 4)

9. Special values may be used in PARM, ELEM and QUAL statements. I've already shown several PARM examples, so here is an example of a qualified parameter that accepts special values.

            PARM  KWD(TEMPLATE) TYPE(FILE1) MIN(1) +
                   PROMPT('Template' 1)

FILE1:      ELEM  TYPE(QUALFILE1) MIN(1) PROMPT('File')
            ELEM  TYPE(*NAME) LEN(10) DFT(*FIRST) +
                   SPCVAL((*FIRST)) EXPR(*YES) PROMPT('Member')

QUALFILE1:  QUAL  TYPE(*NAME) LEN(10) MIN(1) EXPR(*YES)
            QUAL  TYPE(*NAME) LEN(10) DFT(*LIBL) + 
                  SPCVAL((*LIBL) (*CURLIB)) EXPR(*YES) +
                  PROMPT'Library')

10. Special values are not allowed when a parameter returns a value to the caller. (That is, the RTNVAL keyword has the value *YES.) This restriction is not a hardship, because it is hard to imagine a reason why a person would want to define input values for an output parameter.




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


Sponsored By
PRODATA COMPUTER SERVICES

Don't be a D'Bu in headlights!

RDB Connect provides full SQL access to remote databases
from all System i high-level languages.

                                                                     Microsoft SQL
                                                                     MySQL
                                                                     Oracle
                                                                     DB2
                                                                     and More!

Learn how to access remote data with our RDB Connect On-Demand Webinar

Download your free trials NOW.
www.prodatacomputer.com
800.228.6318


Senior Technical Editor: Ted Holt
Technical Editor: Joe Hertvik
Contributing Technical Editors: Edwin 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

New Generation Software:  FREE Business Intelligence Webinar. November 9
Dan Riehl Presents:  Fall Training Sale – Discounts up to 40%! RPG IV COBOL CL Admin Security
Connectria Hosting:  What's your IBM System i strategy? Download our FREE report


 

IT Jungle Store Top Book Picks

BACK IN STOCK: Easy Steps to Internet Programming for System i: List Price, $49.95

The iSeries Express Web Implementer's Guide: List Price, $49.95
The iSeries Pocket Database Guide: List Price, $59
The iSeries Pocket SQL Guide: List Price, $59
The iSeries Pocket WebFacing Primer: List Price, $39
Migrating to WebSphere Express for iSeries: List Price, $49
Getting Started with WebSphere Express for iSeries: List Price, $49
The All-Everything Operating System: List Price, $35
The Best Joomla! Tutorial Ever!: List Price, $19.95


 
The Four Hundred
IBM Gooses Power Systems Storage and Networking

Power Systems Carries That Weight In IBM's Third Quarter

IBM Bolsters PowerHA with New Replication Options, GUI

As I See It: One Cabbage Leaf

RPG Open Access Availability Expands Modernization Efforts

Four Hundred Stuff
Where's the IBM-Based IBM i Cloud Offering?

Coglin Mill's ETL Makes Data Warehousing on IBM i More Attractive

UNIT4 CODA Asserts Itself with 'Destination: Control' Release

Townsend Adds Open PGP Encryption to MFT Software

IBS Launches New Cloud and Mobile Apps for ERP Customers

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

System i PTF Guide
October 22, 2011: Volume 13, Number 7

October 15, 2011: Volume 13, Number 6

October 8, 2011: Volume 13, Number 5

October 1, 2011: Volume 13, Number 4

September 23, 2011: Volume 13, Number 3

September 17, 2011: Volume 13, Number 2

TPM at The Register
Juniper profits get a haircut in Q3

AMD taps Papermaster as CTO

Telefonica, Verizon ready VMware schizophones

Cisco girds Nexus switches for data center battle

Intel mocks PC slowdown, laughs at skittish economy

HP fortifies VirtualSystem arsenal

VMware profits more than double in Q3

IBM's mainframe upgrade cycle weakens

SGI inks reseller deal with Cloudera

IBM big iron OSes treated to spit and polish

Appro notches up another Los Alamos super deal

iPad baby baffled by paper magazine

THIS ISSUE SPONSORED BY:

ProData Computer Services
WorksRight Software
The 400 School


Printer Friendly Version


TABLE OF CONTENTS
10 Facts You Should Know about Special Values

VALUES: A Truly Useless DDS Keyword

Limiting How Much Memory a Storage Pool Can Allocate

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-2011 Guild Companies, Inc. All Rights Reserved.
Guild Companies, Inc., 50 Park Terrace East, Suite 8F, New York, NY 10034

Privacy Statement