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.

Status Future consideration
Workspace IBM i
Categories Languages - RPG
Created by Guest
Created on Mar 7, 2024

Allow %right, %left, and %subdt to left of assignment operator =

%subst is allowed on the left of an assignment operator, in order to change a substring.

It would be nice if %left, %right, and %subdt could do the same.


Instead of:

if  (%len(%trimr(XREF)) > %len(F1XREF));
%subst(F1XREF:(%len(F1XREF) - 2)) = '...';
endif;

I could code

if  (%len(%trimr(XREF)) > %len(F1XREF));
%right(F1XREF:3) = '...';
endif;


Would be nice if %subdt could be used similarly to assign a part of a date or time:
%subdt(MyDateField: *d) = 01;

Idea priority Low
  • Guest
    Apr 28, 2026
    Regarding the support for %LEFT and %RIGHT as the target for an assignment, that aspect is also accepted.

    However, there is a restriction for %SUBST as the target of an assignment that the length operand is not supported in CHARCOUNT NATURAL mode. That same restriction would be applied to %LEFT and %RIGHT: They would not be allowed as the target of an assignment in CHARCOUNT NATURAL mode.

    - IBM Power Systems Development
  • Guest
    Jun 10, 2024
    Regarding the aspect of this Idea to support %SUBDT on the left-hand-side of an assignment, IBM will use this Idea as input to planning, but no commitment is made or implied. This Idea will be updated in the future if IBM implements it. IBM will use votes and comments from others in the community to help prioritize this Idea.

    However, it is unlikely that %LEFT and %RIGHT would be supported on the left-hand-side of an assignment.

    -IBM Power Systems Development
4 MERGED

Allow %LEFT built-in function to be used on the left-side of the assignment statement

Merged
When migrating to free format RPG IV, converting some operations like MOVEL and CAT need to be converted to what amounts to a Substring operation for the target variable. That means aggravating calculations to determine the length argument for %SU...
about 2 months ago in IBM i / Languages - RPG Future consideration