C_InboundDeliveryPartnerManage

DDL: C_INBOUNDDELIVERYPARTNERMANAGE Type: view_entity CONSUMPTION Package: ODATA_LE_SHP_ID_MANAGE

Inbound Delivery Partner - Manage

C_InboundDeliveryPartnerManage is a Consumption CDS View that provides data about "Inbound Delivery Partner - Manage" in SAP S/4HANA. It reads from 1 data source (R_InbDeliveryPartnerTP) and exposes 11 fields with key fields InboundDelivery, PartnerFunction. It has 3 associations to related views. It is exposed through 1 OData service (UI_INBOUNDDELIVERYMANAGE). Part of development package ODATA_LE_SHP_ID_MANAGE.

Data Sources (1)

SourceAliasJoin Type
R_InbDeliveryPartnerTP R_InbDeliveryPartnerTP projection

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier
[0..1] I_Customer _Customer $projection.Customer = _Customer.Customer
[0..1] I_PartnerFunction _PartnerFunction $projection.PartnerFunction = _PartnerFunction.PartnerFunction

Annotations (9)

NameValueLevelField
EndUserText.label Inbound Delivery Partner - Manage view
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey InboundDelivery view

OData Services (1)

ServiceBindingVersionContractRelease
UI_INBOUNDDELIVERYMANAGE UI_INBOUNDDELIVERYMANAGE V4 C1 NOT_RELEASED

Fields (11)

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

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 C_InboundDeliveryPartnerManage.
-- 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 C_InboundDeliveryPartnerManage AS
SELECT
  InboundDelivery,
  PartnerFunction,
  Customer,
  Supplier,
  Personnel AS PersonnelNumber,
  ContactPerson,
  AddressID,
  AddressPersonID
FROM R_InbDeliveryPartnerTP
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [0..1]
LEFT OUTER JOIN I_Customer AS _Customer ON Customer = _Customer.Customer  -- association [0..1]
LEFT OUTER JOIN I_PartnerFunction AS _PartnerFunction ON PartnerFunction = _PartnerFunction.PartnerFunction  -- association [0..1]
;