getValues()

Returns the values of the current row of the current table, tree, or matrix.

Syntax

getValues()
   RETURNS DYNAMIC ARRAY OF STRING

Usage

You can use it to return a list of values in the current row of the current table, tree, or matrix. Use it to test this action in a scenario. For example:

DEFINE i INTEGER
    DEFINE values DYNAMIC ARRAY OF STRING
    CALL ggc.getValues() RETURNING values
    DISPLAY "Row values:"
    FOR i = 1 TO values.getLength()
        DISPLAY "va", i, " = ", values[i]
    END FOR