Skip to main content

Kirill Tatarinov (President of Microsoft Business Solutions) - where Dynamics will be in 2018

Kirill Tatarinov


Kirill Tatarinov-Views on Dynamics

Kirill Tatarinov (President of Microsoft Business Solutions) said the key to the continued success of Microsoft Dynamics solutions will be its customers. "[Customers] will be instrumental in where Dynamics will be in 2018."

He added that by 2018, more larger organizations will be deploying Dynamics solutions.

"In fact it's already happening today as larger organizations trust us to run their business processes," Tatarinov said. "You can expect this trend to continue as more Global 2000 organizations trust Microsoft to handle their enterprise class requirements.

Other Users Views:

Views 1:- The continued success of Microsoft Dynamics solutions will be its Consultants not the Customers. It is the issue of the well trained and educated consultants who deliver the product to the customer.

Views 2:-
Unfortunately way too many partners today are not focusing enough on the employees. This has to be changed for the future, else we'll continuously see all the failed implementations which unfortunately are too common in the GCC area
Views 3:-
Partners concern on the Sales Department only cause they are focused only on the Income.. And this is in real life called "Business".. This is what business is.. But When implementing the ERP System, it is not the issue of the Company, And this is the bad thing that destroy the implementation of the ERP.

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