Page 5175 Sales Cycle Statistics FactBox

App
Base Application
Namespace
Microsoft.CRM.Opportunity
Versions
17-28
Source table
5090

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/CRM/Opportunity/SalesCycleStatisticsFactBox.Page.al46 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.CRM.Opportunity;

page 5175 "Sales Cycle Statistics FactBox"
{
    Caption = 'Sales Cycle Statistics';
    DeleteAllowed = false;
    InsertAllowed = false;
    LinksAllowed = false;
    PageType = CardPart;
    SourceTable = "Sales Cycle";

    layout
    {
        area(content)
        {
            group(Control1)
            {
                ShowCaption = false;
                field("No. of Opportunities"; Rec."No. of Opportunities")
                {
                    ApplicationArea = RelationshipMgmt;
                }
                field("Estimated Value (LCY)"; Rec."Estimated Value (LCY)")
                {
                    ApplicationArea = RelationshipMgmt;
                    ToolTip = 'Specifies the estimated value of all the open opportunities that you have assigned to the sales cycle. This field is not editable.';
                }
                field("Calcd. Current Value (LCY)"; Rec."Calcd. Current Value (LCY)")
                {
                    ApplicationArea = RelationshipMgmt;
                    ToolTip = 'Specifies the calculated current value of all the open opportunities that you have assigned to the sales cycle. This field is not editable.';
                }
            }
        }
    }

    actions
    {
    }
}