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
PrintInfo( in sFuncName : string,
in sInfo : string );
| Parameter | Description |
|---|---|
| sFuncName | The function name that is printed in the Text column of the Virtual User tab in the Output pane. |
| sInfo | The information that is printed in the Info column of the Virtual User tab in the Output pane. |
dcltrans
transaction TMain
begin
...
PrintFunction("MyFunction", "function info in green");
PrintInfo("MyFunction", "additional info in magenta");
PrintData("MyFunction", "additional info in blue");
end TMain;