Tips & Tricks & Dynamics AX & Work SquallBSR on 04 Jan 2007 02:06 pm
Itteration through the AOT
Axapta Itteration through the AOT:
static void alu_test(Args _args)
{
utilElements AOTtree;
;
while select AOTtree
where AOTtree.recordType == UtilElementType::Report
&& AOTtree.name like 'DM*'
{
print AOTtree.name
}
pause;
}