Page 5874 BOM Warning Log

App
Base Application
Namespace
Microsoft.Inventory.BOM
Versions
17-28
Source table
5874

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Inventory/BOM/BOMWarningLog.Page.al69 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 Microsoft.Inventory.BOM;

page 5874 "BOM Warning Log"
{
    Caption = 'BOM Warning Log';
    Editable = false;
    PageType = List;
    SourceTable = "BOM Warning Log";

    layout
    {
        area(content)
        {
            repeater(Group)
            {
                field("Warning Description"; Rec."Warning Description")
                {
                    ApplicationArea = Basic, Suite;
                }
                field("Table ID"; Rec."Table ID")
                {
                    ApplicationArea = Basic, Suite;
                    Visible = false;
                }
                field("Table Position"; Rec."Table Position")
                {
                    ApplicationArea = Basic, Suite;
                    Visible = false;
                }
            }
        }
    }

    actions
    {
        area(processing)
        {
            action("&Show")
            {
                ApplicationArea = Basic, Suite;
                Caption = '&Show';
                Image = View;
                ToolTip = 'View the log details.';

                trigger OnAction()
                begin
                    Rec.ShowWarning();
                end;
            }
        }
        area(Promoted)
        {
            group(Category_Process)
            {
                Caption = 'Process';

                actionref("&Show_Promoted"; "&Show")
                {
                }
            }
        }
    }
}