R_InbDelivItemTextTP
Inbound Delivery Item - Text TP
R_InbDelivItemTextTP is a Transactional CDS View that provides data about "Inbound Delivery Item - Text TP" in SAP S/4HANA. It reads from 1 data source (P_DeliveryDocumentItemText) and exposes 7 fields with key fields InboundDelivery, InboundDeliveryItem, Language, LongTextID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_DeliveryDocumentItemText | InboundDeliveryItemText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | R_InboundDeliveryTP | _Delivery | $projection.InboundDelivery = _Delivery.InboundDelivery |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Inbound Delivery Item - Text 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 | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | LongTextID | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InboundDelivery | DeliveryDocument | ||
| KEY | InboundDeliveryItem | DeliveryDocumentItem | ||
| KEY | Language | Language | ||
| KEY | LongTextID | LongTextID | ||
| LongText | LongText | |||
| _Item | _Item | |||
| _Delivery | _Delivery |
@EndUserText.label: 'Inbound Delivery Item - Text TP'
@AccessControl.authorizationCheck: #MANDATORY
@VDM: {
lifecycle.contract.type: #SAP_INTERNAL_API,
viewType: #TRANSACTIONAL
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #XL
},
dataCategory: #TEXT,
semanticKey: ['InboundDelivery', 'InboundDeliveryItem', 'Language', 'LongTextID'],
representativeKey: 'LongTextID'
}
@Metadata.ignorePropagatedAnnotations: true
define view entity R_InbDelivItemTextTP
as select from P_DeliveryDocumentItemText as InboundDeliveryItemText
association to parent R_InboundDeliveryItemTP as _Item on $projection.InboundDelivery = _Item.InboundDelivery
and $projection.InboundDeliveryItem = _Item.InboundDeliveryItem
association [1..1] to R_InboundDeliveryTP as _Delivery on $projection.InboundDelivery = _Delivery.InboundDelivery
{
// Key
@ObjectModel.foreignKey.association: '_Delivery'
key DeliveryDocument as InboundDelivery,
@ObjectModel.foreignKey.association: '_Item'
key DeliveryDocumentItem as InboundDeliveryItem,
@Semantics.language:true
key Language,
key LongTextID,
// Text
@Semantics.text:true
@ObjectModel.virtualElement:true
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_LE_LONGTEXT_SADL_IBD_ITEM'
LongText,
/* Associations */
_Item,
_Delivery
}
where
_Delivery.SDDocumentCategory = '7';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_DELIVERYDOCUMENTITEMTEXT",
"R_INBOUNDDELIVERYTP"
],
"ASSOCIATED":
[
"R_INBOUNDDELIVERYITEMTP",
"R_INBOUNDDELIVERYTP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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