ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 81 - MB-820 discussion

Report
Export

You ate creating a view for a Business Central app.

The view requires a custom layout that displays only customer records with a balance greater than 500 in local currency.

You need to configure the view to specify that it has a custom layout.

Which property combination should you use?

A.

shareLayout = false; Filters = where (Balance = filter (> 500), ''Currency Code' = filter ('ICY*));

Answers
A.

shareLayout = false; Filters = where (Balance = filter (> 500), ''Currency Code' = filter ('ICY*));

B.

SharedLayout - true; Filters - where (Balance filter (> 506), ''Currency Code' - filter ('LCY')>;

Answers
B.

SharedLayout - true; Filters - where (Balance filter (> 506), ''Currency Code' - filter ('LCY')>;

C.

SharedLayout - false; Filters - where ('Balance (ICY)' - filter (> 500));

Answers
C.

SharedLayout - false; Filters - where ('Balance (ICY)' - filter (> 500));

D.

Sharediayout = true; Filters - where ('Balance (ICY)' - filter (> 500));

Answers
D.

Sharediayout = true; Filters - where ('Balance (ICY)' - filter (> 500));

Suggested answer: B

Explanation:

SharedLayout = true allows for the layout to be shared across views, and it is often used when defining a custom layout that should follow specific filtering conditions.

The Filters property specifies the exact filter criteria for the view, in this case, filtering on Balance > 500 and the Currency Code = LCY (local currency).

A uses incorrect filter syntax and shareLayout = false, which doesn't allow the layout to be shared, so it's not ideal for this use case.

C and D both have issues with the filter syntax and do not use proper Currency Code filtering or share layout settings.

For more details, check Creating Views in Business Central.

asked 13/10/2024
Latonya Ganison
27 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first