Page History
...
Parameter | Format | Contents |
|---|---|---|
Action | CHAR (3) | HLD indicates that you want to Hold System. RLS indicates that you want to Release System. |
System Name | CHAR (50) | Use *DEFAULT as your Default Parameter |
Port Number | CHAR (5) | The port number for the System Name |
For example, to Hold ALL Systems, you would call W3@P2903 with these Parameters:
...
CALL W3@P2903 PARM('HLD')
To Hold only the DCXPGMLIB System on Port 80, you could call W3@P2903 with these Parameters:
...
CALL W3@P2903 PARM('HLD'
...
'*DEFAULT'
...
'80')
To Release all Systems, you would use these Parameters:
CALL W3@P2903 PARM('RLS')
To Release only the DCXPGMLIB System on Port 80, you would use these Parameters:
...
CALL W3@P2903 PARM('RLS'
...
'*DEFAULT'
...
'80')
...