Add Default descending sort on historical pages

This commit is contained in:
Teddy Herryanto 2026-06-15 06:42:09 +02:00
parent 822cae1b27
commit b520360f52
3 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,30 @@
page 50100 "Integration Log Entries"
{
PageType = List;
SourceTable = "Integration Log Entry";
ApplicationArea = All;
UsageCategory = History;
Caption = 'Integration Log Entries';
// Historical pages should open with the newest records first.
SourceTableView = order(descending);
layout
{
area(Content)
{
repeater(General)
{
field("Entry No."; Rec."Entry No.")
{
}
field(Status; Rec.Status)
{
}
field(Message; Rec.Message)
{
}
}
}
}
}