Skip to Main Content
IBM Power Ideas Portal


This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

25 Not supported for the current status
Status Future consideration
Workspace IBM i
Categories Languages - RPG
Created by Guest
Created on Feb 27, 2026
Merged idea
This idea has been merged into another idea. To comment or vote on this idea, please visit IBMI-I-4733 Extend prototyped procedure calls with "keyword parameters".

Introduce named parameters at program and procedure calls Merged

When calling SQL stored procedures and User defined Functions parameters can be passed with an argument list (i.e. Naming the parameter and assigning the parameter value to the named parameter).

Would be great if we could call (prototyped) Programs and Procedures in the same or similar way. The parameter name could be taken from the Procedure Interface (or may be the programmers can be forced to name their parameters in the Prototypes, if they want to use this Call method).

Optional Parameters or omitted parameters just could be skipped. 

It would be really helpful for programs and procedures with a bunch of parameters. Would be easier to read and also to code:

Instead of 

ProcName(Col1, 0, 0, 0, '', '', 'ABC') 

the call could be coded as 

ProcName(ParName1 => Col1: 
			    ParName2 => *Zeros:
			    ParName3 => *Zeros:
			    ParName4 => *Zeros:
			    ParName5 => *Zeros:
			    ParName6 => '':
			    ParName7 => '':
			    ParName8 => 'ABC');

or even simpler (assumed Par2 - Par7 are *Omitted):

ProcName(ParName1 => Col1: ParName8 => 'ABC');

 

Idea priority Medium
  • Guest
    Mar 5, 2026
    Your request is a duplicate of IBM Idea IBMI-I-4733.
    https://ibm-power-systems.ideas.ibm.com/ideas/IBMI-I-4733.

    - IBM Power Systems Development
  • Guest
    Mar 2, 2026

    I think this adds documentation to the code. It's easy while you are writing it but come back a few years later and try and work out what a '1' in parm 7 actuall means.

  • Guest
    Feb 28, 2026

    Goid idea like sql

  • Guest
    Feb 27, 2026
    You think this:
    
    ProcName(ParName1 => Col1: ParName2 => *Zeros: ParName3 => *Zeros: ParName4 => *Zeros: ParName5 => *Zeros: ParName6 => '': ParName7 => '': ParName8 => 'ABC');
    
    is easier to code than this:
    
    ProcName(Col1, 0, 0, 0, '', '', 'ABC')
    
    ??
  • Guest
    Feb 27, 2026

    Keep it simple by having a parm string like:
    parm1=abcd,parm3=123,parm4=0,

     

  • Guest
    Feb 27, 2026

    I think this is a great idea - so many modern (and some older) languages support this. Smalltalk, Ada, Ruby, Swift and even C#. 

    Please introduce this into **FREE RPG !!