Wednesday, January 22, 2014

To open Form by X++ code - AX 2012

To open Form by X++ code

by
Simple Code


static void  OpenFormByCode(Args _args)
{
new MenuFunction(MenuItemDisplayStr

(CustTable),MenuItemType::Display).run();
}

No comments:

Post a Comment

validateExistCommonRecord in D365FO X++

validateExistCommonRecord(     RefTableId _refTableId,     RefRecId _refRecId) {     boolean ret = true;     if (!_refTableId || !_refRecId)...