Dynamics AX Blog - Axapta 3.0 - aot
These posts are machine-translated.
Currently, only posts are displayed, which are relevant for Dynamics AX version »Axapta 3.0« 
RSS-Feed of this version

RSS-Feed of this version
|
|
|
|
|
|
Dynamics AX Blog - Axapta 3.0 - aotThese posts are machine-translated. Currently, only posts are displayed, which are relevant for Dynamics AX version »Axapta 3.0«
![]() RSS-Feed of this version
|
Find below a short example, how to add object nodes to a shared project through code.
{
projectNode projectNode;
TreeNode treeNode;
#AOT
#AOTExport
projectNode = infolog.projectRootNode();
projectNode = projectNode.AOTfindChild(#expProjectShared);
projectNode = projectNode.AOTfindChild('MyProject');
// Add objects
treenode = TreeNode::findNode(#TablesPath+'\\'+tableid2name(tablenum(CustGroup)));
projectNode.addNode(treenode);
treenode = TreeNode::findNode(#TablesPath+'\\'+tableid2name(tablenum(VendGroup)));
projectNode.addNode(treenode);
treenode = TreeNode::findNode(#ClassesPath+'\\'+classStr(PriceDisc));
projectNode.addNode(treenode);
}
The so modified Project will look like this: