Skip to main content

Question and answer for Installation of Ax 2012

1. Which of the following initialization checklist steps are required? (Select all
that apply)
(√) Compile application
(√) Generate CIL
( ) Import data
( ) Create legal entities

2. What default ports are used for what purposes?
c 1. 2712
b 2. 8101
a 3. 8201
a. Services endpoint port
b. Services WSDL port
c. TCP/IP port

3. When should a single-computer deployment be used?
( ) Production system
(•) Test system
( ) When using an existing database
( ) When a custom port is desired

4. Which users can manage the Configuration Utility? (Select all that apply)
( ) All users
(√) Power users
(√) Administrators
( ) Guests

5. Categorize the following items by determining which configuration utility is used to complete each task.
Categories (Configuration Utilities):
1. Only the Microsoft Dynamics AX 2012 Server Configuration Utility
2. Only the Microsoft Dynamics AX 2012 Configuration Utility
3. Both Configuration Utilities Configuration Utility
4. Neither Configuration Utility
2 Item 1: Determine which AOS the client should connect to.
1 Item 2: Determine which database the AOS should connect to.
4 Item 3: Determine where the installation files are stored.
4 Item 4: Determine where the application file system is located.
2 Item 5: Determine which company the client should open on startup.
3 Item 6: Determine the database tuning and debugging settings.

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