I_SftyDataShtCntctAddrTypeTxt

DDL: I_SFTYDATASHTCNTCTADDRTYPETXT Type: view_entity BASIC

SDS Contact Address Type - Text

I_SftyDataShtCntctAddrTypeTxt is a Basic CDS View that provides data about "SDS Contact Address Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SftyDataShtCntctAddrTypeCode, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t SftyDataShtCntctAddrTypeTxt from

Associations (1)

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

Annotations (10)

NameValueLevelField
EndUserText.label SDS Contact Address Type - Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey SftyDataShtCntctAddrTypeCode view
Analytics.technicalName ISDSCNTCTADTTXT view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SftyDataShtCntctAddrTypeCode
KEY Language dd07t ddlanguage
ddtextasSftyDataShtCntctAddrTypeText
_Language _Language
@EndUserText.label: 'SDS Contact Address Type - Text'
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel:
{
  dataCategory: #TEXT,
  usageType:
  {
    dataClass: #META,
    serviceQuality: #B,
    sizeCategory: #S
  },
  representativeKey: 'SftyDataShtCntctAddrTypeCode'
}

@Analytics.technicalName: 'ISDSCNTCTADTTXT'

@VDM.viewType: #BASIC

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_SftyDataShtCntctAddrTypeTxt
  as select from dd07t as SftyDataShtCntctAddrTypeTxt

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

      /**** Keys ****/
  key substring(SftyDataShtCntctAddrTypeTxt.domvalue_l, 1, 10) as SftyDataShtCntctAddrTypeCode,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key SftyDataShtCntctAddrTypeTxt.ddlanguage                   as Language,

      /**** Content        ****/

      --language-dependent description of domain value
      @Semantics.text: true
      SftyDataShtCntctAddrTypeTxt.ddtext                       as SftyDataShtCntctAddrTypeText,


      /**** Associations   ****/
      _Language
}
where
      SftyDataShtCntctAddrTypeTxt.domname  = 'EHSDS_CNTCT_ADDR_TYPE'
  and SftyDataShtCntctAddrTypeTxt.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/