Table 532 Company Size, source in 29

Source29

src/Layers/W1/BaseApp/Finance/Analysis/CompanySize.Table.al42 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.Finance.Analysis;

/// <summary>
/// Defines company size categories for financial analysis and reporting classification.
/// Used to categorize companies for comparative analysis and benchmarking purposes.
/// </summary>
table 532 "Company Size"
{
    LookupPageId = "Company Sizes";
    DrillDownPageId = "Company Sizes";
    DataClassification = CustomerContent;

    fields
    {
        /// <summary>
        /// Unique code identifying the company size category.
        /// </summary>
        field(1; Code; Code[20]) { }
        /// <summary>
        /// Descriptive name for the company size category.
        /// </summary>
        field(2; Description; Text[100]) { }
        /// Indicates whether the company size category represents a small business.
        field(3; "Small Business"; Boolean)
        {
            DataClassification = CustomerContent;
        }
    }

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