rbv_api.print()
Purpose
Prints text messages in the formula and trigger debugging windows. End-users will not see the messages at runtime.
Syntax
rbv_api.print (text)
Parameters
text
Message to print in the debugging window
Return value
None
Example
Original Formula
var x = {!id};
rbv_api.print('Hello world id='+x);
return 100;
Parsed Formula
var rbv_api = new Packages.com.rb.core.services.
function wrapper() {
var x = 480924;
rbv_api.print("Hello world id="+x);
return 100;
}
wrapper();
Formula return type: Decimal
Result
Hello world id=480924
100