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 Future consideration
Workspace IBM i
Categories Languages - RPG
Created by Guest
Created on Jun 30, 2026

Allow access to return value in ON-EXIT section

The ON-EXIT section (sub-procedure) is great, and it's even possivle to "override" the return value from inside the ON-EXIT section:

  //.. inside procedure
return 123;

on-exit;
return 456;
end-proc;

But we have no solution so far to retrieve/see the original return value.

I propose a solution to access the original return value of the *OWNER procedure from inside the ON-EXIT section - I can imagine different ideas to to that:

  1. Using the _QRNU_RETVAL variable that is supplied by specifying the DEBUG(*RETVAL) control keyword:
    Pro: this mechanic is already know by most developers
    Contra: the control keyword might have to be specified - even if it's now wanted

  //.. inside procedure
return 123;

on-exit;
if _QRNU_RETVAL = 123;
return 456;
endif;
end-proc;
  1. Using a new %BIF that is only available inside the ON-EXIT section:
    Pro: no control keyword necessary
    Contra: ?

  //.. inside procedure
return 123;

on-exit;
if %retval() = 123;
return 456;
endif;
end-proc;

Both solutions provide a good way to access the return value.

Idea priority Medium
  • Guest
    Jul 30, 2026
    IBM will use this Idea as input to planning, but no commitment is made or implied. This Idea will be updated in the future if IBM implements it. IBM will use votes and comments from others in the community to help prioritize this Idea.

    If this Idea is implemented, it would most likely use the %RETVAL suggestion.

    However, there would be special rules for %RETVAL() for procedures that return a data structure or an array. For those procedures, the programmer would need to assign %RETVAL() to a variable defined the same way as the return value.

    For example:

    dcl-proc proc1;
    dcl-pi *n likeds(ds1) end-pi;
    dcl-s on_exit_retval likeds(ds1);

    on-exit;
    on_exit_retval = %retval();
    if on_exit_retval.subf = 123;
    on_exit_retval.subf = 456;
    return on_exit_retval;
    endif;
    end-proc;

    - IBM Power Systems Development