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

rtecall("qbeform") function

A RAD function that returns a record list form, which can be passed into a rio (Record Display/Input) Command panel or fdisp panel. You can insert this function into a format file handle using the contents() function. The following example shows the syntax to use in the contents function: contents($L.format) = $L.qbe.form.

Function

rtecall("qbeform")

Format

$L.success.flg= rtecall($L.fnc.name,$L.return.code,$L.file,$L.qbe.form)

Parameters

The following parameters are valid for the rtecall("qbeform") 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 subfunction to call; in this case "qbeform".
$L.return.code Number Provides a more detailed return code.
$L.file File The file handle used to generate the record list. For example, obtain the contacts table by using the "rinit" panel.
$L.qbe.form Structure The resulting record list form returned as a structure.

Factors

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

Example

$L.success.flg= rtecall("qbeform",$L.return.code,$L.file,$L.qbe.form)