Skip to main content

Dynamics CRM,GP,NAV SL Version list

Dynamics CRM 1.2 SDK and DDKs
Dynamics CRM 2011 Language Pack
Dynamics CRM 2013 Language Pack
Dynamics CRM 2013 Language Pack SP1
Dynamics CRM 2013 SDK
Dynamics CRM 2015 Language Pack
Dynamics CRM 2015 SDK
Dynamics CRM 2016 Language Pack
Dynamics CRM 2016 Language Pack SP1
Dynamics CRM 2016 SDK
Dynamics CRM 2016 SDK SP1
Dynamics CRM Server 2011
Dynamics CRM Server 2013
Dynamics CRM Server 2013 SP1
Dynamics CRM Server 2015
Dynamics CRM Server 2016
Dynamics CRM Server 2016 SP1
Dynamics GP 2010
Dynamics GP 2010 SDK
Dynamics GP 2010 Service Pack
Dynamics GP 2010 Service Pack 3
Dynamics GP 2010 Service Pack 4
Dynamics GP 2013
Dynamics GP 2013 R2
Dynamics GP 2013 Service Pack 1
Dynamics GP 2013 Service Pack 2
Dynamics GP 2015
Dynamics GP 2015 R2
Dynamics GP 2016
Dynamics NAV 2009
Dynamics NAV 2009 R2
Dynamics NAV 2013
Dynamics NAV 2013 R2
Dynamics NAV 2015
Dynamics NAV 2016
Dynamics NAV 2017
Dynamics NAV 4.0 License File
Dynamics NAV 5.0
Dynamics Point of Sale 2009
Dynamics SL 2011
Dynamics SL 2015
Dynamics SL 7.0
Dynamics SL 7.0 Service Pack and Feature Pack

Popular posts from this blog

sales order Totals option getting error in Axapta

Problem: On  click sales order Totals option getting below error. Please help me how to solve it. Microsoft.Dynamics.Ax.Xpp.ClrErrorException: Exception of type 'Microsoft.Dynamics.Ax.Xpp.ClrErrorException' was thrown. at Microsoft.Dynamics.Ax.Xpp.CLRInterop.MakeReflectionCall(Object instance, String methodName, Object[] parameters) at Dynamics.Ax.Application.TaxDocumentProxy.Sumbytaxaccountingprovider(TaxAccountingProvider taxAccountingProvider, TaxAcctPostingProfDistributionSide postingSide, String taxType, String taxComponent, Boolean , Boolean , Boolean ) in TaxDocumentProxy.sumByTaxAccountingProvider.xpp:line 15 at Dynamics.Ax.Application.TaxDocumentProxy.@Sumbytaxaccountingprovider(TaxAccountingProvider taxAccountingProvider, TaxAcctPostingProfDistributionSide postingSide, String _taxType, Boolean , Boolean ) at Dynamics.Ax.Application.TaxDocumentProxy.@Sumbytaxaccountingprovider(TaxAccountingProvider taxAccountingProvider, TaxAcctPostingProfDistributionSide postingSide, ...

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...