Hello guys, As you know Dynamics Ax AIF services it has a complicated structure. Sometimes we just want to export specific data. For example, instead of fully opening CustTable, we may only want to open the fields AccountNum and AccountName. Another reason is that if you directly open the CustTable, it will respond to you as complex XML. However, if you open it as a model, you can get the output as JSON. In such cases, we need to create a model class. Below, I explain how to create and use this model class. Let’s start. 1- Create new class:…