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.
Due to processing by IBM, this request was reassigned to have the following updated attributes:
Brand - Servers and Systems Software
Product family - Programming Languages
Product - Developer for Power Systems
For recording keeping, the previous attributes were:
Brand - Rational
Product family - Design & development
Product - Developer for Power Systems
This feature is now available in the IBM Rational Developer for i V9.0 product.
Product web page: http://www-03.ibm.com/software/products/us/en/dev-ibm-i
Fix List: http://www.ibm.com/support/docview.wss?uid=swg27038481
Download doc: http://www.ibm.com/support/docview.wss?uid=swg24034857
This request is approved and planned for delivery within the next year or next generally available release. Thank you for taking the time to suggest this enhancement to our product and for your votes.
This RFE is consistent with our strategy and product roadmap and IBM is continuing to evaluate.
Thanks for the clarification.
Hi Kurt,
I spent some time looking into this problem.
There are two kinds of updates to the outline view.
A Refresh update (which is also done at load time) will go out and retrieve database info from the host
A keystroke update can't afford to that since we don't want to slow down your typing. Of course we don't want to lose the information that you got from the host before either. So we look at our parse tree from before and if we can match the previous datastructure or file that has external information we copy it into the new tree.
The problem you were seeing was that our algorithm for determining if the datastructure has changed, was too conservative, causing it to consider a data structure as changed, even if it just moved further down in the source.
After some in depth analysis, I concluded that the right way to fix this was to keep track of the external file, record, field definitions independently of the RPG file, and data structures they become. So we will no longer be dependent on looking for matching data structures, or files which is always going to be a guess, but we can key on the actual external file names.
In this way, you can continue to use the external information even if you change an ALIAS. PREFIX, EXFMT, RENAME, IGNORE, INCLUDE, etc. keyword that will rename or subset this information when bringing it into the RPG name space.
You can even code new data structures and files that reference these external files and have the information available to you.
I believe this will be a much better algorithm and provide a much more usable experience.
Attachment (Description): Visual representation of the issue. This is the after image.
Attachment (Description): Visual representation of the issue. This is the before image.