I_OutboundDeliveryPartnerTP

DDL: I_OUTBOUNDDELIVERYPARTNERTP Type: view_entity TRANSACTIONAL

Outbound Delivery Partner - TP

I_OutboundDeliveryPartnerTP is a Transactional CDS View that provides data about "Outbound Delivery Partner - TP" in SAP S/4HANA. It reads from 1 data source (R_OutboundDeliveryPartnerTP) and exposes 8 fields with key fields OutboundDelivery, PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
R_OutboundDeliveryPartnerTP R_OutboundDeliveryPartnerTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Outbound Delivery Partner - TP view
AccessControl.authorizationCheck #MANDATORY view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE 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 (8)

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

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 I_OutboundDeliveryPartnerTP.
-- 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 I_OutboundDeliveryPartnerTP AS
SELECT
  OutboundDelivery,
  PartnerFunction,
  Customer,
  Supplier,
  Personnel,
  AddressID,
  AddressPersonID,
  ContactPerson
FROM R_OutboundDeliveryPartnerTP
;