E_SDDocumentPartner

DDL: E_SDDOCUMENTPARTNER SQL: ESDDOCPARTNER Type: view EXTENSION

Extension View for VBPA

E_SDDocumentPartner is a Extension CDS View that provides data about "Extension View for VBPA" in SAP S/4HANA. It reads from 1 data source (vbpa) and exposes 3 fields with key fields SalesDocument, SalesDocumentItem, PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
vbpa Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ESDDOCPARTNER view
ClientDependent true view
EndUserText.label Extension View for VBPA view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument vbpa vbeln SD Sched. Agmt
KEY SalesDocumentItem vbpa posnr WBS Element
KEY PartnerFunction vbpa parvw Task Processor

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 E_SDDocumentPartner.
-- 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: ESDDOCPARTNER

CREATE VIEW E_SDDocumentPartner AS
SELECT
  Persistence.vbeln AS SalesDocument,
  Persistence.posnr AS SalesDocumentItem,
  Persistence.parvw AS PartnerFunction
FROM vbpa AS Persistence
;