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 Needs more information
Categories z/TPF
Created by Guest
Created on Dec 2, 2025

Add Timeout Argument to Find, Wait and Hold Macro/Functions (assembler & C)

Applications/Utilities/Processes need a way to provide the max amount of time it is willing to wait to access a data record. If the timeout value for the "W"ait has been reached, then the process can make a determination what should happen in the event it cannot access the requested file address. Through the years, we've encountered so many issues of building record hold queues and still encounter them today. The FIWHC timeout argument would help tremendously to alleviate RHT queue build-up and less manual intervention from real-time coverage to exit ECBs when the system has the potential to become unstable.

This should also be applicable/usable by remote file accesses via the zTPFDF mongoDB interface.

Idea priority High
  • Guest
    Dec 9, 2025
    Are you aware of the Record Hold Table (RHT) wait queue threshold exceeded (UCCWQTX) user exit? This is a user exit in the control program that can be used to limit the number of ECBs on a record hold table queue. If UCCWQTX is active, a FIWHC will call UCCWQTX if the number of items on the RHT queue is greater than or equal to the RHT wait queue value. (The RHT wait queue value can be managed using ZSONS DISPLAY WQT and ZSONS ALTER WQT).

    You can add logic in UCCWQTX to direct TPF's handling of the FIWHC request. Directions are:
    (a) Add the request to the queue.
    (b) Do not add the request to the queue and give an error return to the application.
    (c) Do not add the request to the queue and exit the ECB.

    The intention of the user exit is to prevent RHT queues from being too large which we believe is the intention of this idea. The implementation is slightly different, but the end result is the same.

    Is there a need for this idea or can the UCCWQTX user exit be used instead?