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).
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:
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 an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
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.
For more information see https://www.ibm.com/docs/en/cics-ts/6.1?topic=whats-new
See Announcement letter https://www.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/2/897/ENUS222-092/index.html&request_locale=en
The Administering output from a CICS region topic in the CICS Knowledge Centers for releases 5.2 to 5.6 has been updated with guidance on how to spin off output datasets. Here is the 5.6 version https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/administering/admin-region-output.html
This is something we would like to address in the form of additional documentation and guidance. The RFE is being moved into 'Planned for Future release' status. Please note:
IBM’s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM’s sole discretion. Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing decision. The information mentioned regarding potential future products is not a commitment, promise, or legal obligation to deliver any material, code or functionality. Information about potential future products may not be incorporated into any contract. The development, release, and timing of any future features or functionality described for our products remains at our sole discretion.
The original requester and other comments have mentioned several techniques that sites have used. I recall another where a dynamic allocation product was used and the TD queue was defined as a GDG dataset.
I concur with the idea that a CICS-architected solution would be beneficial. A command to invoke the switch could satisfy both on-demand needs and routine (e.g. time-of-day) needs with auto operation tool.
Since we migrated from JES3 to JES2 we use the SPIN function. It allows us to SPIN the sysout file dynamically and requires no changes in the CICS configuration. We then archive the output in our archive product (BETA92).
Example :
//CEEMSG DD SYSOUT=*,SPIN=(UNALLOC,2M)
For output extrapartition TD queues, this can generally be handled via dynamic allocation (by specifying a SYSOUTCLASS and omitting the DD statement from the startup JCL); a periodic transaction could then close/open each relevant TD queue to "spin" the output and allocate a fresh instance. For the JES allocated sysout, this gets more involved, and is where addition of CICS-driven spin controls would be most useful.