GetProject Function

Action

Retrieves the name of the current load-test project.

Include file

Kernel.bdh

Syntax

GetProject(): string;

Return value

The name of the project.

Example

dcltrans
  transaction TGetProject
  var
    sProject: string;
  begin
    sProject := GetProject();
    write("project = "); write(sProject); writeln;
  end TGetProject;