Scenario: Sometimes consultants don't want to use the Data Management in D365 due to a lack of data structure knowledge, a short timeline, or many table relations. They want to import from Excel to all related tables in one shot using x++. Solution: Prepare a batch class for importing master data. I normally use this… Continue reading Dynamics 365 FO: Import data from Excel using X++
Month: Jan 2021
Display method not found, missing module reference? – D365 FO
Display method not found, missing module reference? - D365 FO I got this error during building a new form in D365FO Errore message display method 'mcrlsMerged' defined on 'CustTable', referenced in data source 'CustTable' of form 'Prefix_CustTableListPage', returns type 'MCRMergeIndicator' which is not recognized. Are you missing a module reference? This clearly points us to… Continue reading Display method not found, missing module reference? – D365 FO
Inner join X++ (Overdoing)
Inner join X++ A Join is used to combine rows from two or more tables, based on a related column. An inner join returns records that have matching values in both tables from a cross join. These are the standard SQL definitions. Lets see a simple example what a cross join is. A cross join… Continue reading Inner join X++ (Overdoing)