I_AddressDeliveryServiceType
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)
| Source | Alias | Join Type |
|---|---|---|
| addrc_deli_serv | addrc_deli_serv | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_AddrDeliveryServiceTypeText | _Text | $projection.DeliveryServiceTypeCode = _Text.DeliveryServiceTypeCode |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA