This blog can help you in Development Level(X++) and Implementation Level to be familiar with MS Dynamics AX
In many cases you need to refresh the data source of the caller form when you finishing work with the current form like when you using posting form you need to refresh the data source of the caller form to see the effect write the following code in close method of the current form :
public void close()
{
FormRun callerForm;
;
callerForm = element.args().caller();
callerForm.dataSource().refresh();
callerForm.dataSource().reread();
callerForm.dataSource().research();
super();
}
thanks Mr.Ta7