Welcome to the SilkPerformer forum - nice to see a new face! ~Rod This works for me: benchmark WebBenchmarkName use "WebAPI.bdh" // Random Variables Section dclrand rRndUniN1 : RndUniN (1..40); // Workload Section dcluser user WebUser transactions TWeb : 10; // Web Transactions Section dcltrans transaction TWeb var pRndUniN11, ICAction : string; begin pRndUniN11 := string(rRndUniN1); ICAction := "#ICRow"+pRndUniN11; print(ICAction); end TWeb; outputs: #ICRow7 #ICRow39 #ICRow32 #ICRow36 #ICRow5 #ICRow1 #ICRow4 #ICRow24 #ICRow34 #ICRow15
↧