ODQMON_EXTRACTION_MODE

DDL: ODQMON_EXTRACTION_MODE SQL: ODQMONXMODE Type: view

Extraction Mode

ODQMON_EXTRACTION_MODE is a CDS View that provides data about "Extraction Mode" 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_EXTRACTION_MODE_TEXT _text _text.extraction_mode = $projection.extraction_mode

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ODQMONXMODE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey extraction_mode view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Extraction Mode 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_EXTRACTION_MODE.
-- 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: ODQMONXMODE

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