Versions
All

Purpose
This function turns counters on or off for the current session. Other SC users are unaffected.

Syntax
Code:
$L.success.flag= rtecall("counter", $L.return.code, $L.switch)
  • $L.success.flag
    true = success
    false = failure
  • $L.return.code
    returncode of the call
  • $L.switch
    0 = turn off counters
    1 = turn on counters

Example
Code:
 $L.success.flg=rtecall("counter", $L.return.code, 1) to turn on counters
$L.success.flg=rtecall("counter", $L.return.code, 0) to turn off counters