Skip to main content

Professional Certifications with codes and name list

 DAS-C01 : AWS Certified Data Analytics - Specialty

SAA-C02 : AWS Certified Solutions Architect - Associate (SAA-C02)

DBS-C01 : AWS Certified Database - Specialty

AXS-C01 : AWS Certified Alexa Skill Builder-Specialty

MLS-C01 : AWS Certified Machine Learning - Specialty

CLF-C01 : AWS Certified Cloud Practitioner

SAP-C01 : AWS Certified Solutions Architect - Professional

DOP-C01 : AWS Certified DevOps Engineer - Professional

ANS-C00 : AWS Certified Advanced Networking Specialty

DP-201 : Designing an Azure Data Solution

CLF-C01 : AWS Certified Cloud Practitioner

DCA : Docker Certified Associate (DCA) Exam

EX200 : Red Hat Certified System Administrator (RHCSA) Exam

IIA-CIA-Part1 : Essentials of Internal Auditing

IIA-CIA-PART2 :Certified Internal Auditor - Part 2, Conducting the Internal Audit Engagement Exam

IIA-CIA-Part3 :Business Knowledge for Internal Auditing

MCIA-LEVEL-1 : MuleSoft Certified Integration Architect - Level 1

MCPA-LEVEL-1 : MuleSoft Certified Platform Architect - Level 1

MCD-LEVEL-1 : MuleSoft Certified Developer - Level 1 (Mule 4) 

CISM : Certified Information Security Manager 

CISSP : Certified Information Systems Security Professional (CISSP)

SSCP : System Security Certified Practitioner (SSCP) 

CCSP : Certified Cloud Security Professional

CISA :Isaca CISA 

PMP- Project Management Professional (New Version)

MB-200 : Microsoft Dynamics 365 Customer Engagement Core

MB-310 : Microsoft Dynamics 365 for Finance and Operations, Financials

MB-700 : Microsoft Dynamics 365: Finance and Operations Apps Solution Architect

MB-700 : Microsoft Dynamics 365: Finance and Operations Apps Solution Architect

MS-700 : Managing Microsoft Teams

MS-500 : Microsoft 365 Security Administration

MB-901 : Microsoft Dynamics 365 Fundamentals

MB-600 : Microsoft Power Apps + Dynamics 365 Solution Architect

MS-500 : Microsoft 365 Security Administration

MS-900 : Microsoft 365 Fundamentals

AI-100 : Designing and Implementing an Azure AI

AZ-203 : Developing Solutions for Microsoft Azure 

AZ-900 : Microsoft Azure Fundamentals

AZ-400 : Microsoft Azure DevOps Solutions (beta)

AZ-103 : Microsoft Azure Administrator

AZ-104 : Microsoft Azure Administrator Exam

AZ-120 : Planning and Administering Microsoft Azure for SAP Workloads 

AZ-204 : Developing Solutions for Microsoft Azure

AZ-300 : Microsoft Azure Architect Technologies 

AZ-301 : Microsoft Azure Architect Design

AZ-303 : Microsoft Azure Architect Technologies Exam 

AZ-400 : Microsoft Azure DevOps Solutions (beta)

AZ-500 : Microsoft Azure Security Technologies

AZ-900 : Microsoft Azure Fundamentals 

ADM-201 : Administration Essentials for New Admins

DP-900 : Microsoft Azure Data Fundamentals

DA-100 : Analyzing Data with Microsoft Power BI

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