E_OrderConfirmation

DDL: E_ORDERCONFIRMATION SQL: EORDERCONF Type: view EXTENSION

Order Confirmation - Extension

E_OrderConfirmation is a Extension CDS View that provides data about "Order Confirmation - Extension" in SAP S/4HANA. It reads from 1 data source (afru) and exposes 2 fields with key fields ConfirmationGroup, ConfirmationCount.

Data Sources (1)

SourceAliasJoin Type
afru Persistence from

Annotations (9)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ConfirmationGroup rueck Return Agmt
KEY ConfirmationCount rmzhl Counter

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_OrderConfirmation.
-- 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: EORDERCONF

CREATE VIEW E_OrderConfirmation AS
SELECT
  rueck AS ConfirmationGroup,
  rmzhl AS ConfirmationCount
FROM afru AS Persistence
;