Wednesday 9 December 2015

How many Tables are Present under AOT through X++ Code

static void TotalTablesinAx(Args _args)
{
    int x;
    x = TreeNode::findNode('\\Data Dictionary\\Tables').AOTchildNodeCount();
    info(strFmt("Total Tables in AOT = %1",x));
 
}


No comments:

Post a Comment