Showing posts with label Microsoft Dynamics D365FO Technical Interview Question with Answers. Show all posts
Showing posts with label Microsoft Dynamics D365FO Technical Interview Question with Answers. Show all posts

Tuesday, October 1, 2019

Microsoft Dynamics D365 FO Technical Interview Question with Answers

Recent below questions were asked to fresher during technical  interview. His answers were noted down.  My intention here is to help freshers who trying for an opportunity in Dynamics. The answers could be more better depending your concepts understanding.

1)- What is the difference between AX2012 and D365FO?

Ans: i)-AX12 has local server while D365 is fully cloud based software.
    ii)-In AX12 ,overlaying concept is used while in D365 overriding or extension are used .
    iii)-D365 has power BI while AX12 does not have.
    iv)-D365 uses the concept of Chain of Commands (update version only).

2)- What is OOPS concepts?

Ans: The main OOPS concept are:
     a)-Data Abstraction: Showing only the essential information and hide background details.
     b)-Encapsulation: Wrapping of data member and method to a single unit.
     c)-Inheritance:-The Flowing of property of parent class to child class.
     d)-Polymorphism:-The property of using same method again and again to perform different
        things.

3)- What are the types of table in Ax?
Ans: In AX ,there are three types of table
    a) Regular
    b) In-Memory
    c) TempDB

4)-What is the difference between In-Memory and TempDB?

Ans: i)the data in In-Memory stored in AOS while in TempDB,it is stored in Sql Server.
        ii)In-Memory table can not join with regular table while TempDB table can join with regular tables.

5)-How many types of reports are there in Ax?

Ans: There are mainly two types of reports are there in AX
    a)-Query based report
    b)-RDP report

6)-Which classes are used in RDP report
Ans: RDP Class , Contract Class ,Controller Class

7)-What is COC (Chain of Command) ?

Ans: In D365,To create the extension of Protected acccess specified class , We mainly used COC,COC can also be used for public class.For extension we used the keyword Extension of(). We use the keyword final to define the class.we use the keyword next to call the base class methods.

8)-Which menu item is used for what in AX?
Ans:
     Display- is used for form
     Action- is used for class,runnable jobs.
     Output- is used for SSRS Report.

Monday, September 9, 2019

Microsoft Dynamics 365 For Finance and Operations Interview questions for freshers

I am sharing the questions that was asked to one of the fresher during  technical interview.

Questions that were asked by first company:-

1)-First of all ,what things we do in D365??(in simple word how to create model and project)
2)-what is OOPS concept and what are its properties?
3)-At the time of EDT extension ,which properties can we edit?
4)-What is static class?
5)-How do we call static class member??
6)-What are the steps to create a form?
7)-Which type of data source used in list page form pattern?
8)-Write the syntax of class?
9)-How many types of Report are there in D365?
10)-Write the steps to create Query based report?
11)-Which classes are used in RDP report?
12)-What are the extends of RDP class and Controller class?
13)-How to write the Attribute in contract class?
14)-Which attributes are used in contract class?
15)-How to create Chain of commands?
16)- Why do we create COC?
17)-Why do we use next keyword in COC?
!8)-what is the difference between D365 and AX12?
19)-What are the steps to create static query?


Questions that were asked by second company:-

1)-What is D365?
2)-What is ERP?
3)-What is LCS?
4)-What is Paging? ( Note:- I think this question should be asked to experienced candidates)
5)-Write a sql command to select the third highest mark among all the student?
6)-What is Table and what is its use?
7)-What is VM Or RDP?
8)-What is EDT?
9)-Is it possible to give the ENUM values as 1,2,3 & 100?
10)What is data loss?
11) How to create disk partition? ( Note:- I think this question should be asked to experienced candidates)
12)Why we create index?  

Hope these questions help freshers in getting job.

Thanks,
Uma




Monday, August 5, 2019

Interview Question : Microsoft Dynamics 365 Finance and Operation Technical (D365FO)


Few days back I attended D365FO technical interview. I am listing down the questions which I remember now. Actually these questions were asked during the first round of interview.




  1. How to convert currency code to your local currency code in x++?
  2. What are the extension classes used in reports?
  3. What are the types of delete action?
  4. What is platform update and Application Update in D365FO?
  5. What is equivalent of AIF in D365?
  6. How you will write query based on Salesline and InventTrans table?
  7. What is common datatype and what is its use?
  8. what is the datatype of recid?
  9. what is the main limitation of SimpleListDetail Form?
More questions I will post.

Thanks,
Uma

Get Enum Id and Enum Value in D365FO using SQL and X++

 Below is the sql get enum id and enum value of a enum in D365 F&O using sql. SELECT   enumidtable . NAME           'Enum Name' ...