Page 130416 Get Semi-Manual Test Codeunits
- App
- Base Application
- Namespace
- System.TestTools
- Versions
- 17-28
- Source table
- 2000000058
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/GetSemiManualTestCodeunits.Page.al44 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.TestTools;
using System.Reflection;
page 130416 "Get Semi-Manual Test Codeunits"
{
Caption = 'Get Semi-Manual Test Codeunits';
DeleteAllowed = false;
InsertAllowed = false;
ModifyAllowed = false;
SourceTable = AllObjWithCaption;
SourceTableView = where("Object Type" = const(Codeunit));
layout
{
area(content)
{
repeater(Control4)
{
ShowCaption = false;
field("Object ID"; Rec."Object ID")
{
ApplicationArea = All;
ToolTip = 'Specifies the object ID number for the object named in the codeunit.';
}
field("Object Name"; Rec."Object Name")
{
ApplicationArea = All;
ToolTip = 'Specifies the object name in the codeunit.';
}
}
}
}
actions
{
}
}