static void RB_AOTObjects1(Args _args)
{
treeNode treeNode,childNode;
TreeNodeIterator rootNodeIterator;
xInfo xInfo = new xInfo();
#AOT
#TreeNodeSysNodeType
;
treeNode = xInfo.findNode(#AOTRootPath);
treeNode = treeNode.AOTfirstChild();
while(treenode)
{
Print treenode.AOTname();
Print "----------------------------------------------------------------------------------------";
if (treeNode)
{
rootNodeIterator = treeNode.AOTiterator();
childNode = rootNodeIterator.next();
while (childnode)
{
print childNode.AOTname();
pause;
childNode = rootNodeIterator.next();
}
}
Print "------------------------------------------------------------------------------------------";
treeNode = treeNode.AOTnextSibling();
}
}
Subscribe to:
Post Comments (Atom)
D365 F&O Release Pipeline Step by Step Configuration Without ISV's
Step-by-Step Guide: Creating D365FO Build and Deploy Pipelines Azure DevOps Build Pipeline I will walk through the standard procedures...
-
X++ code to read the Excel file static void RB_ReadExcel(Args _args) { SysExcelApplication application; SysExcelWorkbooks w...
-
//Create a new job and paste the code static void RB_ReadTextFile(Args _args) { Filename ...
-
// If the file path comes from the dialog , it automatically works ,else you need to Specify '\\' --------------------------------...
No comments:
Post a Comment