Page 257 Source Codes in 28
- App
- Business Foundation
- Namespace
- Microsoft.Foundation.AuditCodes
- Source table
- 230
Versions171819202122232425262728latest
Source in 28
src/Business Foundation/App/AuditCodes/src/SourceCodes.Page.al60 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.Foundation.AuditCodes;
/// <summary>
/// Source codes are used to categorize the source of a transaction.
/// </summary>
page 257 "Source Codes"
{
ApplicationArea = All;
Caption = 'Source Codes';
PageType = List;
SourceTable = "Source Code";
UsageCategory = Administration;
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
/// <summary>
/// Specifies the source code.
/// </summary>
field("Code"; Rec.Code)
{
ApplicationArea = All;
ToolTip = 'Specifies the source code.';
}
/// <summary>
/// Specifies a description of what the code stands for.
/// </summary>
field(Description; Rec.Description)
{
ApplicationArea = All;
ToolTip = 'Specifies a description of what the code stands for.';
}
}
}
area(factboxes)
{
systempart(Control1900383207; Links)
{
ApplicationArea = RecordLinks;
Visible = false;
}
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = false;
}
}
}
}