Hi.
Im having some problems with a Dynamics AX 4.0. For some Users the dynamics is really slow when ever it has to show something in the infolog. To test the problem i made this small job.
int i;
;
while (i < 10)
{
info (int2str( i) + " " + int2str(timeNow()));
i++;
}
Runnig this job on some users is done in less than a second. For other user this simple job can take 2 minutes.
If i change this line
info (int2str( i) + " " + int2str(timeNow()));
to
print (int2str( i) + " " + int2str(timeNow()));
thén there is no problems.
most of the time consumed is before the first post is shown in infolog.
Hope anyone can help me with this.