The PPQWRITE keyword writes an item to a PPQ.
This keyword has the following format:
PPQWRITE(ITEM(item) QUEUE(queuename))
Specifies the item to write to the queue. The value of item can be either a literal string (such as “this is an item”) or a simple variable name (not enclosed in quotation marks so that REXX can evaluate it).
Specifies the name of the queue. This value must be in uppercase.
Example:
The following sends information to a queue named MESSAGE:
PPQWRITE((HELLO THERE) QUEUE(MESSAGE))
|
Copyright © 2012 CA Technologies.
All rights reserved.
|
|