Skip to main content

Posts

Question and answer on Ax workflow in axapta 2009

1. Which application element is used to define to which module a workflow is applicable? ( ) Workflow template (•) Workflow category ( ) A field in the workflow configuration ( ) SalesTable 2. Which type of AOT element needs to be created to specify which tables will be affected by a workflow? ( ) Extended data type ( ) Class ( ) Form (•) Query 3. There are three types of providers that define what rules the workflow can follow. What are they? (√) Participant provider (√) DueDate provider (√) Hierarchy provider ( ) Internet provider 4. Which two properties on a form data source need to be modified to allow the form to use a workflow? ( ) WorkflowTemplate (√) WorkflowEnabled ( ) WorkflowDocument (√) WorkflowDatasource

Question and answer on Project accounting in axapta

1. True or False: A project is linked to the customer table through ProjTable.CustAccount. ANSWER: False 2. In which class would you find a method that returns whether an employee hours transaction has already been invoiced? ANSWER: ProjTransEmplTrans 3. When posting a project invoice, which method calls the project totals calculation method - projProposalTotals.calc()? ANSWER: CreateJournal

Question and answer on Production in axapta

1. Which parm table is used when updating the status from Scheduled to Released? ANSWER: ProdParmRelease 2. Which class controls whether a production order can be updated from one status to another? ANSWER: ProdStatusType 3. WrkCtrRouteData is a data storage class which holds all____________ that are in a route. ANSWER: WrkCtrRouteData is a data storage class that holds all operations that are in a route.

Question and answer on Inventory in Axapta 2009

1. Is the InventDimParm table a temporary table? ANSWER: Yes 2. In which method is an InventDim record created? ANSWER: InventDim::FindOrCreate() 3. Which class is used to create inventory transactions? ANSWER: InventUpdate 4. Why has the Inventory Multi-transaction Tracking system been introduced? ANSWER: To solve deadlocking in InventSum 5. True or false: An InventDimId is always unique to an itemId. ANSWER: False

Question and answer on Trade in Axapta 2009

1. True or False: SalesLineType is a sub-class of SalesTableType. ANSWER: False 2. In which method in SalesFormLetter are the records in SalesParmLine created? ANSWER: SalesFormLetter.CreateParmLine() 3. What is the name of the class used when posting vendor transactions that handle both posting to the AP sub-ledger and the AP ledger account? ANSWER: CustVendVoucher 4. What is 8 div 3? ANSWER: Two

Question and Answer on Ledger in Axapta 2009

1. Which class holds a list of transactions that are going to be posted for a particular voucher? ANSWER: LedgerVoucherObject 2. The transaction log type and transaction log text are used in the ________trail. ANSWER: The transaction log type and transaction log text are used in the audit trail. 3. Which table stores default values that initialize a LedgerJournalTablerecord? ANSWER: LedgerJournalName 4. Which class posts a journal? MODEL ANSWER: LedgerJournalCheckPost

Question and answer on CLR in Microsoft Dynamics Ax 2009 x++

1. How do you make CLR Interop assemblies visible to Microsoft Dynamics AX 2009 X++ code? ANSWER: You add references to the assembly files in the AOT, under the References node. 2. Are CLR Interop assemblies, classes, and methods case-sensitive when referenced in X++ code? ANSWER: Yes. They are case sensitive 3. What code do you use, to provide Code Access Security permission to a CLR Interop class? MODEL ANSWER: new InteropPermission(InteropKind) 4. Which node on the AOT are Web service references found? ANSWER: The References node. 5. Which class contains multiple methods, using the kernel32.dll and user32.dll objects to communicate with the Windows environment? ANSWER: WinAPI