- Open your AL project in Visual Studio Code.
- In Explorer, create a new file named Setup Television Shows Wizard.al and use Editor to create a new empty page object as follows:
page 50107 "Load Television Shows Wizard"{ Caption = 'Load Television Shows'; PageType = NavigatePage; layout { area(content) { } } actions { area(processing) { } }}
- Following the standards from Microsoft for Assisted Setup wizards, we need to add a couple of sections to show the banners on the page. This will give our wizard the same look and feel as the rest of the wizards in Business Central.
Add the following code to the area(content) section:
group(StandardBanner){ Caption = ''; Editable ...