Previous Topic: Return Codes from OPSCAWTONext Topic: OPSCOLOR Function


OPSCLEDQ Function

The OPSCLEDQ function clears the external data queue (EDQ); OPSCLEDQ is a short cut that you can use in place of the following REXX program:

DO WHILE QUEUED() > 0
  PULL X
END
RETURN ''

Note: You can use the OPSCLEDQ function in OPS/REXX or AOF rules.

OPSCLEDQ always returns null and has the following format:

var = OPSCLEDQ()