Page 130403 CAL Test Get Codeunits
- App
- Base Application
- Namespace
- System.TestTools.TestRunner
- Versions
- 17-28
- Source table
- 2000000058
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/System/DevTools/CALTest/CALTestGetCodeunits.Page.al38 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.TestTools.TestRunner;
using System.Reflection;
page 130403 "CAL Test Get Codeunits"
{
Caption = 'CAL Test Get Codeunits';
Editable = false;
PageType = List;
SourceTable = AllObjWithCaption;
SourceTableView = where("Object Type" = const(Codeunit),
"Object Subtype" = const('Test'));
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Object ID"; Rec."Object ID")
{
ApplicationArea = All;
}
field("Object Name"; Rec."Object Name")
{
ApplicationArea = All;
}
}
}
}
actions
{
}
}