This post is machine-translated. The original post in german language can be found here.
These post applies to following version:
Dynamics AX 2012
Dynamics AX 2012
|
|
|
|
|
|
This post is machine-translated. The original post in german language can be found here.
These post applies to following version:
Dynamics AX 2012
|
Using the function timeConsumed you can check the execution time of a function:
{
FromTime fromTime = timeNow();
Counter c;
// Simulating time consuming function
for (c=1;c<=100;c++)
{
sleep(1000);
}
info(strFmt("Total time consumed: %1", timeConsumed(fromTime, timeNow())));
}
Result in the Infolog:
Total time consumed: 1 Minute 41 Sekunden