Re: [Axapta-Knowledge-Village] How can add fields to existing tables via X++ codes

2007-03-31 Thread Kamal Kannan
Hi try this code #AOT #TreeNodeSysNodeType DictTable dictTable = new DictTable(221); //find the table TreeNodetablenode = TreeNode::findNode(#TablesPath).AOTfindChild('LedgerTable'); TreeNodefieldNode, tn; Struct properties; Struct propertyInfo;

Re: [Axapta-Knowledge-Village] Re: Export Data

2007-03-31 Thread Sumit Loya
Hi, you can try using the following code *For generating a CSV file from code with the data of all the records on the GRID* void generateFile() { Common common; DictTable dictTable; DictField dictField; SysDictFieldsysDictField; int i, j;