getColumnValue()

Get the column value of a table, tree, or screen record at the specified row.

Syntax

getColumnValue(
   tableName  STRING,
   columnName STRING,
   row  INTEGER )
  RETURNS STRING
  1. tableName is the name of a table.
  2. columnName is the name of the column.
  3. row is the row index of a table.

Usage

You can use it to return the value of a column at a row of a table, tree, or a visible row of a screen record to test this action in a scenario. For example:

DEFINE item STRING
LET item = ggc.getColumnValue("sr_prices", "name", 1)