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
Created by Guest
Created on Mar 26, 2024

Show true data type of parameters declared with *EXACT

When showing content assist, or in the Outline view, when displaying the prototype of a procedure, show the actual declared data type for the parameters declared with options(*EXACT).  This keyword requires that we pass a variable declared EXACTLY LIKE the parameter, so we need to know HOW that  parameter was actually declared to be able to declare a suitable variable to pass.

For example, given the following declarations (forgive me the silly names), I cannot pass any old varchar( 128 ) to the procedure, it MUST be declared like( someString_t ) or RNF0203 is signaled during compile. I cannot find anywhere in RDi where the actual declared data type is displayed -- even in the Outline view it will say varchar( 128 ) instead of like( someString_t ).

dcl-s  someString_t varchar( 128 );
dcl-pr GetThatString extproc( *dclcase );
  string_id int( 10 ) const;
  string like( someString_t ) options( *exact );
end-pr;

It would save a lot of time not having to open the include to look up the prototype to see what actual data type I should be passing.  

Idea priority Low
  • Guest
    Reply
    |
    Apr 2, 2024
    Although the theme of this request is consistent with our business strategy, it is not committed to the release that is currently under development.

    IBM Power Systems Development - RDi team
  • Guest
    Reply
    |
    Mar 29, 2024

    UPDATE:

    If you have the time and want to be really slick and blow our minds, only SUGGEST variables that are declared with the same type (not compatible variations, but exactly the same type) and are appropriate for the parameter being prompted at the time.