Page 1753 Field Content Buffer, source in 27
Source242526272829metadata in 27
src/System Application/App/Data Classification/src/FieldContentBuffer.Page.al43 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 System.Privacy;
/// <summary>
/// Displays a list of field content buffers.
/// </summary>
page 1753 "Field Content Buffer"
{
Extensible = false;
Caption = 'Field Contents';
DeleteAllowed = false;
Editable = false;
InsertAllowed = false;
ModifyAllowed = false;
PageType = List;
SourceTable = "Field Content Buffer";
ContextSensitiveHelpPage = 'admin-classifying-data-sensitivity';
InherentEntitlements = X;
InherentPermissions = X;
layout
{
area(Content)
{
repeater(Group)
{
field(Value; Rec.Value)
{
ApplicationArea = All;
ToolTip = 'Specifies the field value.';
}
}
}
}
}