mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
40 lines
989 B
AL
40 lines
989 B
AL
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;
|
|
SourceTable = Customer;
|
|
layout
|
|
{
|
|
area(Content)
|
|
{
|
|
group(General)
|
|
{
|
|
field("Loyalty Points"; Rec."Loyalty Points")
|
|
{
|
|
ApplicationArea = All;
|
|
}
|
|
field(BalanceDue; BalanceDueAmount)
|
|
{
|
|
ApplicationArea = All;
|
|
Caption = 'Balance Due';
|
|
ToolTip = 'Shows the total balance due in local currency.';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
var
|
|
BalanceDueAmount: Decimal;
|
|
}
|