Page 551 VAT Prod. Posting Group Conv.

App
Base Application
Namespace
Microsoft.Finance.VAT.RateChange
Versions
17-28
Source table
551

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Finance/VAT/RateChange/VATProdPostingGroupConv.Page.al50 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.Finance.VAT.RateChange;

/// <summary>
/// Configuration page for VAT product posting group conversion mappings during VAT rate changes.
/// Provides interface for defining old-to-new VAT product posting group conversions and validation rules.
/// </summary>
page 551 "VAT Prod. Posting Group Conv."
{
    AdditionalSearchTerms = 'vat value added tax product posting group conversion';
    ApplicationArea = Basic, Suite;
    Caption = 'VAT Prod. Posting Group Conv.';
    DelayedInsert = true;
    PageType = List;
    SourceTable = "VAT Rate Change Conversion";
    SourceTableView = where(Type = const("VAT Prod. Posting Group"));
    UsageCategory = Administration;

    layout
    {
        area(content)
        {
            repeater(Group)
            {
                field("From Code"; Rec."From Code")
                {
                    ApplicationArea = Basic, Suite;
                }
                field("To Code"; Rec."To Code")
                {
                    ApplicationArea = Basic, Suite;
                    ToolTip = 'Specifies the new VAT product posting group that will result from the conversion in connection with the VAT rate conversion.';
                }
                field("Converted Date"; Rec."Converted Date")
                {
                    ApplicationArea = Basic, Suite;
                }
            }
        }
    }

    actions
    {
    }
}