Page 7207 CDS Environments
- App
- Base Application
- Namespace
- Microsoft.Integration.Dataverse
- Versions
- 17-28
- Source table
- 7202
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Integration/Dataverse/CDSEnvironments.Page.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 Microsoft.Integration.Dataverse;
page 7207 "CDS Environments"
{
Extensible = false;
Caption = 'Dataverse User Environments', Comment = 'Dataverse is the name of a Microsoft Service and should not be translated.';
Editable = false;
PageType = List;
SourceTable = "CDS Environment";
SourceTableTemporary = true;
SourceTableView = sorting("Environment Name");
layout
{
area(content)
{
repeater(Control2)
{
ShowCaption = false;
field("Environment Name"; Rec."Environment Name")
{
Caption = 'Name';
ApplicationArea = All;
ToolTip = 'Specifies the name of the Dataverse environment.', Comment = 'Dataverse is the name of a Microsoft Service and should not be translated.';
}
field(Linked; Rec.Linked)
{
Caption = 'Linked';
ApplicationArea = All;
ToolTip = 'Specifies whether the Dataverse environment is the linked environment.', Comment = 'Dataverse is the name of a Microsoft Service and should not be translated.';
}
field(Url; Rec.Url)
{
Caption = 'URL';
ApplicationArea = All;
ToolTip = 'Specifies the URL of the Dataverse environment.', Comment = 'Dataverse is the name of a Microsoft Service and should not be translated.';
}
}
}
}
}