Table 532 Company Size
- App
- Base Application
- Namespace
- Microsoft.Finance.Analysis
- Versions
- 22-28
Versions171819202122232425262728
Source29
Source in 29
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;
}
}
}