Skip to content

Instantly share code, notes, and snippets.

@steveendow
Created October 6, 2020 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steveendow/2e2762b6eb714fcac983bce4f23376af to your computer and use it in GitHub Desktop.
Save steveendow/2e2762b6eb714fcac983bce4f23376af to your computer and use it in GitHub Desktop.
Fast Tab Group Sample
page 50200 FastTabTest
{
Caption = 'FastTabTest';
PageType = Card;
SourceTable = Customer;
layout
{
area(content)
{
group(General)
{
group(BillToAddressGroup)
{
Caption = 'Bill To Address';
field("No."; "No.")
{
ApplicationArea = All;
}
field(Name; Name)
{
ApplicationArea = All;
}
field(Address; Address)
{
ApplicationArea = All;
}
field("Address 2"; "Address 2")
{
ApplicationArea = All;
}
field(City; City)
{
ApplicationArea = All;
}
field("Country/Region Code"; "Country/Region Code")
{
ApplicationArea = All;
}
field(County; "County")
{
ApplicationArea = All;
Caption = 'State';
}
field("Phone No."; "Phone No.")
{
ApplicationArea = All;
}
}
group(ShipToAddressGroup)
{
Caption = 'Ship To Address';
field("ShipToNo."; "No.")
{
ApplicationArea = All;
Importance = Additional;
}
field(ShipToName; Name)
{
ApplicationArea = All;
Importance = Additional;
}
field(ShipToAddress; Address)
{
ApplicationArea = All;
Importance = Additional;
}
field("ShipToAddress 2"; "Address 2")
{
ApplicationArea = All;
Importance = Additional;
}
field(ShipToCity; City)
{
ApplicationArea = All;
Importance = Additional;
}
field("ShipToCountry/Region Code"; "Country/Region Code")
{
ApplicationArea = All;
Importance = Additional;
}
field(ShipToCounty; "County")
{
ApplicationArea = All;
Caption = 'State';
Importance = Additional;
}
field("ShipToPhone No."; "Phone No.")
{
ApplicationArea = All;
Importance = Additional;
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment