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 4264

bring timestamp timezone awareness

Please add timezone awareness to TIMESTAMP primitive value. Additionally, add the possibility to return current UTC time to BIF %TIMESTAMP ts1 = %TIMESTAMP() // system current timestamp ts2 = %TIMESTAMP(*UTC) // current utc timestamp seconds = %DI...
11 months ago in IBM i / Languages - RPG 3 Future 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

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

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

%DECH enhancement for length and decimal places

The idea is to enhance %DECH() BIF: a) allow the the use %len() and %decpos() for parameters 2 and 3 Example: dcl-s n1 zoned(10:2) inz; n1 = %dech( 12345 / 1000 : %len(n1) : %decpos(n1) ); b) make parameters 2 and 3 optional and retrieve the lengt...
5 months ago in IBM i / Languages - RPG 2 Under review

Add *TARGET to all RPG functions similar to *SRC in DDS

Example: %SUBST(NAME:1:1)=%UPPER(*TARGET); /* new way var. NAME is mentioned only once and %SUBST is not repeated*/ Instead of %SUBST(NAME:1:1)=%UPPER(NAME:1:1); /* var. NAME is repeated twice */ Also in mathematical statements: COUNTER=*TARGET+1 ...
4 months ago in IBM i / Languages - RPG 1 Future 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

Don't incl Hidden fields on DS defined based on external name

When a data structure is defined based on a table with hidden fields the compiler shouldn't include hidden fields in the structure. Now option available to exclude these on the definition Use Case: When defining a data structure based on an table ...
over 3 years ago in IBM i / Languages - RPG 4 Future consideration