Table 5921 Fault Area/Symptom Code, source in 29

Source29

src/Layers/W1/BaseApp/Service/Maintenance/FaultAreaSymptomCode.Table.al43 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;

table 5921 "Fault Area/Symptom Code"
{
    Caption = 'Fault Area/Symptom Code';
    DataClassification = CustomerContent;

    fields
    {
        field(1; Type; Option)
        {
            Caption = 'Type';
            OptionCaption = ',Fault Area,Symptom Code';
            OptionMembers = ,"Fault Area","Symptom Code";
        }
        field(2; "Code"; Code[10])
        {
            Caption = 'Code';
        }
        field(3; Description; Text[100])
        {
            Caption = 'Description';
        }
    }

    keys
    {
        key(Key1; Type, "Code")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}