Is there a way to specify in an OPSMVS time of day rule to fire of a rule on a monthly basis?
For instance, I want to execute a rule on the second day of the month at 08:00
OPS/MVS
The sample rule below will fire every day at 8:00 but will only take any actions every 2nd day of the month.
)TOD 08:00
)PROC
IF LEFT(DATE(E),2) <> '02' THEN EXIT
/* put your actions here */