When a conflict occurs in the JMR archiving process, a WTOR message (JMR610W) is output.
Even if this WTOR message is replied to immediately, the message will be repeated unless the conflict is resolved.
For this reason, instead of replying immediately, replies are considered to be made after a few tens of seconds have elapsed after WTOR is detected.
Is it possible to make replies to WTOR wait a certain amount of time?
OS : z/OS
Product : OPS/MVS Event Management & Automation
Release : All
Component : OPSMVS
It is possible to wait for a reply to WTOR by combining the DELAY parameter with the OPSREPLY command.
<Sample>
The following is a sample of replying 'RETRY' to a JMR610W message.
)MSG JMR610W
)PROC
rpmsgid = msg.id
resptext = "RETRY"
wsec = 60
ADDRESS TSO
"OPSREPLY MSGID("rpmsgid") TEXT('"resptext"')",
"DELAY("wsec")"
return