SetCallEndTransaction Function

Action

Specifies whether the final transaction (end transaction) is to be processed when the load test is stopped.

If you enable this option, the stopped virtual user checks whether an end transaction exists, and if so, executes it. If you disable this option, the stopped virtual user does not execute the end transaction.

Include file

Kernel.bdh

Syntax

SetCallEndTransaction( in bEnable : boolean );
Parameter Description
bEnable If this parameter is set to true, the final transaction is processed after a virtual user has been stopped. Otherwise, if this parameter is set to false, the final transaction is omitted.

Example

dcltrans
  transaction TInit
  begin
    SetCallEndTransaction(true);
  end TInit;