Page 166 Dispute Status

App
Base Application
Namespace
Microsoft.Sales.Customer
Versions
24-28
Source table
142

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Sales/Customer/DisputeStatus.page.al42 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 dispute status codes used to track and categorize customer ledger entry disputes.
/// </summary>
page 166 "Dispute Status"
{
    ApplicationArea = Basic, Suite;
    Caption = 'Dispute Status';
    PageType = List;
    SourceTable = "Dispute Status";
    UsageCategory = Administration;

    layout
    {
        area(content)
        {
            repeater(Control1)
            {
                ShowCaption = false;
                field(Code; Rec.Code)
                {
                    ApplicationArea = Basic, Suite;
                }
                field(Description; Rec.Description)
                {
                    ApplicationArea = Basic, Suite;
                }
                field("Overwrite on hold"; Rec."Overwrite on hold")
                {
                    ApplicationArea = Basic, Suite;
                }
            }

        }
    }
}