Microsoft_MVP_banner

PostLoad() method in AX tables

Today I found an interesting thing with regards to
AX tables and this post is all about this new experience which is the PostLoad()
method in AX tables.
When we create a new table in AOT, Morphx
automatically creates a series of methods for it. We cannot see those methods
but those can be overriden on each table as per requirements. PostLoad() is one
of these system methods. List of all system methods can be seen from
Lets create a new table, I named it PostLoadTable
with two fields Name and Value.
I added 5 records in the table manually (open table
and added).
Tables in Microsoft Dynamics AX have a number of
system-defined methods, such as insert, validateField,validateWrite.
For a list of these methods, see the xRecord system class. The xRecord class
can be seen as the base class for the Common table. The Common table
can be seen as the base table for all tables.
In any table class, the body of each system-defined method
contains only a call to super(). When you edit the X++ code in a table
method, you override the parent’s implementation of that method. Usually the
call to super() must remain in the methods that you edit.
PostLoad() is the method that is used to read
records from database and you can perform any custom logic by overriding this
method on any table.
Let’s override this method and play around it
public void postLoad()
{
    super();
    if (this.Name == ‘MEL’)
       
this.Value = 
5;
}
By opening table again it shows me different result
as compared to what we entered earlier as shown above.

Value for name MEL changes from 1 to 5 and I did
not require to call update method.

There are many existing implementation of postLoad method in AX tables, I am listing few of them here for ease.

HCMWorkerTablepostLoad()
VendTransPostLoad()
CustTransPostLoad()

Share:

Related Posts

Microsoft Copilot
admin

Exploring Microsoft Copilot Architecture

Microsoft Copilot isn’t just another AI tool; it’s a comprehensive platform designed to be your indispensable companion, enhancing productivity, fostering creativity, and facilitating information comprehension all through a user-friendly chat interface. The concept of Copilot emerged two years ago when Microsoft introduced GitHub Copilot, aiming to assist developers in writing

Read More »
How to enable new Microsoft teams - Public Preview!
Microsoft Teams
Faisal Fareed

How to enable new Microsoft teams – Public Preview!

New Microsoft Teams is just AWESOME, quick but useful post below shows how you have this preview feature to make your life EASY!  Open Microsoft Teams admin center [Ask admin in your organization if you don’t have access] and follow path Teams > Teams update policies > Click on an existing

Read More »

Send Us A Message

Leave a Reply

Your email address will not be published. Required fields are marked *

Recent Post

Exploring Microsoft Copilot Architecture

Exploring Microsoft Copilot Architecture

Microsoft Copilot isn’t just another AI tool; it’s a comprehensive platform designed to be your indispensable companion, enhancing productivity, fostering creativity, and facilitating information comprehension all through a user-friendly chat interface. The concept of Copilot emerged two years ago when Microsoft introduced GitHub Copilot, aiming to assist developers in writing…

How to enable new Microsoft teams – Public Preview!

How to enable new Microsoft teams – Public Preview!

New Microsoft Teams is just AWESOME, quick but useful post below shows how you have this preview feature to make your life EASY!  Open Microsoft Teams admin center [Ask admin in your organization if you don’t have access] and follow path Teams > Teams update policies > Click on an existing…

Electronic Reporting: Send vendor payments to external azure storage via X++

Electronic Reporting: Send vendor payments to external azure storage via X++

Electronic Reporting module in Microsoft Dynamics 365 Finance Operation lets you archive file generated by ER at SharePoint location and in Azure Storage as per this link Archive ER destination type – Finance & Operations | Dynamics 365 | Microsoft Learn. APIs can be used to check message status and read…

FaisalFareed@2025. All rights reserved

Design by T3chDesigns