PrintInfo Function

Action

Generates an info line output on the virtual user's output pane.

Include file

Kernel.bdh

Syntax

PrintInfo( in sFuncName  : string,
           in sInfo      : string );
Parameter Description
sFuncName Function name to be printed in the 'Text' column of the virtual user's output pane.
sInfo Information text to be printed in the 'Text' column of the virtual user's output pane.

Example

dcltrans
  transaction TMain
  begin
    ...
    PrintFunction("MyFunction", "function info in green");
    PrintInfo("MyFunction", "additional info in magenta");
    PrintData("MyFunction", "additional data in blue");
  end TMain;