Prints additional information (data) 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
PrintData( in sFuncName : string,
           in sData     : string ); 
               	 | Parameter | Description | 
|---|---|
| sFuncName | The function name that is printed in the Text column of the Virtual User tab in the Output pane. | 
| sData | 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;