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 125

Add %FKEY Built-in Function to RPG IV

In RPG IV when working with Screens, we see programmers using *INKx response indicators, *INxx regular indicators, and the WSDS Pos(369) to determine which Fn key was pressed.RPG needs a built-in function, %FKEY() that allows users to test which k...
over 3 years ago in IBM i / Languages - RPG 14 Not under consideration

Provide a ?not in? operator.

Now that we have a conditional “in” operator, please provide a “not in” operator, that can be used wherever “in” can, eg, with %lists, %ranges, arrays, etc. Use Case: Currently, to check if the value of a field is not in a list (or range, etc), we...
over 2 years ago in IBM i / Languages - RPG 2 Not under consideration

Allow Standalone Field Declarations to Reference Subfields of Nested DS Arrays

Declaring a standalone field with a reference field (keyword: LIKE) should work if the referenced field is a subfield of a data structure array in a nested data structure. Use Case: dcl-ds DS_A qualified template; dcl-ds DS_Arr_B dim(10); field1 v...
almost 3 years ago in IBM i / Languages - RPG 5 Not under consideration

%SCANRPL to replace only *FIRST or *LAST occurence

%SCANRPL is a nice and usefull function but sometimes we need to limit the replacement to the first or the last occurence. Use Case: When we use long varying strings with placeholders some of them are repeated and we cannot use %SCANRPL.
over 5 years ago in IBM i / Languages - RPG 5 Not under consideration

Handle %split like an array

%split is a great new feature for us, but it can be a bit tricky to handle. In order to access the second element, we need to first put the element in an array. It would be interesting if we could access the element like an array, such as in the f...
8 months ago in IBM i / Languages - RPG 1 Not under consideration

Native CLOB and BLOB in RPG

CLOB and BLOB fields as dynamic size dependent on actual datasize. It would be appreciated that RPG could support these datatypes native in RPG and used exactly like varchar with out any explicit size Use Case: CLOB and BLOB is implemented as a st...
about 5 years ago in IBM i / Languages - RPG 3 Not under consideration

Allow multiple definitions in a Dcl-s statement

A very usefull future I found in other languages is multiple variable definition in one line of code: Dcl-s a b c int(10); is clearly faster and shorter than: Dcl-s a int(10);Dcl-s b int(10);Dcl-s c int(10); Use Case: nd
about 5 years ago in IBM i / Languages - RPG 6 Not under consideration

Enhance %char %BIF to add %EDITC functionality %CHAR(mynumber:*NOZEROSUPPRES|*ZEROSUPPRESS)

If we have a numeric field and want to put it in a CHAR field it will show the leading zeros: Assuming myNumber is 7,0 numeric and myAlpha is 7 alpha >> myAlpha = %char(myNumber); myAlpha = '123____' to keep the leading zeros we have to use ...
over 3 years ago in IBM i / Languages - RPG 3 Not under consideration

ENUM construct an function

ENUM Similarly to java and other languages an enum construct may be useful to rpg programmer. It involves declaring key-value pairs and an instruction to find the value corresponding to the key provided e.g.: declare the enumeration name (enumerat...
8 months ago in IBM i / Languages - RPG 1 Not under consideration

Provide a "not-in" operator

Now that we have a conditional “in” operator, please provide a “not-in” operator, that can be used wherever “in” can, eg, with %lists, %ranges, arrays, etc. Currently, we need to code the awkward if not (Value in %list(x:y:...)); with not-in, this...
about 2 years ago in IBM i / Languages - RPG 6 Not under consideration