Table 1612 Office Admin. Credentials
- App
- Base Application
- Namespace
- Microsoft.CRM.Outlook
- Versions
- 17-28
Fields, 4Keys, 1Procedures, 4Obsolete, 1
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/CRM/Outlook/OfficeAdminCredentials.Table.al102 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.CRM.Outlook;
using System.Security.Encryption;
table 1612 "Office Admin. Credentials"
{
Caption = 'Office Admin. Credentials';
DataClassification = CustomerContent;
Permissions = TableData "Office Admin. Credentials" = r;
ReplicateData = false;
fields
{
field(1; "Primary Key"; Code[10])
{
AllowInCustomizations = Never;
Caption = 'Primary Key';
}
field(2; Email; Text[80])
{
Caption = 'Email';
ToolTip = 'Specifies the user name that is associated with the account.';
ExtendedDatatype = EMail;
NotBlank = true;
}
field(3; Password; Text[250])
{
Caption = 'Password';
ToolTip = 'Specifies the password that is associated with the account.';
ExtendedDatatype = Masked;
NotBlank = true;
}
field(4; Endpoint; Text[250])
{
Caption = 'Endpoint';
}
}
keys
{
key(Key1; "Primary Key")
{
Clustered = true;
}
}
fieldgroups
{
}
trigger OnInsert()
begin
if Endpoint = '' then
Validate(Endpoint, DefaultEndpoint());
end;
trigger OnModify()
begin
if Endpoint = '' then
Validate(Endpoint, DefaultEndpoint());
end;
var
IsolatedStorageManagement: Codeunit "Isolated Storage Management";
procedure DefaultEndpoint(): Text[250]
begin
exit('https://ps.outlook.com/powershell-liveid');
end;
[NonDebuggable]
[Scope('OnPrem')]
procedure SavePassword(PasswordText: Text)
var
PasswordAsSecretText: SecretText;
begin
PasswordText := DelChr(PasswordText, '=', ' ');
if Password = '' then
Password := CreateGuid();
PasswordAsSecretText := PasswordText;
IsolatedStorageManagement.Set(Password, PasswordAsSecretText, DATASCOPE::Company);
Modify();
end;
[Scope('OnPrem')]
procedure GetPasswordAsSecretText(): SecretText
var
Value: SecretText;
begin
if Password <> '' then
IsolatedStorageManagement.Get(Password, DATASCOPE::Company, Value);
exit(Value);
end;
}