I_CustomerContactTypeText

DDL: I_CUSTOMERCONTACTTYPETEXT Type: view BASIC

Customer Contact Type Text

I_CustomerContactTypeText is a Basic CDS View that provides data about "Customer Contact Type Text" in SAP S/4HANA. It reads from 1 data source (udm_cct_typet) and exposes 4 fields with key fields Language, CustomerContactType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
udm_cct_typet udm_cct_typet from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICCTTYPETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer Contact Type Text 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.dataCategory #TEXT view
ObjectModel.representativeKey CustomerContactType view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language langu
KEY CustomerContactType cct_type
CustomerContactTypeName cct_type_txt
_Language _Language
@AbapCatalog: { sqlViewName: 'ICCTTYPETXT',
                compiler: { compareFilter: true },
                preserveKey: true }
@AccessControl: { authorizationCheck: #NOT_REQUIRED }
@EndUserText: { label: 'Customer Contact Type Text' }
@VDM: { viewType:  #BASIC,
        lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #D,
                             sizeCategory: #S,
                             dataClass: #CUSTOMIZING },
                dataCategory: #TEXT,
                semanticKey: ['Language', 'CustomerContactType'],
                representativeKey: 'CustomerContactType' }

define view I_CustomerContactTypeText
  as select from udm_cct_typet

  // Foreign Key Associations

  // Language

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{

      // VDM Fields

      @Semantics: { language: true }
      @ObjectModel: { foreignKey: { association: '_Language' } }
  key langu        as Language,

  key cct_type     as CustomerContactType,

      @Semantics: { text: true }
      cct_type_txt as CustomerContactTypeName,

      // Associations

      _Language

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