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 Aug 16, 2017

RPG - New BIF for comparing data structures

Based on this discussion:

https://www.ibm.com/developerworks/community/forums/html/topic?id=81260576-dab9-4955-b19b-a2c4b4130cd3&ps=25

Would like a BIF to compare corresponding fields in data structures. This would be a field-by-field comparison.


Use Case:

if %compcorr( myDS1 : myDS2 );
// Do something if data structure corresponding fields match
else;
// Do something if comparison fails
endif;


Idea priority Medium
  • Guest
    Reply
    |
    Mar 22, 2021

    I made a suggestion about using %KDS() for comparisation but it was declined.
    https://www.ibm.com/developerworks/rfe/execute?use_case=viewRfe&CR_ID=140212
    IBM referred to this RFE instead and it might be an idea.
    Especially if a parameter for number of fields used for comparing is added.

    For example
    %compcorr( myKeyDS1 : myKeyDS2 : 3 );
    Compare the first 3 fields in the data structure.

  • Guest
    Reply
    |
    Apr 17, 2020

    IBM will use this request as input to planning but no commitment is made or implied. This request 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 request.

  • Guest
    Reply
    |
    Mar 27, 2018

    The CAAC has reviewed this requirement and recommends that IBM view this as a low/medium priority feature. Actually, it would be very convenient when needed in the right situations, and would reduce the amount of code.

    Background: The COMMON Americas Advisory Council (CAAC) members have a broad range of experience in working with small and medium-sized IBM i customers. CAAC has a key role in working with IBM i development to help assess the value and impact of individual RFEs on the broader IBM i community, and has therefore reviewed your RFE.

    For more information about CAAC, see www.common.org/caac

    For more details about CAAC's role with RFEs, see http://www.ibmsystemsmag.com/Blogs/i-Can/May-2017/COMMON-Americas-Advisory-Council-%28CAAC%29-and-RFEs/

    Nancy Uthke-Schmucki - CAAC Program Manager

  • Guest
    Reply
    |
    Aug 25, 2017

    IBM has received the requirement and is evaluating it. IBM will provide a response after evaluation is complete.

  • Guest
    Reply
    |
    Aug 18, 2017

    One issue is with varying length fields. Say you have a VARCHAR(10), and its current value is 'abc'. The first two bytes have the value 3, and the next 3 bytes have the value 'abc'. The remaining 7 bytes can have any value, and it doesn't affect the meaning of the varying length. Say that varying length field in the first data structure has the value (3)abcdefghij and in the second data structure it has the value (3)abc1234567. The two varying length fields are equal, but the data structures will compare as unequal.

    Another possibly more important issue is with null-capable subfields. The EVAL-CORR opcode doesn't only assign the subfield values, it also assigns the null indicators for any null-capable subfields. A compare-corresponding built-in function would do the same.

  • Guest
    Reply
    |
    Aug 17, 2017

    Don't we already have this function with a normal if statement?

    If ( MyDS1 = MyDS2 )
    Do something on equal condition
    Else
    Do something else on not equal condition
    EndIf

    I'm fully in favor of enriching the language however I don't see how the community gains from this one. Can you elaborate on what functionality would be gained?