Hi There,
I am on AX 3.0, I am trying to debug something and have put in errors in an info log, sorry I meant is there a way for me to add a button to the info log screen which outputs the info log to excel?
Thanks
Nik
Hi There,
I am on AX 3.0, I am trying to debug something and have put in errors in an info log, sorry I meant is there a way for me to add a button to the info log screen which outputs the info log to excel?
Thanks
Nik
Hi,
try to save as html File and open this with excel
Regards
Michael
Hi Nik,
If it is a long process with various info logs, there could be performance implications.
To capture infolog, try something like this -
for (i=0; i<=infolog.num(); i++)
{
infolog.text(i);
}
Once captured, they can be stored in a table or handled in a better way.
Hope this helps,
Harish, Michael,
Many thanks for your responses, I had to dig through it in excel, but I like the concept of saving it in a table.
Thanks
Nik