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 211 of 4276

Ability to easily create a data structure with a null field map to correspond to a record’s DS to be used for SQL retrieval.

When defining a structure in RPGLE to be used on SQL I/O such as fetch or select, today we use DCL-DS @myds qualified… containing either subfields or auto generated subfields using a reference to an external file name, ie. extname(‘TABLE’) resulti...
5 months ago in IBM i / Languages - RPG 2 Under review

Allow 3rd parameter of %subst() to exceed length of string

Currently, if I use something like this: DNKYWD = %subst(NARR: 1: 10); when NARR is defined in the procedure interface like this: NARR Varchar(32740) const options(*varsize); I don't know how long NARR really is unless I check it. This causes an i...
almost 5 years ago in IBM i / Languages - RPG 2 Not under consideration

possibility to specify what decimal character %char() should use

I'm missing the possibility to specify what decimal character should be used in %char() overriding the control specification DECEDIT keyword. The standard european character is comma instead of point. But sometimes when generating CSV or XML files...
almost 7 years ago in IBM i / Languages - RPG 2 Future consideration

New Compiler Predefined Values for INCLUDE

It would be nice to have the library, file and member name of the source being compiled as predefined values for the INCLUDE or COPY compiler directives, like: *SRCLIB, *SRCFILE and *SRCMBR The format and rules for the directive would stay the sam...
about 8 years ago in IBM i / Languages - RPG 9 Not under consideration

New built-in function %RESET.

The %RESET built-in function can be used to query or set the reset value for a field. Use Case: IF %RESET(myField) <> myField;// myField has changedENDIF; // Assign new reset value at anytime.%RESET(myField1) = myField2;
about 8 years ago in IBM i / Languages - RPG 6 Not under consideration

New ASSERT op-code

Assertions are good programming style and widely in use in C, C++ and other languages. The idea is to have an ASSERT op-code like that: assert sqlcode in %list(0:100) 'Unexpected SQLCODE = '+%char(sqlcode); assert sqlcode = *zero %msg(...) %target...
3 months ago in IBM i / Languages - RPG 2 Submitted

Coding free format line should be possible from column 8 to end of line

If you can use fully free format (**free) then the free-form statements can appear between column 1 and the end of the line. Otherwise, the source is column-limited, and a free-form statement is coded in columns 8-80. I would like this limitation ...
over 3 years ago in IBM i / Languages - RPG 6 Not under consideration

Assign a timestamp to a date/time field without %date() / %time()

When assigning a timestamp to a date field or a time field it shouldn't be necessary to use %DATE() or %TIME() to do this. Use Case: D dateIso1 s D D dateIso2 s D D timeStamp s Z inz(*SYS) C eval dateIso1 = %date( timeStamp ) C eval dateIso2 = tim...
about 4 years ago in IBM i / Languages - RPG 3 Not under consideration

Allow array index to start from zero instead of 1

I would like to have the possibility to specify that the index of an array starts from zero instead of 1. Many times I have to code something like thiseval myArray(x+1) = 1234where x can have the value zero. If it was possible to specify that the ...
over 4 years ago in IBM i / Languages - RPG 5 Not under consideration

Create shortcut for eval(h) so user doesn't need to type in eval(h)

When performing calculations where we want to round-up, instead of typing Result = (Factor1 - Factor2) * Factor3; we need to type eval(h) Result = (Factor1 - Factor2) * Factor3; It would be nice if that could be simplified to Result(h) = (Factor1 ...
over 4 years ago in IBM i / Languages - RPG 4 Not under consideration