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.

ADD A NEW IDEA

Languages - RPG

Showing 147

Allow generic member/file name for /COPY and /INCLUDE compiler directive

Today if we have to include several copy member, we have use one /COPY or /INCLUDE directive per member: /include qcopysrc,copy01/include qcopysrc,copy02/include qcopysrc,copy03 My proposal is, to extend the /COPY and /INCLUDE directive to support...
2 months ago in IBM i / Languages - RPG 8 Not under consideration

Allow checking multiple defined conditions with one /IF compiler directive

Checking multiple defined conditions is cumbersome - if a part of code should only be combined when two conditions are defined, one has to use nested /IF directives: /IF DEFINED(condition1) /IF DEFINED(condition2) // code only compiled when condit...
6 months ago in IBM i / Languages - RPG 1 Not under consideration

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_c...
about 1 month ago in IBM i / Languages - RPG 2 Not under consideration

Enhance Dcl-Enum to be multilevel as Dlc-Ds

Dcl-Enum is very usefull but could be even better if provides multi-level definition as Dcl-Ds: Dcl-Enum Errors qualified; Dcl-Enum Severity; Info 'I'; Halt 'H'; End-Enum; Dcl-Enum Actions; Abort 'A'; Exit 'E'; End-Enum; End-Enum; Select RetCode; ...
7 months ago in IBM i / Languages - RPG 1 Not under consideration

Add configurable continuation start column (left margin) for fully free-form RPG (**FREE)

RPG IV currently supports two “free format” models: Hybrid free format (traditional RPG IV), where a statement is considered free format when it begins in column 8 or later. Fully free format using **FREE in column 1, where all source lines are fr...
21 days ago in IBM i / Languages - RPG 1 Not under consideration

Enable options(*exact) for indicators.

I am the developer of RPGUNIT and recently I added procedure assertEqual() to it. This procedure handles all data types, because it uses the OVERLOAD keyword for delegating the call to the procedure that is in charge for the data type. dcl-pr asse...
over 1 year ago in IBM i / Languages - RPG 3 Not under consideration

provide QSYSINC RPG includes in full free format

Today, we have QSYSINC RPG includes members in fixed format. More and more applications are nowadays written using full free format. Even IBM has a strong focus on using this format. Therefore, it would be consistent to have QSYSINC RPG includes m...
8 months ago in IBM i / Languages - RPG 2 Not under consideration

Change of name for ILE/RPG

Time to give ILE/RPG a new name that is better suited to its current form.Call it "RPG for i", matching "Db2 for i". Use Case: By giving the RPG product a new name will help us define the difference between modern free format RPG & the older f...
over 5 years ago in IBM i / Languages - RPG 8 Not under consideration

RPG block comments

Single line comments are allowed today by // however the commonly used block comment /* … */ are not. Use Case: Since **free don't have a concept of H,C,F spec it should be straight forward to implement the /* .. */ block comment syntax. The work ...
almost 8 years ago in IBM i / Languages - RPG 9 Not under consideration

All **FREE to be the first non-blank line in source code instead of strictly the first line

When I code, I always leave the top line blank for various reasons. Also many developers do the same. Some reasons include that RDi doesn't let you insert a line before line 1 (try it, it doesn't) but that's minor. For the most part, I want the co...
8 months ago in IBM i / Languages - RPG 3 Not under consideration