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

Process of Sales order in Technical terms in D365Fo

 🔥 Sales Order Technical Flow in D365FO (Creation → Confirmation → Picking → Packing Slip → Invoice → Accounting) 1. Sales Order Creation Tables SalesTable → SO header SalesLine → SO lines CustTable → Customer master InventDim / InventDimCombination → Dimensions InventTable / EcoResProduct → Item master Framework Classes SalesTableType / SalesLineType Responsible for validation, defaulting, creation logic Key Methods SalesTable.initValue() SalesLine.initFromSalesTable() SalesTable.validateWrite() SalesLine.validateWrite() Events (Extensions) SalesTableType.createSalesTable() SalesLineType.createSalesLine() 2. Reservation (Optional) If reservation is done: Tables InventTrans (Reservation status) InventReservation Classes InventUpd_Reservation InventTransReservation Reservations impact picking and inventory availability. 3. Sales Order Confirmation Confirms order and freezes price/quantity. Posti...

Top 200 Q&A in D365FO Technical

  SECTION 1 — X++ BASICS (10 Q&A) 1. What is X++? A proprietary object-oriented language used in Dynamics 365 Finance & Operations for business logic, similar to C# but integrated with D365 runtime. 2. What is a TableBuffer? It is an in-memory object referencing a table. Example: CustTable custTable; 3. What is difference between select and select firstonly ? select → returns all matching rows firstonly → returns only the first matched row 4. What is ttsbegin & ttscommit ? Used to wrap database transactions; ensures atomicity. 5. Can we write SQL queries directly in X++? No. X++ uses a database-abstracted select statement. 6. What is a container? A collection datatype used to store mixed data types. 7. Difference between container and map? Map stores key-value pairs; container is indexed and immutable. 8. What is a temp table? A table that stores data temporarily in memory or database depending on property. 9. What is recursion in X++? A method c...

Process of Purchase order in Technical terms in D365Fo

  Purchase Order Technical Flow in D365FO (Step-by-Step) (From creation → approval workflow → posting → product receipt → invoice → accounting) 1. Purchase Order Creation Tables involved PurchTable → PO header PurchLine → PO lines VendTable → Vendor master InventDim / InventDimCombination → Item dimensions EcoResProduct / InventTable → Item master Classes / Framework PurchTableType / PurchLineType Framework that controls creation, validation, defaulting. Key methods PurchTable.initValue() PurchLine.initFromPurchTable() PurchTable.validateWrite() PurchLine.validateWrite() Events (Extension points) PurchTableType.createPurchTable() PurchLineType.createPurchLine() 2. Purchase Order Confirmation Document Status update PurchTable.DocumentState → Confirmation PurchParmBuffer tables used for versioning. Posting Class PurchFormLetter_Confirm Called internally via PurchFormLetter::construct(DocumentStatus::Co...