Skip to main content

QNA for Overview and planning in axapta 2012

1. Describe the use and purpose of using a RAID subsystem.
ANSWER:
RAID refers to a group of two or more disks managed as a single unit to store the data together with additional, or redundant, information to provide recovery if there is a disk failure. Usually a failed disk in a RAID system can be replaced while the server is still running.

2. Clients can connect to the AOS by using which of the following methods?
(Select all that apply)
(√) Remote Procedure Calls (RPCs)
(√) Windows Communication Foundation (WCF)
(√) AOS services
( ) .NET Business Connector

3. True or False? All Microsoft Dynamics AX components are supported on a 64-bit operating system.
(•) True
( ) False

4. Which of the following servers are required for a basic installation of Microsoft Dynamics AX 2012? (Select all that apply)
(√) Domain Controller
(√) Application Object Server
( ) Reporting Server
(√) Database Server

5. Which of the following is not an element of the client?
( ) Rich user interface
( ) MorphX development environment
(•) Visual Studio development environment
( ) Reports

6. Which of the following components do not support 32-bit operating systems?(Select all that apply)
( ) .NET Business Connector
(√) Enterprise Portal
( ) Visual Studio Tools
(√) Help Server

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