Sets Glb.Close when Report resumes processing following a Sleep logic command. When Glb.Close is set, the next Sleep logic command causes the Report to go to an orderly End of Job (EOJ).
If there is no Sleep logic command in the Report, the Report goes to an orderly EOJ.
If the Report uses the CriticalPoint logic command without a Sleep command option, the Report goes to an orderly EOJ.
If the Report is in Video Browse mode, it goes to EOJ immediately.
If the Report is waiting for a reply to an Accept logic command, it goes to EOJ immediately.
With ODT level security, you can only use :STR administration commands for Reports initiated from your terminal. For all other Reports, security level is Controller.
The :STR command has the form:
:STR report mix
Where:
report is a Report name.
mix is the mix number for the Report.
Considerations:
You cannot use this command to stop a Standalone Report (use standard operating administration commands instead).
The :STR Administration command causes an immediate wakeup of a sleeping Report. To stop a sleeping Report, include the following logic after a Sleep logic command:
DO.WHEN; GLB.CLOSE = (CLOSE) END.EXIT;
If your logic fails to check the value of Glb.Close, the Report continues until the next Sleep logic command is encountered, at which point the Report terminates (before it sleeps).