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

rtecall("transtart") function

A RAD function that measures the amount of data transferred, elapsed time, and CPU usage of any transaction. This function is commonly invoked from the RAD debugger and used in conjunction with the rtecall ("transtop") function.

Function
rtecall("transtart")
Format
$L.success.flag= rtecall($L.fnc.name, $L.return.code, $L.transaction)

Parameters

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

Parameter Data type Description
$L.success.flg Logical Indicates whether or not the function was successful.
$L.fnc.name String Name of the sub-function to call, in this case "transtart".
$L.return.code Number Provides a more detailed return code.
$L.transaction String Any name selected by the user for the transaction to measure.

Factors

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

Example

$L.success.flg= rtecall("transtart", $L.return, "problemopen")