Monday, June 20, 2022

PostLoad() method in AX tables Dynamics 365 FO

PostLoad() is the method that is used to read records from the database and you can perform any custom logic by overriding this method on any table.


public void postLoad()

{

    super();


    if (this.Name == 'MEL')

        this.Value = 5;

}