Make BCQuality aware of ToolTips definied on the source

This commit is contained in:
Kilian Seizinger 2026-07-20 09:33:34 +02:00
parent 712dee9ec1
commit 48ead8fc21
6 changed files with 68 additions and 13 deletions

View file

@ -1,3 +1,16 @@
tableextension 50250 "Sample Tooltip Good Ext" extends Customer
{
fields
{
field(50250; "Loyalty Points"; Integer)
{
Caption = 'Loyalty Points';
DataClassification = CustomerContent;
ToolTip = 'Specifies the number of loyalty points the customer has collected.';
}
}
}
page 50250 "Sample Tooltip Good"
{
PageType = Card;
@ -8,17 +21,20 @@ page 50250 "Sample Tooltip Good"
{
group(General)
{
field("No."; Rec."No.")
field("Loyalty Points"; Rec."Loyalty Points")
{
ApplicationArea = All;
ToolTip = 'Specifies the number that identifies the customer.';
}
field(Amount; Rec."Balance (LCY)")
field(BalanceDue; BalanceDueAmount)
{
ApplicationArea = All;
ToolTip = 'Shows the total balance in local currency.';
Caption = 'Balance Due';
ToolTip = 'Shows the total balance due in local currency.';
}
}
}
}
var
BalanceDueAmount: Decimal;
}