Page 7028 Price Calc. Implementations

App
Base Application
Namespace
Microsoft.Pricing.Calculation
Versions
17-28
Source table
7006

Procedures, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Pricing/Calculation/PriceCalcImplementations.Page.al39 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.Pricing.Calculation;

page 7028 "Price Calc. Implementations"
{
    Caption = 'Available Implementations';
    PageType = List;
    SourceTable = "Price Calculation Setup";
    SourceTableTemporary = true;
    InsertAllowed = false;
    DeleteAllowed = false;
    Editable = false;
    Extensible = true;
    ShowFilter = false;

    layout
    {
        area(content)
        {
            repeater(Control1)
            {
                ShowCaption = false;
                field(Implementation; Rec.Implementation)
                {
                    ToolTip = 'The name of the implementation codeunit or extension that will do the price calculation.';
                    ApplicationArea = Basic, Suite;
                }
            }
        }
    }

    procedure SetData(var TempPriceCalculationSetup: Record "Price Calculation Setup" temporary)
    begin
        Rec.Copy(TempPriceCalculationSetup, true);
    end;
}