Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

1.What are the basic components of a select statement query?

A. The basic components of a select statement query in D365 are the SELECT, FROM, WHERE, and
ORDER BY clauses.

2. How do you sort data in a select statement query?

A. To sort data in a select statement query in D365, use the ORDER BY clause followed by the column
name and either ASC (ascending) or DESC (descending).

4. How do you customize an AOT query?

A. To customize an AOT query in D365 FO, you can modify the properties of the query in the AOT or
use extensions to create a new query based on an existing one.

5. What is the Query Range Builder in an AOT query?

A. It is a tool that allows users to define filter criteria for a query using a graphical interface.

6. How do you use subqueries in a select statement query?

A. To use subqueries in a select statement query in D365, include a query inside another query to
retrieve data based on the results of the inner query.

7. How do you debug an X++ query in D365 FO?

A. you can use the debugger in the development environment to step through the code and identify
any errors or issues.

8. How do you use an X++ query in D365 FO in code?

A. To use an X++ query in D365 FO in code, create a Query Run object and use the execute method
to execute the query and retrieve the results.

9. What is the difference between an AOT query and an X++ query?

A. An AOT query in D365 FO is created using the Application Object Tree in the development
environment, while an X++ query is created using the X++ programming language. An AOT query can
be used to generate X++ code, while an X++ query is code that can be used directly in your
application.

10. Type joins in querys?

A. 1.inner join

2.outer join

3.exit join

4.not exit join

11. Different between select and while select?

A. select: first single record only we get a data.

b. while select: all record we get a data.

You might also like