Table 5106 Interaction Merge Data
- App
- Base Application
- Namespace
- Microsoft.CRM.Interaction
- Versions
- 18-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/CRM/Interaction/InteractionMergeData.Table.al45 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.Interaction;
using Microsoft.CRM.Contact;
using Microsoft.CRM.Team;
table 5106 "Interaction Merge Data"
{
DataClassification = CustomerContent;
fields
{
field(1; ID; Guid)
{
}
field(2; "Contact No."; Code[20])
{
TableRelation = Contact."No.";
}
field(3; "Salesperson Code"; Code[20])
{
TableRelation = "Salesperson/Purchaser".Code;
}
field(4; "Log Entry Number"; Integer)
{
TableRelation = "Interaction Log Entry"."Entry No.";
}
}
keys
{
key(PK; ID)
{
Clustered = true;
}
}
}