Quantcast
Channel: Dynamics AX
Viewing all articles
Browse latest Browse all 550

How to get records by using tableId

$
0
0
static void TableRecByRecID(Args _args)
{
Common common;
DictTable dictTable;
#define.tableNo(77)// 77 is CustTable id
;
dictTable = new DictTable(#tableNo);
common = dictTable.makeRecord();
select common;
info(strfmt("%1",common.RecId));
}

Viewing all articles
Browse latest Browse all 550

Trending Articles