R_CustomerContactRelationTP

DDL: R_CUSTOMERCONTACTRELATIONTP Type: view_entity TRANSACTIONAL Package: ODATA_CUSTOMER_CONTACT

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. Part of development package ODATA_CUSTOMER_CONTACT.

Data Sources (1)

SourceAliasJoin Type
I_CustomerContactRelation I_CustomerContactRelation from

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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' }
@Consumption: { dbHints: [ 'USE_HEX_PLAN' ] }

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

}