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 Functionality already exists
Workspace IBM i
Categories IBM i Access Family
Created by Guest
Created on Jun 11, 2024

Provide an option to prevent ACS Run SQL Scripts from advancing to the next statement whenever a statement is executed

When you execute a query in the Run SQL Scripts tool (Ctrl-R or Run Selected) the next query in the window is automatically selected/highlighted after the executed query completes.  When working with long complex queries, the automatic advancement/highlighting of the next statement can cause the user to "lose their place".  It is possible to use "stop;" between statements to mitigate this issue, but it would be nice to have a configurable option.  I have even seen this automatic advancement cause issues/confusion for speakers when presenting at conferences.

Idea priority Low
  • Guest
    Reply
    |
    Jun 17, 2024
    Thank you for submitting your Idea to enhance IBM i Access Client Solutions (ACS). The feature requested already exists. Open Run Sql Scripts. Then Navigate to Edit-->Preferences, and on the General tab, uncheck the "Highlight next statement after 'Run Selected' " option.
    IBM Power Systems Development
  • Guest
    Reply
    |
    Jun 13, 2024

    This can be achieved by using the stop statement.

    For example,

    select field1 from mytable where id = 1;

    stop;

    select field 2 from mytable2 where id = 1;

    When you select all and run, the first statement will execute and then stop at the stop statement. You then have to select the second statement to run.

    I hope this helps!