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 Runtime
Created by Guest
Created on Jan 23, 2019

WTO from CICS Event Processing adapter

Provide a CICS Event Processing adapter to write a WTO, multi-line if necessary based on message length.

Idea priority Low
  • Guest
    Reply
    |
    Jun 25, 2019

    We have assessed this requirement. We have no current plans for this to be implemented and so this requirement is being declined at this point. The requirement will be kept in the RFE system and might be reassessed in the future. You also have an opportunity to resubmit in twelve months time if you wish it to be reconsidered then.

  • Guest
    Reply
    |
    Apr 1, 2019

    I believe this is something that many customers could benefit from this capability and most will want to avoid the need for more code to maintain. Even though it would be very straightforward coding, it would still be yet another artifact of customization needing to be maintained.

    Using the TS model expirations as a comparison, practically every shop had to create their own version several decades before IBM provided the capability. Then, the customers that are excited to get rid of custom code (like us!) need to migrate to IBM's implementation. Simply having a migration creates the risk of bumps in the road, just like keeping the custom version is a risk by virtue of being something to support that may break long after the primary implementers have retired.

    This is going to be especially pertinent as less experienced sysprogs are expected to provide support at a quicker pace of change. Additionally, this support will grow in value as additional event types become supported.

  • Guest
    Reply
    |
    Feb 5, 2019

    Having you considered to following ways to achieve this:
    1) Write a XMEOUT GLUE to re-route the msg to console. Needs assembler skill but should work for all CICS messages sent to a TDQ

    2) Use the existing MESSAGE system rule together with a very simple user written start transaction adapter. User could easily code a rule for each message they are interested and define the EVENT action for the rule. The specified EP Adapter would be configured to start a user task to get the CICS container that contains the first 1024 bytes of a CICS /CPSM message text (as emitted by ME domain) and write it to the console using an EXEC CICS WRITE OPERATOR command. The EXEC CICS WRITE OPERATOR command already supports messages up to 690 characters which are split into multiple line WTO's when message greater than 113 characters (see https://www.ibm.com/support/knowledgecenter/en/SSGMCP_5.5.0/reference/commands-api/dfhp4_writeoperator.html).

  • Guest
    Reply
    |
    Feb 5, 2019

    There are two existing ways to achieving this:
    1) Write a XMEOUT GLUE to re-route the msg to console. Needs assembler skill but should work for all CICS messages sent to a TDQ

    2) Use the existing MESSAGE system rule together with a very simple user written start transaction adapter. User could easily code a rule for each message they are interested and define the EVENT action for the rule. The specified EP Adapter would be configured to start a user task to get the CICS container that contains the first 1024 bytes of a CICS /CPSM message text (as emitted by ME domain) and write it to the console using an EXEC CICS WRITE OPERATOR command. The EXEC CICS WRITE OPERATOR command already supports messages up to 690 characters which are split into multiple line WTO's when message greater than 113 characters (see https://www.ibm.com/support/knowledgecenter/en/SSGMCP_5.5.0/reference/commands-api/dfhp4_writeoperator.html).