Skip to main content

Posts

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; }

You can start Development work on Microsoft dynamics 365 by view this clip.

Dear Friends, You can start Development work on Microsoft dynamics 365 by view this clip. I hope you will like share and subscribe this channel. This is a very simple video clip to learn Basic technical of Dynamics 365 finance and operations for Startup which you can say extended version of Ax 2012. If you want to learn more then you can visit this list. Dynamics 365 Learning Hub for Finance and operations

Follow this technique to Solve Problem in Year 2019 | Problem solving process

Friends You can Follow this technique to Solve Problem in Year 2019. I hope you will able to understand.

How to add field in Onhand Inventory form in Ax 2012

This is typical question How to add field in Onhand Inventory form in Ax 2012 but I got easy way to solve. Only drag drop field will not help on this query . You need to reach on class InventDimCtrl_Frm_OnHand then find method modifyQuery then you need to add your field in group by otherwise you never be able to add field in on hand form. I hope it will help you a lot You should write code at the Classes\InventDimCtrl_Frm_OnHand\modifyQuery() method  This is called when you open the On Hand form, where Item number is shown and group by with other field.