Add batch-2 FP guards: sentence-case action captions + primary-key Get is transaction-cached

This commit is contained in:
wenjiefan 2026-07-21 11:08:04 +02:00
parent 8fb7f61808
commit 2b401aa38e
3 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,38 @@
page 50210 "UI Sample Caption Case"
{
PageType = List;
ApplicationArea = All;
SourceTable = "Sales Line";
layout
{
area(Content)
{
repeater(Lines)
{
field("Document No."; Rec."Document No.")
{
ToolTip = 'Specifies the document number.';
}
}
}
}
actions
{
area(Processing)
{
action(ShowSourceDocument)
{
Caption = 'Show source document';
Image = ViewSourceDocumentLine;
ToolTip = 'Open the related source document.';
trigger OnAction()
begin
Message('%1', Rec."Document No.");
end;
}
}
}
}