R_OutboundDeliveryItemTextTP

DDL: R_OUTBOUNDDELIVERYITEMTEXTTP Type: view_entity TRANSACTIONAL

Outbound Delivery Item - Text TP

R_OutboundDeliveryItemTextTP is a Transactional CDS View that provides data about "Outbound Delivery Item - Text TP" in SAP S/4HANA. It reads from 1 data source (P_DeliveryDocumentItemText) and exposes 7 fields with key fields OutboundDelivery, OutboundDeliveryItem, Language, LongTextID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_DeliveryDocumentItemText OutboundDeliveryItemText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] R_OutboundDeliveryTP _Delivery $projection.OutboundDelivery = _Delivery.OutboundDelivery

Annotations (10)

NameValueLevelField
EndUserText.label Outbound 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)

KeyFieldSource TableSource FieldDescription
KEY OutboundDelivery
KEY OutboundDeliveryItem
KEY Language Language
KEY LongTextID LongTextID
LongText LongText
_Item _Item
_Delivery _Delivery
@EndUserText.label: 'Outbound 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: ['OutboundDelivery', 'OutboundDeliveryItem', 'Language', 'LongTextID'],
    representativeKey: 'LongTextID'
}
@Metadata.ignorePropagatedAnnotations: true
define view entity R_OutboundDeliveryItemTextTP
  as select from P_DeliveryDocumentItemText as OutboundDeliveryItemText
  association        to parent R_OutboundDeliveryItemTP as _Item     on  $projection.OutboundDelivery     = _Item.OutboundDelivery
                                                                     and $projection.OutboundDeliveryItem = _Item.OutboundDeliveryItem
  association [0..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,
      @Semantics.language:true
  key Language,
  key LongTextID,
      @Semantics.text:true
      @ObjectModel.virtualElement:true
      @ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_LE_LONGTEXT_SADL_OBD_ITEM'
      LongText,


      /* Associations */
      _Item,
      _Delivery

}
where
  _Delivery.SDDocumentCategory = 'J';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_DELIVERYDOCUMENTITEMTEXT",
"R_OUTBOUNDDELIVERYTP"
],
"ASSOCIATED":
[
"R_OUTBOUNDDELIVERYITEMTP",
"R_OUTBOUNDDELIVERYTP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/