P_ARProcFlwSDDocumentPartner

DDL: P_ARPROCFLWSDDOCUMENTPARTNER SQL: PARPROCFLWSDDOCP Type: view CONSUMPTION

SD Document Partner for AR process flow

P_ARProcFlwSDDocumentPartner is a Consumption CDS View that provides data about "SD Document Partner for AR process flow" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentPartner) and exposes 6 fields with key fields SDDocument, PartnerFunction. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentPartner I_SDDocumentPartner from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Customer _ShipToParty $projection.Customer = _ShipToParty.Customer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PARPROCFLWSDDOCP view
VDM.viewType #CONSUMPTION view
VDM.private true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SD Document Partner for AR process flow view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SDDocument SDDocument SD Document
KEY PartnerFunction PartnerFunction Partner Functn
Customer Customer Sold-to Party
CustomerName _ShipToParty CustomerName Name of Customer
_ShipToParty _ShipToParty
_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 P_ARProcFlwSDDocumentPartner.
-- 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: PARPROCFLWSDDOCP

CREATE VIEW P_ARProcFlwSDDocumentPartner AS
SELECT
  SDDocument,
  PartnerFunction,
  Customer,
  _ShipToParty.CustomerName AS CustomerName
FROM I_SDDocumentPartner
LEFT OUTER JOIN I_Customer AS _ShipToParty ON Customer = _ShipToParty.Customer  -- association [0..1]
;