Page 5927 Fault Codes

App
Base Application
Namespace
Microsoft.Service.Maintenance
Versions
17-28
Source table
5918

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Service/Maintenance/FaultCodes.Page.al90 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.Service.Maintenance;

page 5927 "Fault Codes"
{
    ApplicationArea = Service;
    Caption = 'Fault Codes';
    DataCaptionFields = "Fault Area Code", "Symptom Code";
    PageType = List;
    SourceTable = "Fault Code";
    UsageCategory = Administration;

    layout
    {
        area(content)
        {
            repeater(Control1)
            {
                ShowCaption = false;
                field("Fault Area Code"; Rec."Fault Area Code")
                {
                    ApplicationArea = Service;
                    Visible = FaultAreaCodeVisible;
                }
                field("Symptom Code"; Rec."Symptom Code")
                {
                    ApplicationArea = Service;
                    Visible = SymptomCodeVisible;
                }
                field("Code"; Rec.Code)
                {
                    ApplicationArea = Service;
                }
                field(Description; Rec.Description)
                {
                    ApplicationArea = Service;
                }
            }
        }
        area(factboxes)
        {
            systempart(Control1900383207; Links)
            {
                ApplicationArea = RecordLinks;
                Visible = false;
            }
            systempart(Control1905767507; Notes)
            {
                ApplicationArea = Notes;
                Visible = false;
            }
        }
    }

    actions
    {
        area(processing)
        {
            action("Import IRIS to Fault Code")
            {
                ApplicationArea = Service;
                Caption = 'Import IRIS to Fault Code';
                Image = Import;
                RunObject = XMLport "Import IRIS to Fault Codes";
                ToolTip = 'Import the International Repair Coding System to define fault codes for service items.';
            }
        }
    }

    trigger OnInit()
    begin
        SymptomCodeVisible := true;
        FaultAreaCodeVisible := true;
    end;

    trigger OnOpenPage()
    begin
        FaultAreaCodeVisible := not CurrPage.LookupMode;
        SymptomCodeVisible := not CurrPage.LookupMode;
    end;

    var
        FaultAreaCodeVisible: Boolean;
        SymptomCodeVisible: Boolean;
}