Develop > Programming > System Language reference > List: rtecalls > rtecall("getrecord") function

rtecall("getrecord") function

A RAD function that retrieves the record identified by Unique key values in $L.array.

Function

rtecall("getrecord")

Format

$L.void=rtecall($L.fnc.name, $L.errcode, $L.array, $L.file)

Parameters

The following parameters are valid for the rtecall("getrecord") function:

Parameter Data type Description
$L.fnc.name String The name of the sub-function to call, in this case "getrecord".
$L.errcode Number The number of the error code encountered.
$L.array String The name of the record to retrieve.
$L.file String The name of the table to retrieve the record from.

Factors

$L.array is an input variable, typically the key values returned by $L.array in the rtecall("getunique") function.

Example

$L.void=rtecall("getrecord", $L.errcode, {"IM1001"}, $L.file)

Where:

The value of $L.file is initialized for the probsummary table.