Skip to main content

Microsoft MB6-890 exam Certification Ax 7 Rainier questions and answers dump sample




1. Which of the below is NOT a component of AX architecture?

10/10

Forms engine



UI interaction layer



AIF



Caches







2. In new AX architecture, AOS windows service has been  removed. True or False?



True



False







3. Number sequence fall in which part of application stack? 10/10



Application suite



Application foundation



Application platform



None of the above. It comes as a separate model which is not part of any of above.







4. Identify all the conceptual areas of AX cloud architecture.10/10



Shared Microsoft services



Microsoft Dynamics AX



Microsoft Windows Azure



Microsoft Dynamics LifeCycle Services







5. Which of the below statement is true?

10/10




If an object fails in compilation whole build fails.



If an object fails in compilation, rest of the objects in the build will still work.



If an object fails in compilation, rest of the objects in the build will work but the build can't be deployed.



If an object fails in compilation, rest of the objects in the build will work but the package can't be created with error object.



6. What are the ways to arrange AX objects in application  explorer?



By type



By model



Search




Fixed








7. Choose the correct way to synchronize a table.

10/10




Right click on table and select synchronize



In project (where table is present), choose property to synchronize on build. Then build the project.



Right click the Tables node in application explorer and select synchronize.



Tables can only be synchronized from SQL server.





8. Forms can only edited in designer window not directly in  application explorer or solution explorer. True or False?



True



False








9. Which of the following statement(s) is/are correct?

10/10




A package can contain more than one model.



A model can contain more than one project.



A package can contain more than one project.




A model can contain more than one package.




10. Which of the below can be added as resource?

10/10




Image File



Excel File



External URL



All of the above.





11. Which of the below is a best practice for labels?

10/10




Label should be created for each external text.



Label should be created for each language in which AX is published by Microsoft.



New label should be created for each version of element.



None of the above.







12. Resources are stored in a system table in database. True  or False?



True



False








13. Identify the correct statement about labels.

10/10




Labels should be kept as plain text during development and should be created at the end of all development.



Labels should be created first before start of any other development.



Label file should be created before development and all labels post Ƹnal development.



None of the above.





14. Base enumeration elements can have

10/10


Values manually assigned to them.




Values automatically assigned to them.




Values decided upon run-time.




Values based upon formula.




15. Choose the correct statement

10/10


Base enum can extend any EDT.




Base enum can extend only EDT which is of type Base enum.




An EDT of type base enum can extend any base enum.




An EDT of type base enum can extend ony base enum whose element




values are manually assigned.




16. As a best practice, value of custom element in base

0/10




enumerator should



Start from maximum integer value descending.



Start from next higher integer value avaialble



Fit into the gap in existing element value if any.



Start after a gap from existing element values.








17. Which of the below is a primitive data type

10/10




Float



EDT



GUID



Base enumerator

18. Which property in the string type EDT cannot be overridden in child EDT?

10/10

String Size



Display Length



Button Image



Change Case




19. Identify the best practice for EDTs

10/10




EDT should be created for every field in table except primitive data types.



Only create a subtype when needed.



EDTs should pass a "Was a" test.



EDTs should be created for each non-atomic entity.

















20. Which table property is used for inheritance?

10/10




TableType



Extends



TableGroup



Abstract








21. Which is NOT a value in 'Table Type' property?

10/10




Miscellaneous



Regular



InMemory



TempDB








22. A clustered index is

10/10




Used to maintain data integrity in table.



Used to decide on data storage pattern in database.



Used to define unique data fields in table.



Used to deƸne alternative key Ƹelds in table.



23. Identify the type of table relations

0/10




Fixed field relation



Normal relation



Related field Ƹxed relation



Field fixed relation









24. As a table best practice

10/10




'Created by' property should be 'Yes' for all tables..



'Created by' property should be 'Yes' for all transaction tables.



'Created by' property should be 'Yes' only for table where this information is needed for business.



'Created by' property should be 'Yes' only for parameter tables.











Popular posts from this blog

strScan and Find a first occurrence of a string in a string using x++

strScan (Find a first occurrence of a string in a string) info("int strScan(str _text1,str _text2,int _position,int _number)"); info("Searches a text string for the occurrence of another string."); info("_text1 - The text string to search."); info("_text2 - The string to find."); info("_position - The position at which the search should start."); info("_number - The number of characters that should be searched."); info(int2str(strScan("ABCDEFGHIJ","DE",1,10)));

Get record from table on the basis of field id in Microsoft dynamics axapta x++

How to Get record from table on the basis of field id in dynamics axapta x++. just try following code in job to understand better way. emplTable emplTable; FieldId fieldId; ; fieldId = fieldNum(emplTable, Emplid); select emplTable; info(emplTable.(fieldId)); select emplTable where emplTable.(fieldId) == '1101'; info(emplTable.Name);

Code to get customer Primary Address in Ax 2012

Below Code to get customer Primary Address in Ax 2012. CustTable custTable_P; DirPartyTable dirPartyTable_P; DirPartyLocation dirPartyLocation_P; DirPartyLocationRole dirPartyLocationRole_P; LogisticsLocation logisticsLocation_P; LogisticsLocationRole logisticsLocationRole_P; LogisticsPostalAddress logisticsPostalAddress_P; LogisticsPostalAddress primaryAddress_P; while select custTable_P where custTable_P.AccountNum =='ED_01029' join dirPartyTable_P where dirPartyTable_P.RecId == custTable_P.Party join dirPartyLocation_P where dirPartyLocation_P.Party == custTable_P.Party && dirPartyLocation_P.IsPrimary==NoYes::Yes join dirPartyLocationRole_P where dirPartyLocationRole_P.PartyLocation == dirPartyLocation_P.RecId join logisticsLocationRole_P where logisticsLocationRole_P.RecId == dirPartyLocationRole