Skip to main content

Error "1:N Fetch Mode is not allowed on Datasource having join condition with node other than its immediate parent" in Ax 2012

Error:
If you are facing following error on reservation of item in Sales Line in Sales order or any other order.

"1:N Fetch Mode is not allowed on Datasource having join condition with node other than its immediate parent."

"Field 'Dimension No.' must be filled in."

Then you can try following solution:

Solution:

You can install  this hot fix: KB Article Number(s): 2922779. For Axapta 2012 R2 CU 7

You can download hotfix from Microsoft partner source site.

Popular posts from this blog

X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )

Below is sample X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )      Args                       args = new Args();     CustInvoiceJour            custInvoiceJour;     SalesInvoiceJournalPrint   salesInvoiceJournalPrint;       select firstonly custInvoiceJour where custInvoiceJour.SalesId != '';       // Add record to be printed.     // In order to have the context table we need to set args.record().     args.record(custInvoiceJour);       salesInvoiceController = new SalesInvoiceController();     salesInvoiceController.parmReportName(         PrintMgmtDocType::construct(PrintMgmtDocumentType::SalesOrderInvoice).getDefaultReportFormat());       salesInvoiceContract = salesInvoiceController.parmReportContrac...