R_OutbDelivItemSerialNumberTP
Outbound Dlv Item Serial Number - TP
R_OutbDelivItemSerialNumberTP is a Transactional CDS View that provides data about "Outbound Dlv Item Serial Number - TP" in SAP S/4HANA. It reads from 1 data source (I_SerialNumberDeliveryDocument) and exposes 7 fields with key fields OutboundDelivery, OutboundDeliveryItem, SerialNumber. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SerialNumberDeliveryDocument | OutbDelivItemSerialNumber | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | R_OutboundDeliveryTP | _Delivery | $projection.OutboundDelivery = _Delivery.OutboundDelivery |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Outbound Dlv Item Serial Number - TP | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.representativeKey | SerialNumber | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OutboundDelivery | |||
| KEY | OutboundDeliveryItem | |||
| KEY | SerialNumber | SerialNumber | ||
| Equipment | Equipment | |||
| Material | Material | |||
| _Item | _Item | |||
| _Delivery | _Delivery |
@EndUserText.label: 'Outbound Dlv Item Serial Number - TP'
@AccessControl.authorizationCheck: #MANDATORY
@VDM: {
lifecycle.contract.type: #SAP_INTERNAL_API,
viewType: #TRANSACTIONAL
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #A,
sizeCategory: #XL
},
semanticKey: ['OutboundDelivery', 'OutboundDeliveryItem', 'SerialNumber'],
representativeKey: 'SerialNumber'
}
@Metadata.ignorePropagatedAnnotations: true
define view entity R_OutbDelivItemSerialNumberTP
as select from I_SerialNumberDeliveryDocument as OutbDelivItemSerialNumber
association to parent R_OutboundDeliveryItemTP as _Item on $projection.OutboundDelivery = _Item.OutboundDelivery
and $projection.OutboundDeliveryItem = _Item.OutboundDeliveryItem
association [1..1] to R_OutboundDeliveryTP as _Delivery on $projection.OutboundDelivery = _Delivery.OutboundDelivery
{
// Key
@ObjectModel.foreignKey.association: '_Delivery'
key cast(DeliveryDocument as outbound_delivery preserving type) as OutboundDelivery,
@ObjectModel.foreignKey.association: '_Item'
key cast(DeliveryDocumentItem as outbound_delivery_item preserving type) as OutboundDeliveryItem,
key SerialNumber,
// Material
Equipment,
Material,
/*Association*/
_Item,
_Delivery
}
where
_Delivery.SDDocumentCategory = 'J'
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