Prints additional information to the output that displays on the Virtual User tab in the Output pane. Additionally, the data is written to the log file.
Kernel.bdh
Print( in sMsg : string, in nDisplayType : number optional, in nColor : number optional);
Parameter | Description |
---|---|
sMsg | The information (message) that is printed in the Text column of the Virtual User tab in the Output pane. |
nDisplayType |
Specifies which option(s) must be set in the upper part of the Monitor window so that the information is generated (optional). If the message does not display on the Virtual User tab in the Output pane, make sure to enable all respective filters.
|
nColor |
Color used to print the information (optional). Defined colors are:
|
dcltrans transaction TPrint begin ... // display the message in red Print("Error executing SQL command", OPT_DISPLAY_ALL, TEXT_RED); end TPrint;
Error executing SQL command
Trans.bdf, MutexLogin.bdf