I_SftyDataShtCntctAddrType

DDL: I_SFTYDATASHTCNTCTADDRTYPE Type: view_entity BASIC

SDS Contact Address Type

I_SftyDataShtCntctAddrType is a Basic CDS View that provides data about "SDS Contact Address Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SftyDataShtCntctAddrTypeCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l SftyDataShtCntctAddrType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SftyDataShtCntctAddrTypeTxt _Text $projection.SftyDataShtCntctAddrTypeCode = _Text.SftyDataShtCntctAddrTypeCode

Annotations (7)

NameValueLevelField
EndUserText.label SDS Contact Address Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SftyDataShtCntctAddrTypeCode
_Text _Text
@EndUserText.label: 'SDS Contact Address Type'
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #B,
  sizeCategory: #S,
  dataClass: #META
}

@VDM.viewType: #BASIC

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_SftyDataShtCntctAddrType
  as select from dd07l as SftyDataShtCntctAddrType

  --Text association
  /*+[hideWarning] { "IDS" : [  "CALCULATED_FIELD_CHECK" ] } */
  association [0..*] to I_SftyDataShtCntctAddrTypeTxt as _Text on $projection.SftyDataShtCntctAddrTypeCode = _Text.SftyDataShtCntctAddrTypeCode
{

      /**** Keys ****/
      @ObjectModel.text.association: '_Text'
  key substring(SftyDataShtCntctAddrType.domvalue_l, 1, 10) as SftyDataShtCntctAddrTypeCode,

      /**** Associations ****/
      _Text

}
where
      SftyDataShtCntctAddrType.domname  = 'EHSDS_CNTCT_ADDR_TYPE'
  and SftyDataShtCntctAddrType.as4local = 'A'