E_OrderOperation

DDL: E_ORDEROPERATION SQL: EORDEROPERATION Type: view EXTENSION

Mfg Order Operation - Extension

E_OrderOperation is a Extension CDS View that provides data about "Mfg Order Operation - Extension" in SAP S/4HANA. It reads from 1 data source (afvu) and exposes 2 fields with key fields OrderInternalID, OrderOperationInternalID.

Data Sources (1)

SourceAliasJoin Type
afvu Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EORDEROPERATION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #EXTENSION view
EndUserText.label Mfg Order Operation - Extension view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalID afvu aufpl TaskList No.Ops
KEY OrderOperationInternalID afvu aplzl Plan No.f.Oper.

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_OrderOperation.
-- 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: EORDEROPERATION

CREATE VIEW E_OrderOperation AS
SELECT
  Persistence.aufpl AS OrderInternalID,
  Persistence.aplzl AS OrderOperationInternalID
FROM afvu AS Persistence
;