AX / D365FO – Add CreatedOn, CreatedBy, ModifiedOn, ModifiedBy fields on a Table

Do you want to know when a table record has been created or modified? Or better know who has created it or modified it? You can do it by enabling these properties on a Table object : Created By = Yes Created date Time = Yes Modified By = Yes Modified Date Time = Yes … Continue reading AX / D365FO – Add CreatedOn, CreatedBy, ModifiedOn, ModifiedBy fields on a Table

AX – D365FO – Update a field value of a table with the value of a joined table in update_recordset

This example shows that the update_recordset statement supports the joining of several tables. Data from the joined tables can be used to assign values to fields in the table that is being updated. static void Join22aJob(Args _args) { TableEmployee tabEmpl; TableDepartment tabDept; TableProject tabProj; ; update_recordset tabEmpl setting currentStatusDescription = tabDept.DeptName + ", " + … Continue reading AX – D365FO – Update a field value of a table with the value of a joined table in update_recordset

AX – D365FO – Add an hyperlink to a Form field to open the master data FOrm of that field

I have a form that contains a field called "IFRS code". I want to add an hyperlink to this field to open a form that contains the master table for that field when clicking on it (like below) If you do nothing you get this error while clicking on the field To solve the problem … Continue reading AX – D365FO – Add an hyperlink to a Form field to open the master data FOrm of that field

AX – D365FO – Avoids deleting a record if it has records related to other tables (with table Relations functionality)

If you want to avoid deleting record on a table that has child record related to other table just follow this instructions. You must create a relation between Table "Al0VendorActivity" and "Al0VendorSearcCriteria". We want to avoid delete record from "Al0VendorActivity" if at least one record exists in the table "Al0VendorSearcCriteria". Create a relation between the … Continue reading AX – D365FO – Avoids deleting a record if it has records related to other tables (with table Relations functionality)