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 46

Change RPG compiler to require prototypes for exported procedures

With 7.1 the compiler was changed to not require prototypes for procedures of a RPG module. While that change is great for local procedures, it is really bad for exported procedures, because the compiler does not necessarily validate the prototype...
about 6 years ago in IBM i / Languages - RPG 15 Delivered

Support Array names and %SUBARR on %MIN and %MAX in RPG IV

The IBM i v7r2 RPG IV enhancements of %MIN and %MAX do not support the use of an RPG ARRAY name as their only parameter. This would provide the ability to extract the min/max of an array of elements. Supporting an array name as well as %SUBARR wou...
about 6 years ago in IBM i / Languages - RPG 12 Delivered

Add Joblog Messaging Built-in Function to RPG IV

Need simplified methods for writing messages from RPG IV to the Joblog. To that end, we need built-in function that will:write to the joblog using Qp0zLprintf or similar. This built-in function should be named %JOBLOG.Send various message types (*...
over 6 years ago in IBM i / Languages - RPG 10 Delivered

RNF8042 -- Not enough source records for compile time array should have at least severity 10 instead of 00

If you are compiling a program and have a compile time array where there are not enough source records provided to load array or table you get the message id RNF8042: RNF8042 Not enough source records provided to load array or table. The problem i...
over 6 years ago in IBM i / Languages - RPG 3 Delivered

RPG - options(*autostring) in prototypes

To get a more "polymorph" approach to transfer parameter to API's - it would be nice if a prototype could be declare to automatically convert date, time, timestamp, int, packed, zoned, char's and varchar to zero terminated strings with that same c...
over 6 years ago in IBM i / Languages - RPG 10 Delivered

system name in program datastructure

Hello, when you Change the program datastructure (RFE 103671) would it be possible to add the System Name? When you work with different systems you often need the system name. Today you have to use a API to get the system name. It would be really ...
over 6 years ago in IBM i / Languages - RPG 6 Delivered

Change RNF ID & help text for global array starting with TAB

I ran into an issue yesterday where I created a global variable as an array. The variable name was Table_Title. When I attempted to access the array using an element ID (ie. Table_Title(1)), the compiler would throw an RNF0528 "The index is not al...
almost 7 years ago in IBM i / Languages - RPG 3 Delivered
126 VOTE

New built-in function %SPLIT.

The new built-in function %SPLIT can be used to extract an array of elements from a source string. Use Case: DCL-S myArray VARCHAR(255) DIM(255);DCL-S myString VARCHAR(32767) INZ('a;b;c');DCL-C MY_SEPARATOR ';'; myArray = %SPLIT(myString : MY_SEPA...
almost 7 years ago in IBM i / Languages - RPG 20 Delivered

%int() and %dec()does not allow blank character string

If I use a character string that only contain spaces or a variable character string with length=0 then %int() and %dec() returns with an escape message RNX0105 - "A character representation of a numeric value is in error.". I have studied the manu...
almost 7 years ago in IBM i / Languages - RPG 7 Delivered

Logical expressions resulting to *On/*Off

The result of a logical expression should evaluate to *On (True) or *Off (False) Use Case: DoW *On; // Infinite loopDoW *Off; // Bypass the loop. can be useful for testingDoU *Off; // Infinite loopDoU *On; If *On;If *Off;Etc. Now, compiler gives e...
almost 7 years ago in IBM i / Languages - RPG 10 Delivered