R_CustomerContactRelationTP
Customer Contact Relation
R_CustomerContactRelationTP is a Transactional CDS View that provides data about "Customer Contact Relation" in SAP S/4HANA. It reads from 1 data source (I_CustomerContactRelation) and exposes 5 fields with key fields CustomerContactUUID, CaseUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CustomerContactRelation | I_CustomerContactRelation | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Customer Contact Relation | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | CaseUUID | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustomerContactUUID | CustomerContactUUID | ||
| KEY | CaseUUID | CaseUUID | ||
| CustomerCntctFollowUpObjType | CustomerCntctFollowUpObjType | |||
| CustomerCntctFollowUpObjStatus | CustomerCntctFollowUpObjStatus | |||
| _Parent | _Parent |
@AccessControl: { authorizationCheck: #MANDATORY }
@EndUserText: { label: 'Customer Contact Relation' }
@VDM: { viewType: #TRANSACTIONAL,
lifecycle: { contract: { type: #SAP_INTERNAL_API } } }
@ObjectModel: { usageType: { serviceQuality: #A,
sizeCategory: #L,
dataClass: #TRANSACTIONAL },
semanticKey: [ 'CustomerContactUUID', 'CaseUUID' ],
representativeKey: 'CaseUUID' }
define view entity R_CustomerContactRelationTP
as select from I_CustomerContactRelation
// BO Associations
association to parent R_CustomerContactAttributeTP as _Parent on $projection.CustomerContactUUID = _Parent.CustomerContactUUID
{
// VDM Fields
key CustomerContactUUID,
key CaseUUID,
CustomerCntctFollowUpObjType,
CustomerCntctFollowUpObjStatus,
// Exposed Associations
_Parent
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CUSTOMERCONTACTRELATION"
],
"ASSOCIATED":
[
"R_CUSTOMERCONTACTATTRIBUTETP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA