ODQMON_READ_DATA_VOLUME

DDL: ODQMON_READ_DATA_VOLUME SQL: ODQMONSELD Type: view

Data Selection

ODQMON_READ_DATA_VOLUME is a CDS View that provides data about "Data Selection" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 1 field. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] ODQMON_READ_DATA_VOLUME_TEXT _text _text.read_data_volume = $projection.read_data_volume

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ODQMONSELD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey read_data_volume view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Data Selection view

Fields (1)

KeyFieldSource TableSource FieldDescription
_text _text

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 ODQMON_READ_DATA_VOLUME.
-- 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: ODQMONSELD

CREATE VIEW ODQMON_READ_DATA_VOLUME AS
SELECT *  -- field list not available in parsed metadata
FROM dd07l
LEFT OUTER JOIN ODQMON_READ_DATA_VOLUME_TEXT AS _text ON _text.read_data_volume = read_data_volume  -- association [0..*]
;