Page 1807 Data Migration Settings, source in 29
Source29
src/Layers/W1/BaseApp/System/DataMigration/DataMigrationSettings.Page.al60 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Integration;
using System.IO;
page 1807 "Data Migration Settings"
{
AccessByPermission = TableData "Data Migration Setup" = R;
AdditionalSearchTerms = 'implementation settings,data setup settings,quickbooks settings';
ApplicationArea = Basic, Suite;
Caption = 'Data Migration Settings';
DeleteAllowed = false;
InsertAllowed = false;
PageType = Card;
SourceTable = "Data Migration Setup";
UsageCategory = Administration;
layout
{
area(content)
{
group(General)
{
Caption = 'Select default templates for data migration';
field("Default Customer Template"; Rec."Default Customer Template")
{
ApplicationArea = Basic, Suite;
LookupPageID = "Config Templates";
ToolTip = 'Specifies the template to use by default when migrating data for customers. The template defines the data structure and ensures customers are created accurately.';
}
field("Default Vendor Template"; Rec."Default Vendor Template")
{
ApplicationArea = Basic, Suite;
LookupPageID = "Config Templates";
ToolTip = 'Specifies the template to use by default when migrating data for vendors. The template defines the data structure and ensures vendors are created accurately.';
}
field("Default Item Template"; Rec."Default Item Template")
{
ApplicationArea = Basic, Suite;
LookupPageID = "Config Templates";
ToolTip = 'Specifies the template to use by default when migrating data for items. The template defines the data structure and ensures items are created accurately.';
}
}
}
}
actions
{
}
trigger OnOpenPage()
begin
Rec.Reset();
if not Rec.Get() then begin
Rec.Init();
Rec.Insert();
end;
end;
}