• The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
Menu
  • The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
  • 10 Facts You Should Know about Special Values

    October 26, 2011 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')
    
    

    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

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Tags:

    Sponsored by
    Midrange Dynamics North America

    Git up to speed with MDChange!

    Git can be lightning-fast when dealing with just a few hundred items in a repository. But when dealing with tens of thousands of items, transaction wait times can take minutes.

    MDChange offers an elegant solution that enables you to work efficiently any size Git repository while making your Git experience seamless and highly responsive.

    Learn more.

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    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

    On ‘GTFM’ and a Place for Experts Bang For The Buck on Power7 Gen 2 Servers

    Leave a Reply Cancel reply

Volume 11, Number 32 -- October 26, 2011
THIS ISSUE SPONSORED BY:

ProData Computer Services
WorksRight Software
The 400 School

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

Content archive

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

Recent Posts

  • Public Preview For Watson Code Assistant for i Available Soon
  • COMMON Youth Movement Continues at POWERUp 2025
  • IBM Preserves Memory Investments Across Power10 And Power11
  • Eradani Uses AI For New EDI And API Service
  • Picking Apart IBM’s $150 Billion In US Manufacturing And R&D
  • FAX/400 And CICS For i Are Dead. What Will IBM Kill Next?
  • Fresche Overhauls X-Analysis With Web UI, AI Smarts
  • Is It Time To Add The Rust Programming Language To IBM i?
  • Is IBM Going To Raise Prices On Power10 Expert Care?
  • IBM i PTF Guide, Volume 27, Number 20

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