How to Count Tables in Dynamics Ax



Description:-

In this Article we will See How to Count Table in Data Dictionary Node in Axapta(Dynamics Ax). Here i Have Create Job to Count tables from Data Dictionary Node from AOT.

Code:-

static void JobToCountTables(Args _args)
{
    Dictionary dict;
    int totalTables;
    dict=new Dictionary();
    totalTables=dict.tableCnt();
    info(strfmt("%1",totalTables));
}

Related Posts

Previous
Next Post »

Thanks for comments.....