Table 1512 Notification Setup
- App
- Base Application
- Namespace
- System.Environment.Configuration
- Versions
- 17-28
Fields, 5Keys, 1Procedures, 4Obsolete, 3
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/System/Notifications/NotificationSetup.Table.al77 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Environment.Configuration;
using System.Security.User;
table 1512 "Notification Setup"
{
Caption = 'Notification Setup';
DrillDownPageID = "Notification Setup";
LookupPageID = "Notification Setup";
ReplicateData = false;
DataClassification = CustomerContent;
fields
{
field(1; "User ID"; Code[50])
{
Caption = 'User ID';
DataClassification = EndUserIdentifiableInformation;
TableRelation = "User Setup";
}
field(2; "Notification Type"; Enum "Notification Entry Type")
{
Caption = 'Notification Type';
}
field(3; "Notification Method"; Enum "Notification Method Type")
{
Caption = 'Notification Method';
}
field(5; Schedule; Enum "Notification Schedule Type")
{
CalcFormula = lookup("Notification Schedule".Recurrence where("User ID" = field("User ID"),
"Notification Type" = field("Notification Type")));
Caption = 'Schedule';
FieldClass = FlowField;
}
}
keys
{
key(Key1; "User ID", "Notification Type")
{
Clustered = true;
}
}
fieldgroups
{
}
trigger OnDelete()
var
NotificationSchedule: Record "Notification Schedule";
begin
if NotificationSchedule.Get("User ID", "Notification Type") then
NotificationSchedule.Delete(true);
end;
procedure GetNotificationTypeSetup(NotificationType: Enum "Notification Entry Type")
var
NotificationManagement: Codeunit "Notification Management";
begin
if Get(UserId, NotificationType) then
exit;
if Get('', NotificationType) then
exit;
NotificationManagement.CreateDefaultNotificationTypeSetup(NotificationType);
Get('', NotificationType)
end;
procedure GetNotificationTypeSetupForUser(NotificationType: Enum "Notification Entry Type"; RecipientUserID: Code[50])
begin
if Get(RecipientUserID, NotificationType) then
exit;
GetNotificationTypeSetup(NotificationType);
end;
}