Page 1379 Select Vendor Templ. List
- App
- Base Application
- Namespace
- Microsoft.Purchases.Vendor
- Versions
- 17-28
- Source table
- 1383
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Purchases/Vendor/SelectVendorTemplList.Page.al36 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.Purchases.Vendor;
page 1379 "Select Vendor Templ. List"
{
Caption = 'Select a template for a new vendor';
PageType = List;
SourceTable = "Vendor Templ.";
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;
}
}
}
}
}