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).
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:
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 an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
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.
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.
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.
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
IBM has received the requirement and is evaluating it. IBM will provide a response after evaluation is complete.
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.
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?