Skip to main content

Question and answer on Simple BOM in Axapta 2012

1. What special feature does a user have while editing BOM lines in the BOM designer?
ANSWER:
The user can edit the BOM lines by using the drag and drop feature to add items in the BOM designer form.

2. When do the BOM version and Print buttons become available in the BOM designer form?
ANSWER:
The BOM version and Print buttons in the BOM designer form are available when a sub-BOM is selected.

3. Which of the following statements is not true about the BOM designer features?
( ) BOM designer enables users to create new BOM versions.
( ) It checks BOMs for errors, for example, circularity.
( ) BOM designer enables users to print a BOM and BOM lines for the selected BOM.
(•) BOM designer enables users to create new BOMs.

4. Which of the following statements is true about the BOMs?
( ) A BOM is connected to a certain item in the BOM designer form that is accessed from the Bills of materials form.
( ) BOMs can be created in Microsoft Dynamics AX 2012 in two forms, the Released products list page and the BOM designer form.
( ) The user can create a definite number of BOMs in the Bills of materials form.
(•) Simple BOMs that are not yet associated with items, or that are in the initial planning stages, are created in the Bills of materials form.

5. How can the component items be added to the BOM tree structure? (Select all that apply)
(√) Double-click items in the item list.
( ) Right-click an item in the item list and select Move to BOM.
( ) Click the Add item button.
(√) Use a drag-and-drop operation to move component items into the tree structure.

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