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.

Status Not under consideration
Workspace IBM i
Categories Languages - RPG
Created by Guest
Created on Dec 13, 2025

Allow overloaded procedures to return different data types

Allow overloaded procedure prototypes to return different data type

Example:

dcl-pr proc_char varchar(100);
parm1 varchar(100) const;
end-pr;

dcl-pr proc_int int(10);
parm1 int(10) const;
end-pr;

dcl-pr proc like(*prototype) overload(proc_int:proc_char);

It would allow the creation of procedures that "replace" their input parameters with an equivalent value in an expression:

if proc(123) = 123 and proc('ABC') = 'ABC';
...
endif;

It should definitely be an explicit / new keyword only allowed with an overload prototype, so that no existing code gets broken.





Idea priority Medium
  • Guest
    Jan 6, 2026
    Thank you for taking the time to submit your Idea. However, IBM does not intend to provide a solution to this Idea at this time, so it is being closed.

    It is not feasible to allow overloaded prototypes to have different return types.

    - IBM Power Systems Development
  • Guest
    Dec 22, 2025

    I disagree with this idea ... the point of overloaded procedures is to allow the same procedure name to be referenced with different parameters and return a consistent result.

    Having the procedure return different result types would cause confusion and result in significantly more programming effort because you would have to code for each parameter combination in addition to each result type.