Retrieves the current setting that determines whether the simulation engine has to perform all transactions defined in the workload section of the load testing script in random or sequential order.
Kernel.bdh
GetRandomTransactions(): boolean;
true if the simulation engine currently performs all transactions defined in the workload section of the load testing script in random order
false otherwise
dcltrans transaction TMain begin write ("transaction order: "); if GetRandomTransactions() then writeln("random") else writeln("sequential") end; end TMain;