A_InbDeliveryPartner

DDL: A_INBDELIVERYPARTNER SQL: AINBDELIVERYP Type: view BASIC

CDS View for Business Partner

A_InbDeliveryPartner is a Basic CDS View that provides data about "CDS View for Business Partner" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentCompletePartners) and exposes 12 fields with key fields SDDocument, SDDocumentItem, PartnerFunction. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentCompletePartners I_SDDocumentCompletePartners from

Associations (4)

CardinalityTargetAliasCondition
[1..1] A_InbDeliveryHeader _DeliveryDocumentHeader _DeliveryDocumentHeader.DeliveryDocument = $projection.SDDocument
[1..1] A_InbDeliveryAddress _Address _Address.AddressID = $projection.AddressID
[0..1] A_Supplier _AuthSupplier $projection.Supplier = _AuthSupplier.Supplier
[0..1] A_Customer _AuthCustomer $projection.Customer = _AuthCustomer.Customer

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName AINBDELIVERYP view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label CDS View for Business Partner view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SDDocument SDDocument SD Document
KEY SDDocumentItem SDDocumentItem
KEY PartnerFunction PartnerFunction Partner Functn
Customer Customer Sold-to Party
Supplier Supplier Supplier
Personnel Personnel Personnel No.
AddressID AddressID Ship-to address
ContactPerson ContactPerson Contact Person Key
_Address _Address
_DeliveryDocumentHeader _DeliveryDocumentHeader
_AuthSupplier _AuthSupplier
_AuthCustomer _AuthCustomer

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 A_InbDeliveryPartner.
-- 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.
-- SQL view name: AINBDELIVERYP

CREATE VIEW A_InbDeliveryPartner AS
SELECT
  SDDocument,
  SDDocumentItem,
  PartnerFunction,
  Customer,
  Supplier,
  Personnel,
  AddressID,
  ContactPerson
FROM I_SDDocumentCompletePartners
LEFT OUTER JOIN A_InbDeliveryHeader AS _DeliveryDocumentHeader ON _DeliveryDocumentHeader.DeliveryDocument = SDDocument  -- association [1..1]
LEFT OUTER JOIN A_InbDeliveryAddress AS _Address ON _Address.AddressID = AddressID  -- association [1..1]
LEFT OUTER JOIN A_Supplier AS _AuthSupplier ON Supplier = _AuthSupplier.Supplier  -- association [0..1]
LEFT OUTER JOIN A_Customer AS _AuthCustomer ON Customer = _AuthCustomer.Customer  -- association [0..1]
;