Datacom MUF can be put in QUIESCE state (a pause in activity) by issuing the following console command:
/f mufname,QUIESCE REQ.
How can it be check if QUIESCE is in effect?
Datacom/DB Datacom/AD
All supported releases
Run the following SQL query:
SELECT LOCK_VALUE FROM SYSADM.MUF_LOCKS_VALUE WHERE MUF_NAME = 'your MUFname' AND LOCK_VALUE LIKE 'DBSQSC%' ;
If you find rows then QUIESCE is in effect , if no rows found then it's not.