Hi,
METHOD ON TABLE EXTENSION D365O AX
Here is Sample Table Extension Method for Cust Table.
CustTable
METHOD ON TABLE EXTENSION D365O AX
Here is Sample Table Extension Method for Cust Table.
CustTable
public
static
class
MyCustTable_Extension
{
[SysClientCacheDataMethodAttribute(
true
)]
//This attribute will cache your display method.
public
static
display Name myTestDisplayName(CustTable _this)
{
return
_this.nameAlias() +
"KRISHNA"
;
//Do here your display method as usual.
}
}
Comments
Post a Comment