Table 150 Signup Context Values in 24
- App
- System Application
- Namespace
- System.Environment.Configuration
Versions171819202122232425262728latest
Source in 24
src/System Application/App/System Initialization/src/SignupContextValues.Table.al46 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 System.Environment.Configuration;
/// <summary>
/// This table stores the signup context and additional values passed at signup.
/// </summary>
table 150 "Signup Context Values"
{
DataClassification = SystemMetadata;
DataPerCompany = false;
ReplicateData = false;
#pragma warning disable AS0034
InherentEntitlements = RIX;
InherentPermissions = RIX;
#pragma warning restore AS0034
fields
{
/// <summary>
/// The primary key for the signup context values.
/// </summary>
field(1; "Primary Key"; Code[10])
{
DataClassification = SystemMetadata;
}
/// <summary>
/// The Signup Context is used to track from where a tenant originated.
/// </summary>
field(2; "Signup Context"; Enum "Signup Context")
{
DataClassification = SystemMetadata;
}
}
keys
{
key(Key1; "Primary Key")
{
Clustered = true;
}
}
}Fields, 2
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Primary Key | Code[10] | - |
| 2 | Signup Context | Enum Signup Context | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| Key1, clustered | Primary Key | - |