R_InbDeliveryPartnerTP

DDL: R_INBDELIVERYPARTNERTP Type: view_entity TRANSACTIONAL Package: RAP_LE_IBD

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)

SourceAliasJoin Type
I_DeliveryDocumentPartner InboundDeliveryPartner from

Annotations (9)

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

KeyFieldSource TableSource FieldDescription
KEY InboundDelivery DeliveryDocument Outbound Delivery
KEY PartnerFunction PartnerFunction Partner Functn
Customer Customer Sold-to Party
Supplier Supplier Supplier
Personnel Personnel Personnel No.
ContactPerson ContactPerson Contact Person Key
AddressID AddressID Ship-to address
AddressPersonID AddressPersonID Person Number
_Delivery _Delivery

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_InbDeliveryPartnerTP.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW R_InbDeliveryPartnerTP AS
SELECT
  DeliveryDocument AS InboundDelivery,
  PartnerFunction,
  Customer,
  Supplier,
  Personnel,
  ContactPerson,
  AddressID,
  AddressPersonID
FROM I_DeliveryDocumentPartner AS InboundDeliveryPartner
;