/sys$common/syshlp/helplib.hlb SET, QUEUE, Examples *Conan The Librarian (sorry for the slow response - running on an old VAX) |
1.$ INITIALIZE/QUEUE/DEFAULT=BURST/FORM_MOUNTED=LETTER/START SYS$PRINT . . . $ STOP/QUEUE/NEXT SYS$PRINT $ SET QUEUE/DEFAULT=BURST/FORM_MOUNTED=MEMO SYS$PRINT In this example, the queue is initialized with the INITIALIZE/QUEUE command. The queue has the following attributes: two file flag pages preceding each file in the job and the mounted form LETTER. Later the queue is stopped with the STOP/QUEUE/NEXT command so that the current job finishes processing before the queue stops. The SET QUEUE command changes the mounted form to MEMO. 2.$ SET QUEUE/DEFAULT=FORM=LN01_PORTRAIT LN01_PRINT In this example, the SET QUEUE command changes the default form to LN01_PORTRAIT for the LN01_PRINT queue. 3.$ SET QUEUE/CLOSE SYS$BATCH In this example, the batch queue SYS$BATCH is modified to prevent jobs from being entered in this queue.
|