I_CustomerContactType

DDL: I_CUSTOMERCONTACTTYPE Type: view BASIC

Customer Contact Type

I_CustomerContactType is a Basic CDS View (Dimension) that provides data about "Customer Contact Type" in SAP S/4HANA. It reads from 1 data source (udm_cct_type) and exposes 2 fields with key field CustomerContactType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
udm_cct_type udm_cct_type from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CustomerContactTypeText _Text $projection.CustomerContactType = _Text.CustomerContactType

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICCTTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
EndUserText.label Customer Contact Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey CustomerContactType view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CustomerContactType cct_type
_Text _Text
@AbapCatalog: { sqlViewName: 'ICCTTYPE',
                compiler: { compareFilter: true },
                preserveKey: true }
@AccessControl: { authorizationCheck: #NOT_REQUIRED }
@Analytics: { dataCategory: #DIMENSION,
              internalName: #LOCAL }
@EndUserText: { label: 'Customer Contact Type' }
@VDM: { viewType:  #BASIC,
        lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #D,
                             sizeCategory: #S,
                             dataClass: #CUSTOMIZING },
                compositionRoot: true,
                semanticKey: ['CustomerContactType'],
                representativeKey: 'CustomerContactType' }
define view I_CustomerContactType
  as select from udm_cct_type

  // VDM Associations

  association [0..*] to I_CustomerContactTypeText as _Text on $projection.CustomerContactType = _Text.CustomerContactType
  
{

      // VDM Fields

      @ObjectModel: { text: { association: '_Text' } }
  key cct_type as CustomerContactType,

      // Exposed Associations

      _Text

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UDM_CCT_TYPE"
],
"ASSOCIATED":
[
"I_CUSTOMERCONTACTTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/