Example :
/// <summary>
/// Extension of the CustGroup table
has been created to add some display method
/// </summary>
[ExtensionOf(tableStr(CustGroup))]
final class CustGroup_FOTraining_Extension
{
/// <summary>
/// Display method
/// </summary>
/// <returns>Customer group with name</returns>
[SysClientCacheDataMethodAttribute(true)]
public display TRNGroupWithName
displayGroupWithName()
{
//your logic
goes here
return this.CustGroup + this.Name;
}
}
And now we will create the extension of the CustGroup form to add the new field which will display the above values
so we can create the new string type field with the below properties.
and the output will be as per below