Skip to main content

Available Courses For Dynamics AX 2012

ere are available Axapta certifications courses.
However there are limited certification are available till date, but study materials are available as resources/references.
Have a look on below table.



Course CodeCourse name
80163AWhat's New - Application in Microsoft Dynamics® AX 2012 for Supply Chain Management and Manufacturing

80164AWhat's New - Application in Microsoft Dynamics® AX 2012 for Finance, PA, Case Mgmt., HRM and Public

80165AWhat's New - Technical in Microsoft Dynamics® AX 2012 for Implementation

80219AFinancials I in Microsoft Dynamics® AX 2012

80220AFinancials II in Microsoft Dynamics® AX 2012

80221AInstallation and Configuration for Microsoft Dynamics® AX 2012

80299AWhat's New - Technical in Microsoft Dynamics® AX 2012 for Development

80300AIntroduction to Microsoft Dynamics® AX 2012

80302AFixed Assets in Microsoft Dynamics® AX 2012

80303ADevelopment I in Microsoft Dynamics® AX 2012

80304ADevelopment II in Microsoft Dynamics® AX 2012

80305ASupply Chain Foundation in Microsoft Dynamics® AX 2012

80306ADistribution and Trade in Microsoft Dynamics® AX 2012

80307AEnterprise Portal Development in Microsoft Dynamics® AX 2012

80308AProcurement in Microsoft Dynamics® AX 2012

80309AMicrosoft Dynamics® AX 2012 Process Manufacturing Production and Logistics

80310ALEAN Manufacturing in Microsoft Dynamics® AX 2012

80311AService Industries in Microsoft Dynamics® AX 2012

80312ADevelopment III in Microsoft Dynamics® AX 2012

80313ADevelopment IV in Microsoft Dynamics® AX 2012

80314ADiscrete Manufacturing Basics in Microsoft Dynamics® AX 2012

80315ADiscrete Manufacturing Advanced in Microsoft Dynamics® AX 2012

80316AProject Essentials in Microsoft Dynamics® AX 2012

80317AProject Advanced in Microsoft Dynamics® AX 2012

80318AReporting in Microsoft Dynamics® AX 2012

80338AMicrosoft Dynamics® AX 2012 Public Sector – Financials

80339ABill of Materials in Microsoft Dynamics® AX 2012

80414AService Management in Microsoft Dynamics® AX 2012

80415APublic Sector Procurement and Payables in Microsoft Dynamics® AX 2012

80416AApplication Integration Framework and Services in Microsoft Dynamics® AX 2012

80419AManufacturing Execution in Microsoft Dynamics® AX 2012

80420AData Upgrade and Code Upgrade to Microsoft Dynamics® AX 2012

80421ASales and Marketing in Microsoft Dynamics® AX 2012

80422AIntercompany Setup and Order Processing in Microsoft Dynamics® AX 2012

80423AMaster Planning in Microsoft Dynamics® AX 2012

80424AProduct Configuration in Microsoft Dynamics® AX 2012

80427AWarehouse Management in Microsoft Dynamics® AX 2012


Comments

Popular posts from this blog

D365 : ENABLE AND DISABLE IN LIST PAGE

 here i have added 4 button in salesQuotationlistpage. now i need to enable/disable button according status. so i have Extensionof  of class SalesQuotationListPageInteraction and modify setButtonEnabled method by Chain of Command //list page button enable and diable in listpage interation class [ExtensionOf(classStr(SalesQuotationListPageInteraction))] final class SQTableinimathod_Extension {     protected void setButtonEnabled()     {                SalesQuotationTable SalesQuotationTable;         CustQuotationJour   CustQuotationJour;         CustQuotationConfirmJour  CustQuotationConfirmJour;               next setButtonEnabled();         SalesQuotationTable SalesQuotationTable1 = this.listPage().activeRecord(queryDataSourceStr(SalesQuotationListPage, SalesQuotationTable));         selec...

An error occurred during report data sets execution D365 For finance and operations

  Hi all, small tip. I faced this issue, when I extend the custom report in D365 for finance and operations. During development on onebox     Solution was simple, restart IIS services Restart Reporting Services. Happy Daxing.

CODE TO PDF IN AX 2012

static void Job1(Args _args) {         PurchPackingSlipController      ssrsController = new SrsReportRunController();         TradeDocumentReportContract     purchPackingSlipContract = new TradeDocumentReportContract();         SRSPrintDestinationSettings     printerSettings;         VendPackingSlipJour             VendPackingSlipJour;         Args                            args;         //select the latest record based on create date         while select VendPackingSlipJour             order by VendPackingSlipJour.createdDateTime DESC             where VendPackingSlipJour.PackingSlipId == 'LJ-01'         ...