R_InbDeliveryPartnerTP
Inbound Delivery Partner - TP
R_InbDeliveryPartnerTP is a Transactional CDS View that provides data about "Inbound Delivery Partner - TP" in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocumentPartner) and exposes 9 fields with key fields InboundDelivery, PartnerFunction. Part of development package RAP_LE_IBD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DeliveryDocumentPartner | InboundDeliveryPartner | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Inbound Delivery Partner - TP | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.representativeKey | PartnerFunction | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InboundDelivery | DeliveryDocument | ||
| KEY | PartnerFunction | PartnerFunction | ||
| Customer | Customer | |||
| Supplier | Supplier | |||
| Personnel | Personnel | |||
| ContactPerson | ContactPerson | |||
| AddressID | AddressID | |||
| AddressPersonID | AddressPersonID | |||
| _Delivery | _Delivery |
@EndUserText.label: 'Inbound Delivery Partner - TP'
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #('TRANSACTIONAL_DATA')
@VDM: {
lifecycle.contract.type: #SAP_INTERNAL_API,
viewType: #TRANSACTIONAL
}
@ObjectModel: {
usageType: {
dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #XL
},
semanticKey: ['InboundDelivery', 'PartnerFunction'],
representativeKey: 'PartnerFunction'
}
@Metadata.ignorePropagatedAnnotations: true
define view entity R_InbDeliveryPartnerTP
as select from I_DeliveryDocumentPartner as InboundDeliveryPartner
association to parent R_InboundDeliveryTP as _Delivery on $projection.InboundDelivery = _Delivery.InboundDelivery
{
// Key
@ObjectModel.foreignKey.association: '_Delivery'
key DeliveryDocument as InboundDelivery,
key PartnerFunction,
// Partner
Customer,
Supplier,
Personnel,
ContactPerson,
// Address
AddressID,
AddressPersonID,
/*Association*/
_Delivery
}
where
_Delivery.SDDocumentCategory = '7' and _Delivery.DeletionIndicator is initial
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