Considerations:
QMF handles CICS transient data queues differently than temporary storage queues.
A CICS intrapartition transient data queue can hold up to 32K rows of data; an extrapartition transient data queue can be as large as it needs to be to hold the object.
The SUSPEND parameter on the IMPORT and EXPORT commands determines the action to be taken if a queue is busy. When the SUSPEND parameter is set to YES, QMF issues a CICS ENQ (enqueue) for the CICS data queue name. This tells CICS to wait until the queue is available before writing the QMF object to the queue, thus ensuring that the QMF transaction does not interfere with any other jobs being handled by the queue.
When the SUSPEND parameter is set to NO, the EXPORT command is canceled and a message is returned. The default value of SUSPEND is NO. That QMF issues an automatic ENQ is reflected in the SUSPEND option of the EXPORT and IMPORT commands.