How to do it...

  1. Open your AL project in Visual Studio Code.
  2. 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)        {        }    }}
Wizard pages are defined using the NavigatePage page type.
  1. 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 ...

Get Microsoft Dynamics 365 Business Central Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.