Previous Topic: OSCMD KeywordNext Topic: REPLY Keyword


PPQWRITE Keyword

The PPQWRITE keyword writes an item to a PPQ.

This keyword has the following format:

PPQWRITE(ITEM(item) QUEUE(queuename))
ITEM

To write to the queue, specify the item. The value of item can be either a literal string or a simple variable name. For example, a literal string is "this is an item". For example, a simple variable name is not enclosed in quotation marks so that REXX can evaluate it.

QUEUE

Specifies the name of the queue. This value must be in uppercase.

Example:

The following example sends information to a queue named MESSAGE:

PPQWRITE(ITEM(HELLO THERE) QUEUE(MESSAGE))