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 z/TPF
Created by Guest
Created on Sep 14, 2016

Publish APAR text file in XML

I have written an APAR management tool implemented as a plugin in the TPF Toolkit. I have coded a scan to extract information from the PJnnnnn.txt file. I would be able to enhance the automation if the APAR text were also available in an XML file.

Idea priority Medium
  • Guest
    Reply
    |
    Nov 15, 2016

    IBM does not intend to implement this in the foreseeable future due to other priorities and it may not be consistent with our future direction.

  • Guest
    Reply
    |
    Oct 17, 2016

    Right now I have a Multi-Page Editor in the APARS plugin that extracts areas from the APAR text. Although APAR texts are similar in format and content, some areas are free-form and do not work well with automation, particularly MIGRATION CONSIDERATIONS. In this case I would like to me able to identify new/changed/deleted messages and commands so I can compare against our TOS and other automation tools to trigger alerts when there are changes to messages/commands we have in automation.

    This is just one example. There are a few others which I can mention if you want more information. (Setup information is another, build instructions another, etc.)

    To give you an idea of what I'm currently checking in the plugin, here is a list of the sections used by the Multi-Page Editor:

    public static final int APAR_NUMBER = 0;
    public static final int PRODUCT = 1;
    public static final int FUNCTIONAL_AREA = 2;
    public static final int SHIPPED = 3;
    public static final int ABSTRACT = 4;
    public static final int PACKAGE = 5;
    public static final int OTHER = 6;
    public static final int PREREQUISITE = 7;
    public static final int COMMENTS = 8;
    public static final int SOLUTION = 9;
    public static final int COREQS = 10;
    public static final int MIGRATION = 11;
    public static final int BUILD = 12;
    public static final int UPDATED = 13;
    public static final int DOWNLOAD = 14;
    public static final int APAR_URL = 15;

    The spreadsheets do not contain all of this information, so I need to extract it from the APAR text.