Page 1996 Guided Experience Item List in 24

App
System Application
Namespace
System.Environment.Configuration
Source table
1990

Procedures, 1

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/Guided Experience/src/Guided Experience/GuidedExperienceItemList.Page.al66 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Environment.Configuration;

/// <summary>
/// Lists guided experience items.
/// </summary>
page 1996 "Guided Experience Item List"
{
    Caption = 'Guided Experience Item List';
    PageType = List;
    SourceTable = "Guided Experience Item";
    SourceTableTemporary = true;
    Editable = false;
    DeleteAllowed = false;
    InsertAllowed = false;
    Permissions = tabledata "Guided Experience Item" = r;

    layout
    {
        area(Content)
        {
            repeater(Control1)
            {
                ShowCaption = false;

                field(Title; Rec.Title)
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the name of the item.';
                }
                field(Description; Rec.Description)
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the description of the item.';
                }
                field(Extension; Rec."Extension Name")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the app that added the guided experience item.';
                }
                field(Link; Rec.Link)
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the link to start the guided experience.';
                }
            }
        }
    }

    trigger OnOpenPage()
    begin
        if Rec.FindFirst() then; // Set selected record to first record
    end;

    internal procedure SetGuidedExperienceType(GuidedExperienceType: Enum "Guided Experience Type")
    var
        GuidedExperienceImpl: Codeunit "Guided Experience Impl.";
    begin
        GuidedExperienceImpl.GetContentForSetupPage(Rec, GuidedExperienceType);
    end;
}

Procedures, 1

NameParametersReturnsAccessObsolete
SetGuidedExperienceType(Enum Guided Experience Type)internal-