I_CustRetDelivPartnerTP

DDL: I_CUSTRETDELIVPARTNERTP Type: view_entity TRANSACTIONAL

Customer Returns Delivery Partner - TP

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

Data Sources (1)

SourceAliasJoin Type
R_CustRetDelivPartnerTP R_CustRetDelivPartnerTP projection

Annotations (10)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_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
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Customer Returns Delivery Partner - TP view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CustomerReturnDelivery CustomerReturnDelivery Outbound 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_CustRetDelivPartnerTP.
-- 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_CustRetDelivPartnerTP AS
SELECT
  CustomerReturnDelivery,
  PartnerFunction,
  Customer,
  Supplier,
  Personnel,
  AddressID,
  AddressPersonID,
  ContactPerson
FROM R_CustRetDelivPartnerTP
;