I_AddressDeliveryServiceType

DDL: I_ADDRESSDELIVERYSERVICETYPE Type: view_entity BASIC

Delivery Service Types

I_AddressDeliveryServiceType is a Basic CDS View that provides data about "Delivery Service Types" in SAP S/4HANA. It reads from 1 data source (addrc_deli_serv) and exposes 3 fields with key field DeliveryServiceTypeCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
addrc_deli_serv addrc_deli_serv from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_AddrDeliveryServiceTypeText _Text $projection.DeliveryServiceTypeCode = _Text.DeliveryServiceTypeCode

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Delivery Service Types view
ObjectModel.representativeKey DeliveryServiceTypeCode view
Analytics.technicalName IADDELIVSRVCTYPE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DeliveryServiceTypeCode deli_serv_type
DeliveryServiceTypeName deli_serv_text
_Text _Text
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Delivery Service Types'
@ObjectModel.representativeKey: 'DeliveryServiceTypeCode'
@Analytics.technicalName: 'IADDELIVSRVCTYPE'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE]
@VDM.viewType: #BASIC
define view entity I_AddressDeliveryServiceType
  as select from addrc_deli_serv
  association [0..*] to I_AddrDeliveryServiceTypeText as _Text on $projection.DeliveryServiceTypeCode = _Text.DeliveryServiceTypeCode {
      @ObjectModel.text.element: ['DeliveryServiceTypeName']
      key deli_serv_type as DeliveryServiceTypeCode,
      deli_serv_text as DeliveryServiceTypeName,
      /* Associations */
      _Text
}