Page 1381 Customer Templ. List, source in 29
Source29
src/Layers/W1/BaseApp/Sales/Customer/CustomerTemplList.Page.al43 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Sales.Customer;
/// <summary>
/// Lists customer templates available for creating new customers with predefined field values.
/// </summary>
page 1381 "Customer Templ. List"
{
Caption = 'Customer Templates';
PageType = List;
ApplicationArea = Basic, Suite;
UsageCategory = Lists;
SourceTable = "Customer Templ.";
CardPageId = "Customer Templ. Card";
Editable = false;
layout
{
area(Content)
{
repeater(Control1)
{
field(Code; Rec.Code)
{
ApplicationArea = Basic, Suite;
}
field(Description; Rec.Description)
{
ApplicationArea = Basic, Suite;
}
field("Contact Type"; Rec."Contact Type")
{
ApplicationArea = Basic, Suite;
}
}
}
}
}