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 Delivered
Workspace IBM i
Created by Guest
Created on Jan 10, 2013

Keep Live Outline Updated with Copybook Definitions

Live Outline requires a refresh to pick up new data structures (and possibly other variables) when a copybook it references is updated. I understand that. However, after the refresh, it easily looses the information it just got from the copybook. I submitted this as a Service Request, but was told it was working as designed. It was suggested I create this issue as a RFE.

I have attached source, and can walk you through reproducing the issue.

After opening the ITUProcM source, refresh the outline so it picks up the dsT_ItuRegMst data structure from the ITUProcY copybook.
Find the ds_Region data structure in ITUProcM.
On the Band subfield line, place your cursor on the Like definition at the B (start of Band).
Press ctrl-space. You should see content assist come up as expected. Escape out of content assist.
Press ctrl-D to duplicate the line.
Place the cursor as the same location on the new line and press ctrl-space. It doesn't work. In fact, ctrl-space doesn't work on any of the subfields anymore. It requires pressing Refresh again.


Use Case:

The Outline/Content Assist needs to be reliable.


Idea priority High
  • Guest
    Reply
    |
    Sep 14, 2015

    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

  • Guest
    Reply
    |
    Jun 19, 2013

    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

  • Guest
    Reply
    |
    Feb 19, 2013

    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.

  • Guest
    Reply
    |
    Feb 1, 2013

    This RFE is consistent with our strategy and product roadmap and IBM is continuing to evaluate.

  • Guest
    Reply
    |
    Jan 11, 2013

    Thanks for the clarification.

  • Guest
    Reply
    |
    Jan 10, 2013

    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.

  • Guest
    Reply
    |
    Jan 10, 2013

    Attachment (Description): Visual representation of the issue. This is the after image.

  • Guest
    Reply
    |
    Jan 10, 2013

    Attachment (Description): Visual representation of the issue. This is the before image.