You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Description

The RTI_LIst function is a utility that helps in the use and management of saved lists in the SYSLISTS table.

Syntax

returnvalue = RTI_List(<function>, <listID> [,<param1>] [,<param2>] [,<param3>] [,<param4>])

Parameters

The function has the following parameters:

ParameterDescription
functionA valid RTI_List function: READ, DELETE.
listIDName of the saved list (or Key ID) in the SYSLISTS table.
param1...Each method has different parameter requirements.
param4 
functions
ValueDescription
READReads all the Key IDs from the indicated saved list and returns them as an @FM delimited array.
DELETEDeletes the indicated saved list.
Parameters
FunctionParameters
READNull
DELETENull

Returns

MethodReturn Value
READAn @fm-delimited array of Key IDs.
DELETENull

Examples

* READ Example
DECLARE FUNCTION RTI_LIST, RTI_CREATEGUID
myID = RTI_CREATEGUID("b") ;* MAKE A GUID IN BASE64 FORMAT
CALL RLIST(selStmt, 4, myID, "", "")
fullList = RTI_LIST("READ", myID) 
* GETSYSTEMFONTS Example
systemFonts = Rev_Utility("GETSYSTEMFONTS")
 
* DELETE Example
CALL RTI_LIST("DELETE", myID)
  • No labels