Microsoft Dynamics 365 Business Central Developer — Question 42
You are 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?
Answer options
- A. SharedLayout = false; Filters = where (Balance = filter (> 500), “Currency Code” = filter (‘LCY’));
- B. SharedLayout = true; Filters = where (Balance = filter (> 500), “Currency Code” = filter (‘LCY’));
- C. SharedLayout = false; Filters = where (“Balance (LCY)” = filter (> 500));
- D. SharedLayout = true; Filters = where (“Balance (LCY)” = filter (> 500));
Correct answer: C
Explanation
The correct answer is C because it specifies that the layout is not shared, which is required for a custom layout. Options A and B incorrectly include the 'Currency Code' filter, which is unnecessary for just filtering by balance in local currency. Option D incorrectly states that the layout is shared, which contradicts the requirement for a custom layout.