RE: [Axapta-Knowledge-Village] Go through projects and export created date of obecjts

2009-11-29 Thread James Flavell
Thanks, Not being a true programmer I cannot really follow the code you have put. Is this code going through the complete AOT or maybe can explain so I can better understand. Is there any tutorial jobs/classes or std objects in AX for this kind of thing that I can learn more from? T

Re: [Axapta-Knowledge-Village] Go through projects and export created date of obecjts

2009-11-29 Thread pradeep itnal
hi James there are many system clasees available .. from which you can access the objects in aot   For example   TreeNode classnode = TreeNode::findNode(#SystemClassesPath+'\\'+classstr(xRecord));     TreeNode childnode = classnode.AOTfirstChild();     DictMethod dictMethod;     setprefix(c

[Axapta-Knowledge-Village] Go through projects and export created date of obecjts

2009-11-29 Thread James Flavell
Has anybody done coding to go through all the projects in an AOT and print a report of the objects in the project with their created and modified date and user info? Something like an audit log on objects done by project basis? If so would appreciate some points as to how to do such coding