Skip to main content

Posts

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

Code to get Sales order Total Value in Axapta | calculate total for sales order

This is sample Code to get Sales order Total Value in Axapta. You can try this job in Your Ax environment to check all vales . It will work well with open and Invoiced status sales order I hope it will help you and save your lot of time. static void SalesTotalAmountJOb(Args _args) { SalesTotals salesTotals; SalesTable salesOrderTable; SalesLine salesLine; TaxAmountCur salesAmt,taxAmount,amt1,discountAmt,totcharges,totOfOrder,contributionRatio; Tax tax; ; salesOrderTable = SalesTable::find("TD_SO_00069218"); salesLine = SalesLine::find(salesOrderTable.SalesId); salesTotals = SalesTotals::construct(salesOrderTable); tax = Tax::construct(NoYes::No); salesAmt = salesTotals.totalBalance(); taxAmount = salesTotals.totalTaxAmount(); discountAmt = salesTotals.totalEndDisc(); totcharges = salesTotals.totalMarkup(); totOfOrder = salesTotals.totalAmount(); contribut

Related competency retiring exams and validity of Microsoft Certification Azure cloud

Related competency Retiring exams Application Development Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam 70-532: Developing Microsoft Azure Solutions • Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions • Exam 70-535: Architecture Microsoft Azure Solutions Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam AZ-100: Microsoft Azure Infrastructure and Deployment • Exam AZ-101: Microsoft Azure Integration and Security Application Integration Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam 70-532: Developing Microsoft Azure Solutions Cloud Platform Retirement date: December 31, 2018 Valid until: December 31, 2019 • Exam 70-532: Developing Microsoft Azure Solutions • Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions • Exam 70-535: Architecting Microsoft Azure Solutions • MCSA: Linux on Azure Retirement date: May 1, 2019 Valid until: May

Microsoft Certification Exams retiring June 30, 2019

Related competency Exams retiring June 30, 2019 Application Development • Exam AZ-102: Microsoft Azure Administrator Certification Transition Cloud Platform • Technical Assessment for Cloud Platform • Technical Assessment for Remote Desktop Services on Azure • Technical Assessment for Using Azure for Data Analytics and Data Platform Solutions • Technical Assessment for Using Microsoft Azure for Application Development • Technical Assessment for Using Azure for Internet of Things Solutions • Exam-70-473: Designing and Implementing Cloud Data Platform Solutions • Exam-70-475: Designing and Implementing Big Data Analytics Solutions • Exam AZ-102: Microsoft Azure Administrator Certification Transition • Exam AZ-302: Microsoft Azure Solution Architect Certification Transition Data Analytics • Exam 70-773: Analyzing Big Data with Microsoft R • Exam 70-774: Perform Cloud Data Science with Azure Machine Learning • Exam 70-475: Designing and Implemen

Check what's new and planned for Dynamics 365 Business Central in the April 2019 release

You can  check on below link what's new and planned for Dynamics 365 Business Central in the April 2019 release. Overview of Dynamics 365 Business Central April '19 release I hope you will like and share to aware more people about it among our Ax professional.You will get idea about  Powerful new features for business users and  Performance, reliability, and scalability enhancements etc .

Code to get average cost price Item wise without dimension or blank dimension in Axapta

Below is the Code to get average cost price Item wise without dimension or blank dimension in Axapta. Mostly we not able to get cost price item wise because in on hand form its available inventory dimension wise so below code will help you to get cost price item wise. Try this code and enjoy daxing... display CostPriceAverage averageCostPriceUnit_New() { CostPriceAverage costprice; InventDim inventDimCriteria; ItemId itemId; InventDimParm inventDimParm; date perDate =systemDateGet(); InventOnHand inventOnHand; ; itemId = this.ItemId; inventDimCriteria.inventBatchId = ''; inventDimParm.initFromInventDim(inventDimCriteria); inventOnHand = InventOnhand::newParameters(itemId, inventDimCriteria, inventDimParm); costprice= inventOnHand.costPricePcs(false, perDate); return costprice; }