R_InboundDeliveryTextTP
Inbound Delivery - Text TP
R_InboundDeliveryTextTP is a Transactional CDS View that provides data about "Inbound Delivery - Text TP" in SAP S/4HANA. It reads from 1 data source (P_DeliveryDocumentText) and exposes 5 fields with key fields InboundDelivery, Language, LongTextID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_DeliveryDocumentText | InboundDeliveryText | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Inbound Delivery - 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 | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | LongTextID | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InboundDelivery | DeliveryDocument | ||
| KEY | Language | Language | ||
| KEY | LongTextID | LongTextID | ||
| LongText | LongText | |||
| _Delivery | _Delivery |
@EndUserText.label: 'Inbound Delivery - Text TP'
@AccessControl.authorizationCheck: #MANDATORY
@VDM: {
lifecycle.contract.type: #SAP_INTERNAL_API,
viewType: #TRANSACTIONAL
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #L
},
dataCategory: #TEXT,
semanticKey: ['InboundDelivery', 'Language', 'LongTextID'],
representativeKey: 'LongTextID'
}
@Metadata.ignorePropagatedAnnotations: true
define view entity R_InboundDeliveryTextTP
as select from P_DeliveryDocumentText as InboundDeliveryText
association to parent R_InboundDeliveryTP as _Delivery on $projection.InboundDelivery = _Delivery.InboundDelivery
{
// Key
@ObjectModel.foreignKey.association: '_Delivery'
key DeliveryDocument as InboundDelivery,
@Semantics.language:true
key Language,
key LongTextID,
// Text
@Semantics.text:true
@ObjectModel.virtualElement:true
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_LE_LONGTEXT_SADL_IBD_HEAD'
LongText,
/* Associations */
_Delivery
}
where
_Delivery.SDDocumentCategory = '7';
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