MPE/iX Commands Reference Manual (32650-90877)
482 Chapter12
Command List X
Commands SAVE thru SHUTQ
Use
This command may be issued from a session, job, program, or in BREAK. Pressing
Break
has no effect on this command.
Examples
To set the job control word CURR1 to 100, and use a comma (,) as the delimiter instead of
an =, enter:
SETJCW CURR1,100
To set CURR1 to the value of the mnemonic WARN, and use a slash (/) as the delimiter
instead of an =, enter:
SETJCW CURR1/WARN
To use an arithmetic operation to set one JCW value relative to another, enter:
SETJCW NEWJCW=LASTJCW + 56
To schedule a full backup job on Saturdays and a partial backup job on the other days of
the week, you could create a user command:
SETJCW FRIDAY=6
IF HPDAY = FRIDAY THEN
SCHEDJOB FULLBKUP;IN=1
ELSE
SCHEDJOB PARTBKUP;IN=1
ENDIF
Related Information
Commands DELETEVAR, SETVAR, SHOWJCW, SHOWVAR
Manuals Appendix A, "Predeļ¬ned Variables in MPE/iX"
SETMSG
Enables or disables the receipt of user or operator messages at the standard list device.
Syntax
SETMSG{ OFF ON }
Parameters
OFF Sets job or session to quiet mode and blocks the receipt of TELL command
messages from other users.
ON Enables user or operator messages to be received and displayed at the
standard list device.
Use
This command may be issued from a session, job, program, or in BREAK. Pressing
Break
has no effect on this command.