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

RETURN value from REXX Procedure to RPG/ILE via Prototype

I see the QREXX API and I know about the QREXQ API, but these are cumbersome to use when all you're looking for is a single RETURNed value from REXX. It would really be helpful if RPG/ILE would support a REXX-specific prototype, similar to the JAV...
over 4 years ago in IBM i / Languages - RPG 3 Not under consideration

Allow ability to control JobLog write with On-Error

Add an operational extender to the on-error opcode that would allow for control over a joblog write. When the programmer has stated that a specific error condition is trapped/controlled, we should be able to optionally suppress the job log message...
over 4 years ago in IBM i / Languages - RPG 4 Future consideration

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

RPG Regular Expression BIFS

Provide Built In Functions to facilitate testing string values against regular expressions without needing to compile the expression etc using APIs. This will make it easier for developers to make use of this technology. Use Case: Matches : if (%m...
almost 5 years ago in IBM i / Languages - RPG 3 Not under consideration

Enhance DCL-DS to emulate "i-Spec Member Format Identifier" in **free & /free

When using **free (or /free) RPG, there is nowhere to specify the use of i-specs within the particular program. Overall, I agree with this, as i-specs really shouldn't be used. However - there are times, because of the way a logical file has been ...
about 5 years ago in IBM i / Languages - RPG 5 Not under consideration

Allow SQL name when declaring a data structure

Allow a data structure declaration to use a SQL name Use Case: dcl-ds thirdPT extName('THIRDPARTYTABLESQLNAME') alias qualified;end-Ds;
about 5 years ago in IBM i / Languages - RPG 4 Future consideration

Expand %XFOOT functionality to include subfields in DS array

I have the following DS / Arrays dcl-ds Order_Info_t qualified template; Order like(s1_order); Order_Pack_Qty like(s1_packqty); Order_Case_Qty like(s1_packqty); Order_Weight like(s1_weight);end-ds; dcl-ds Order_Summary qualified inz; Orders like(s...
about 5 years ago in IBM i / Languages - RPG 3 Future consideration

Program Dump enhancement

In RPG program dump, it highlights the error description, procedure name, Statement in Error line # ect at the top page. It will be more helpful if the dump can also provide the variable name that had the issue on the top of the dump. This is usef...
about 5 years ago in IBM i / Languages - RPG 2 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