nerdexam
Microsoft

MB-820 · Question #82

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…

The correct answer is C. SharedLayout = false; Filters = where ("Balance (LCY)" = filter (> 500)). SharedLayout specifies whether the view has the same layout as the default view 'All.

Develop by using AL objects

Question

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?

Options

  • ASharedLayout = false; Filters = where (Balance = filter (> 500), "Currency Code" = filter ('LCY'));
  • BSharedLayout = true; Filters = where (Balance = filter (> 500), "Currency Code" = filter ('LCY'));
  • CSharedLayout = false; Filters = where ("Balance (LCY)" = filter (> 500));
  • DSharedLayout = true; Filters = where ("Balance (LCY)" = filter (> 500));

How the community answered

(33 responses)
  • A
    15% (5)
  • B
    9% (3)
  • C
    73% (24)
  • D
    3% (1)

Explanation

SharedLayout specifies whether the view has the same layout as the default view 'All.

Topics

#views#SharedLayout#filters#custom layout

Community Discussion

No community discussion yet for this question.

Full MB-820 Practice