Page 1313 Dynamics CRM Admin Credentials, source in 29
Source29
src/Layers/W1/BaseApp/Integration/D365Sales/DynamicsCRMAdminCredentials.Page.al58 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.Integration.D365Sales;
using Microsoft.CRM.Outlook;
page 1313 "Dynamics CRM Admin Credentials"
{
Caption = 'Dynamics 365 Sales Admin Credentials';
PageType = StandardDialog;
Permissions = TableData "Office Admin. Credentials" = rimd;
SourceTable = "Office Admin. Credentials";
SourceTableTemporary = true;
layout
{
area(content)
{
label("Specify the account that must be used to import the solution.")
{
ApplicationArea = Basic, Suite;
Caption = 'Specify the account that must be used to import the solution.';
}
field(Email; Rec.Email)
{
ApplicationArea = Basic, Suite;
Caption = 'User name';
ToolTip = 'Specifies the user name that is associated with the account.';
}
field(Password; Rec.Password)
{
ApplicationArea = Basic, Suite;
ExtendedDatatype = Masked;
ToolTip = 'Specifies the password that is associated with the account.';
}
label(InvalidUserMessage)
{
ApplicationArea = Basic, Suite;
Caption = 'This account must be a valid user in Dynamics 365 Sales with the security roles System Administrator and Solution Customizer.';
}
}
}
actions
{
}
trigger OnQueryClosePage(CloseAction: Action): Boolean
begin
if (CloseAction = ACTION::OK) or (CloseAction = ACTION::LookupOK) then
if not Rec.Get() then
Rec.Insert();
end;
}