Wednesday, May 4, 2011

Find the Layer wise Tables in Ax using UtilElements

Hi,
Using this Job we can find User Layers Tables in Ax.
Here is the Code:
static void Test_UsrTable_Find(Args _args)
{
Utilelements utilElements;
;
while select utilElements where utilElements.recordType == UtilElementType::Table
&& utilElements.utilLevel == utilentryLevel::usr
{
info(utilElements.name);
}
}

No comments:

Post a Comment

Leave your comments and solutins