R_InboundDeliveryTextTP

DDL: R_INBOUNDDELIVERYTEXTTP Type: view_entity TRANSACTIONAL

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)

SourceAliasJoin Type
P_DeliveryDocumentText InboundDeliveryText from

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_DELIVERYDOCUMENTTEXT",
"R_INBOUNDDELIVERYTP"
],
"ASSOCIATED":
[
"R_INBOUNDDELIVERYTP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/