v_sumintsu15

DDL: DDL_EEDMSUMINTSU15 SQL: V_EEDMSUMINTSU15 Type: view

v_sumintsu15 is a CDS View in SAP S/4HANA. It reads from 3 data sources (eprofhead, eedmsettlin, eprofval15).

Data Sources (3)

SourceAliasJoin Type
eprofhead profhead from
eedmsettlin settlin inner
eprofval15 val15 inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName V_EEDMSUMINTSU15 view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view

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 v_sumintsu15.
-- 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: V_EEDMSUMINTSU15

CREATE VIEW v_sumintsu15 AS
SELECT *  -- field list not available in parsed metadata
FROM eprofhead AS profhead
INNER JOIN eedmsettlin AS settlin ON /* join condition not captured in parsed metadata */
INNER JOIN eprofval15 AS val15 ON /* join condition not captured in parsed metadata */
;