Page 9196 Profile Import Diagnostics
- App
- Base Application
- Namespace
- System.Environment.Configuration
- Versions
- 17-28
- Source table
- 9175
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Modules/System/Profile/ProfileImportDiagnostics.Page.al36 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Environment.Configuration;
using System.Tooling;
page 9196 "Profile Import Diagnostics"
{
PageType = List;
SourceTable = "Designer Diagnostic";
SourceTableView = where(Severity = filter(<> Hidden));
InsertAllowed = false;
ModifyAllowed = false;
DeleteAllowed = false;
Caption = 'Diagnostics';
layout
{
area(Content)
{
repeater(repeater)
{
field(Severity; Rec.Severity)
{
ApplicationArea = All;
width = 5;
ToolTip = 'Specifies the severity of this diagnostics message.';
}
field(Message; Rec.Message)
{
ApplicationArea = All;
ToolTip = 'Specifies the diagnostics message from the compiler.';
}
}
}
}
}