Skip to Main Content
IBM Z Software


This portal is to open public enhancement requests against IBM Z Software products. 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 Not under consideration
Categories Editors
Created by Guest
Created on Aug 2, 2019

Unnumber in IDz is very slow & blocks the UI

If a program is relatively large (in this case it's 8000 lines long), then the unnumber option in IDz takes a long time (enough time to go and pick up a coffee) & IDz displays a progress bar that precludes you from doing anything else.

Idea priority Medium
  • Guest
    Reply
    |
    Sep 24, 2019

    Thank you for taking the time to suggest an enhancement to our product. Many of our product enhancements result from feedback from our customers, so your input is always very important to us; However, your request for enhancement is not currently aligned with our product strategy and vision and we have no plans to address your request in the near future. Again, thank you for your suggestion and continued support.

  • Guest
    Reply
    |
    Aug 29, 2019

    The following example has been successfully tested using the following ISPF Edit Macro; the UNNUM was done for the program using the IDz Menu Manager Edit Macro action.

    /* rexx */
    "isredit macro"
    "isredit unnumber"
    "isredit end"

    Using the instructions from the documentation https://developer.ibm.com/mainframe/2017/10/16/using-ispf-edit-macros-within-idz-v14-1/ , for setting up the Edit Macro, the customer can:
    - create the dataset member that contains the above ISPF Edit Macro. Currently, the customer must avoid giving the Edit Macro dataset member the same name as an ISPF Command. IBM Developer for z team is investigating this restriction.
    - create the IDz Menu Manager Edit Macro action. For example, the developer used this command for the IDz Menu Manager Edit Macro action
    EDIT ! . ! + STATS ! FEL.SFELSAMP(FELEDTMC) ! EDIT.MACRO.REXX($input(Select ISPF Edit Macro to invoke,,$list{UNXNMBR,REXNUM,NUMON,NUMOFF})) ! +SYSNAME +FELDATE +FELTIME IDz
    - invoke the IDz Menu Manager Edit Macro for the program that the customer/user wants to edit using LPEX. The user can invoke the edit macro from the RSE View or from the editor. When invoked from the RSE View, if the member was not already opened in the editor, the IDz Menu Manager Edit Macro action will open the member in the editor before invoking the Edit Macro. If the member is already opened, the Edit Macro will be invoked without trying to open the member.

    In the tests the IBM developer performed, the REXNUM dataset member is an ISPF Edit Edit Macro for doing a RENUM, whose contents are:

    /* rexx */
    "ISREDIT MACRO"
    "ISREDIT RENUM"
    "ISREDIT END"

    The customer can create other Edit Macros as needed.

    If more information is needed, the customer may also find more information about ISPF Edit Macros in the ISPF Reference Summary, which can be downloaded from this IBM web site https://www-01.ibm.com/servers/resourcelink/svc00100.nsf/pages/zOSV2R3sc193624?OpenDocument .