Table 5490 Onboarding Signal
- App
- Base Application
- Namespace
- System.Feedback
- Versions
- 21-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Modules/System/OnboardingSignal/OnboardingSignal.Table.al56 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Feedback;
table 5490 "Onboarding Signal"
{
Access = Internal;
Extensible = false;
DataClassification = OrganizationIdentifiableInformation;
DataPerCompany = false;
ReplicateData = false;
Scope = Cloud;
InherentPermissions = rimdX;
InherentEntitlements = rimdX;
fields
{
field(1; "No."; Integer)
{
Caption = 'Used as primary key';
AutoIncrement = true;
}
field(2; "Company Name"; Text[30])
{
Caption = 'Company Name';
}
field(3; "Onboarding Completed"; Boolean)
{
Caption = 'Onboarding Completed';
Description = 'Whether the onboarding criteria has been met for this entry';
}
field(4; "Onboarding Signal Type"; Enum "Onboarding Signal Type")
{
Caption = 'Onboarding Signal Type';
}
field(5; "Onboarding Start Date"; Date)
{
Caption = 'Onboarding Start Date';
}
field(6; "Onboarding Complete Date"; Date)
{
Caption = 'Onboarding Complete Date';
}
field(7; "Extension ID"; Guid)
{
Caption = 'Extension ID';
Description = 'The Extension that registered the signal';
}
}
keys
{
key(key1; "No.")
{
}
}
}