Wednesday, January 14, 2015

list of table name and field name

Dictionary  Dictionary;
    TableId     tableid;
    tableName   tablename;
    ;

    Dictionary = new Dictionary();
    tableid     = Dictionary.tableNext(0);
    tablename   = Dictionary.tableName(tableid);

    while(tableid)
    {
        info(strFmt("%1 - %2",tableid,tablename));
        tableid     = Dictionary.tableNext(0);
        tablename   = Dictionary.tableName(tableid);
    }

How to identify the user that was used to change an object from AOT in AX2012

Get the object name for which we need to track these (user and date&time) information's. Login to SQL Server Management Studio an...