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

rtecall("rgoto") function

A RAD function that places the pointer at the indicated record.id in a record list.

Function

rtecall("rgoto")

Format

$L.success.flg=rtecall($L.fnc.name, $L.return.code, $L.file, $L.record.id)

Parameters

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

Parameter Data type Description
$L.success.flg Logical Indicates whether or not the function was successful.
$L.fnc.name String The name of the sub-function to call, in this case "rgoto".
$L.return.code Number Provides a more detailed return code.
$L.file File A file handle that represents the collection.
$L.record.id Number A record number.

Factors

If the $L.success.flg is false, the function failed. If it is true, the function succeeded.

Example

$L.success.flg=rtecall("rgoto",$L.return.code, $L.file, $L.record.id)