I_CustomerContactDirection

DDL: I_CUSTOMERCONTACTDIRECTION Type: view BASIC Package: UDM_COLL_CDS

Customer Contact Direction

I_CustomerContactDirection is a Basic CDS View (Dimension) that provides data about "Customer Contact Direction" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field CustomerContactDirection. It has 1 association to related views. Part of development package UDM_COLL_CDS.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CustomerContactDirectionText _Text $projection.CustomerContactDirection = _Text.CustomerContactDirection

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICCTDIR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer Contact Direction view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey CustomerContactDirection view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CustomerContactDirection
_Text _Text
@AbapCatalog: { sqlViewName: 'ICCTDIR',
                compiler: { compareFilter: true },
                preserveKey: true,
                buffering: { status: #ACTIVE,
                             type: #FULL } }
@Analytics: { dataCategory: #DIMENSION,
              internalName: #LOCAL }
@AccessControl: { authorizationCheck: #NOT_REQUIRED }
@EndUserText: { label: 'Customer Contact Direction' }
@VDM: { viewType:  #BASIC,
        lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #A,
                             sizeCategory: #S,
                             dataClass: #META },
                semanticKey: [ 'CustomerContactDirection' ],
                representativeKey: 'CustomerContactDirection' }
define view I_CustomerContactDirection
  as select from dd07l

  // VDM Associations

  // Customer Contact Direction Text

  association [0..*] to I_CustomerContactDirectionText as _Text on $projection.CustomerContactDirection = _Text.CustomerContactDirection

{

      // VDM Fields

      @ObjectModel: { text: { association: '_Text' } }
  key cast ( domvalue_l as bdm_cct_direction ) as CustomerContactDirection,

      // Exposed Associations

      _Text

}

where
  domname = 'BDM_CCT_DIRECTION'