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
- tableName is the name of a table.
- columnName is the name of the column.
- 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)