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

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).

QUEUE

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))