I_InbDeliveryPartnerTP

DDL: I_INBDELIVERYPARTNERTP Type: view_entity TRANSACTIONAL Package: RAP_LE_IBD

Inbound Delivery Partner - TP

I_InbDeliveryPartnerTP is a Transactional CDS View that provides data about "Inbound Delivery Partner - TP" in SAP S/4HANA. It reads from 1 data source (R_InbDeliveryPartnerTP) and exposes 8 fields with key fields InboundDelivery, PartnerFunction. Part of development package RAP_LE_IBD.

Data Sources (1)

SourceAliasJoin Type
R_InbDeliveryPartnerTP R_InbDeliveryPartnerTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Inbound 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 InboundDelivery InboundDelivery LE 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

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_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 I_InbDeliveryPartnerTP AS
SELECT
  InboundDelivery,
  PartnerFunction,
  Customer,
  Supplier,
  Personnel,
  ContactPerson,
  AddressID,
  AddressPersonID
FROM R_InbDeliveryPartnerTP
;