E_PurgDocAccountAssignment

DDL: E_PURGDOCACCOUNTASSIGNMENT Type: view_entity EXTENSION

Purg Doc Account Assignment - Extension

E_PurgDocAccountAssignment is a Extension CDS View that provides data about "Purg Doc Account Assignment - Extension" in SAP S/4HANA. It reads from 1 data source (ekkn) and exposes 3 fields with key fields PurchasingDocument, PurchasingDocumentItem, AccountAssignmentNumber.

Data Sources (1)

SourceAliasJoin Type
ekkn Persistence from

Annotations (6)

NameValueLevelField
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label Purg Doc Account Assignment - Extension view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ekkn ebeln Source PurchDoc
KEY PurchasingDocumentItem ekkn ebelp Item pur. doc.
KEY AccountAssignmentNumber ekkn zekkn Account Assgmt No.

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_PurgDocAccountAssignment.
-- 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 E_PurgDocAccountAssignment AS
SELECT
  Persistence.ebeln AS PurchasingDocument,
  Persistence.ebelp AS PurchasingDocumentItem,
  Persistence.zekkn AS AccountAssignmentNumber
FROM ekkn AS Persistence
;