tags:

views:

214

answers:

1

I would like to query the Axapta AOT to find the fields of a given table and their properties. Could you please provide some code examples? thanks in advance!

+1  A: 

static void Job68(Args _args) {

TreeNode node = TreeNode::findNode(@'\Data dictionary\Tables\CustTable\Fields');
TreeNode childNode;
TreeNodeIterator nodeIT;


nodeIt = node.AOTiterator();

childNode = nodeIt.next();

while(childNode)
{
    info(strfmt("field %1", childNode.treeNodeName()));
    childNode = nodeIt.next();
}
wollemi

related questions