Table 5060 Contact Web Source

App
Base Application
Namespace
Microsoft.CRM.Contact
Versions
17-28

Fields, 5Keys, 1Procedures, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/CRM/Contact/ContactWebSource.Table.al74 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.Contact;

using Microsoft.CRM.Setup;

table 5060 "Contact Web Source"
{
    Caption = 'Contact Web Source';
    DataClassification = CustomerContent;
    DrillDownPageID = "Contact Web Sources";

    fields
    {
        field(1; "Contact No."; Code[20])
        {
            Caption = 'Contact No.';
            NotBlank = true;
            TableRelation = Contact where(Type = const(Company));
        }
        field(2; "Web Source Code"; Code[10])
        {
            Caption = 'Web Source Code';
            ToolTip = 'Specifies the Web source code. This field is not editable.';
            NotBlank = true;
            TableRelation = "Web Source";
        }
        field(3; "Search Word"; Text[30])
        {
            Caption = 'Search Word';
            ToolTip = 'Specifies the search word to search for information about the contact on the Internet.';
        }
        field(4; "Web Source Description"; Text[100])
        {
            CalcFormula = lookup("Web Source".Description where(Code = field("Web Source Code")));
            Caption = 'Web Source Description';
            ToolTip = 'Specifies the description of the Web source you have assigned to the contact.';
            Editable = false;
            FieldClass = FlowField;
        }
        field(5; "Contact Name"; Text[100])
        {
            CalcFormula = lookup(Contact.Name where("No." = field("Contact No.")));
            Caption = 'Contact Name';
            Editable = false;
            FieldClass = FlowField;
        }
    }

    keys
    {
        key(Key1; "Contact No.", "Web Source Code")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }

    procedure Launch()
    var
        WebSource: Record "Web Source";
    begin
        WebSource.Get("Web Source Code");
        WebSource.TestField(URL);
        HyperLink(StrSubstNo(WebSource.URL, "Search Word"));
    end;
}