E_PurgInfoRecdOrgPlantData

DDL: E_PURGINFORECDORGPLANTDATA SQL: EINFORECORGDATA Type: view EXTENSION

Extension view for EINE

E_PurgInfoRecdOrgPlantData is a Extension CDS View that provides data about "Extension view for EINE" in SAP S/4HANA. It reads from 1 data source (eine) and exposes 4 fields with key fields PurchasingInfoRecord, PurchasingOrganization, PurchasingInfoRecordCategory, Plant.

Data Sources (1)

SourceAliasJoin Type
eine Persistence from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName EINFORECORGDATA view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Extension view for EINE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurchasingInfoRecord eine infnr Info Record
KEY PurchasingOrganization eine ekorg Purchasing Org.
KEY PurchasingInfoRecordCategory eine esokz Infotype
KEY Plant eine werks Receiving Plant

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_PurgInfoRecdOrgPlantData.
-- 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: EINFORECORGDATA

CREATE VIEW E_PurgInfoRecdOrgPlantData AS
SELECT
  Persistence.infnr AS PurchasingInfoRecord,
  Persistence.ekorg AS PurchasingOrganization,
  Persistence.esokz AS PurchasingInfoRecordCategory,
  Persistence.werks AS Plant
FROM eine AS Persistence
;