Skip to content

Latest commit

 

History

History
59 lines (48 loc) · 2.07 KB

devenv-adding-help-links-from-pages-tables-xmlports.md

File metadata and controls

59 lines (48 loc) · 2.07 KB
title description author ms.date ms.reviewer ms.topic ms.author
Adding help links from pages, reports, and XMLports
This article shows how to specify the Help link on pages, reports and XMLports in AL for Business Central.
SusanneWindfeldPedersen
05/23/2022
solsen
conceptual
solsen

Adding help links from pages, reports, and XMLports

When creating new pages, you can specify which Help file to open if the user selects the Learn more links in the UI of [!INCLUDEprod_short].

The context-sensitive Help link is generated based on a configuration setting in the app.json file and the name of the relevant Help file that you specify as part of the metadata for the page object. For more information, see Configure Context-Sensitive Help.

Examples

The following examples show how you can specify the ContextSensitiveHelpPage property from new pages, reports, and XMLports:

page 50100 MyPageWithHelp
{
    ContextSensitiveHelpPage = 'sales-rewards';
}
report 50100 MyReportWithHelp
{
    requestpage
    {
        ContextSensitiveHelpPage = 'sales-rewards';
    }
}
xmlport 50100 XmlPortWithHelp
{
    requestpage
    {
        ContextSensitiveHelpPage = 'sales-rewards';
    }
}

In all three examples, the ContextSensitiveHelpPage property is set to point at the same Help file. This is because all three example objects support the same feature that is explained in the sales-rewards Help article. In your app, you can choose to structure the Help differently.

See Also

Configure Context-Sensitive Help
Translating Base App Help
JSON Files
Page Object
Report Object
XMLport Object
Table Object
ContextSensitiveHelpPage Property