OPS/MVS
One possible alternative is to create a rule that checks the SMF areas at OPS startup and runs the dump jobs if required.
Sample implementation:
1) Create a rule with just the )INIT section to call a REXX program. This rule must be set auto-enable but it is not possible to enable it.
Sample code:
)REQ DUMPSMF
)INIT
ADDRESS OSF 'OI DUMPSMF'
2) The rule code above calls the REXX program DUMPSMF when OPS is starting. The code of DUMPSMF can be:
ADDRESS OPER 'D SMF'
DO QUEUED()
PULL LINE
PARSE VAR LINE PREF "-" DSN VOL BLKS FULL MESSAGE
IF MESSAGE = 'DUMP REQUIRED' THEN
DO
ADDRESS OPER 'S SMFDUMP,MAN='DSN
END
END