Hi every one ,
I am new to AX 2009. How many classes are available with Runbase frame work in ax 2009.
Thanks
Noor Md
Hi every one ,
I am new to AX 2009. How many classes are available with Runbase frame work in ax 2009.
Thanks
Noor Md
Hi Noor,
Do you mean the classes extended from Runbase framework?
Don’t have AX 2009 in front. But you can find this out yourself. Run update-cross reference with ‘update data model’ switched on. This will take some time. After this is complete, right click on ‘RunBase’ and select add ins > type hierarchy browser and you can see the classes yourself.
Or you can easily calculate it by code:
``
Enumerator enum = new SysDictionary().classes().getEnumerator();
int i;
while (enum.moveNext())
{
if (enum.current().isExtending(classNum(RunBase))){ i++; }
}
info(int2str(i));