Thursday, 21 June 2018

ComputedFieldMethod set to Yes in Dynamics 365

Set the property of the table is ComputedFieldMethod Yes

public class GHMCProductEntity extends common
{
    /// <summary>
    ///
    /// </summary>
    public void postLoad()
    {
        super();

        this.Price =  this.RetailPrice;   
    }
}

No comments:

Post a Comment

Setting VendInvoiceInfoTable default values for custom fields - D365 FO

  When creating a vendor invoice and you are trying to populate custom fields on table VendInvoiceInfoTable you may find that the following ...