ODQMON_STATUS_ICON

DDL: ODQMON_STATUS_ICON SQL: ODQMONREQST Type: view

Request Status

ODQMON_STATUS_ICON is a CDS View that provides data about "Request Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field status_icon. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] ODQMON_STATUS_ICON_TEXT _text _text.status_icon = $projection.status_icon

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ODQMONREQST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey status_icon view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Request Status view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY status_icon Lower Value
_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_STATUS_ICON.
-- 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: ODQMONREQST

CREATE VIEW ODQMON_STATUS_ICON AS
SELECT
  cast( domvalue_l as odq_status_icon ) AS status_icon
FROM dd07l
LEFT OUTER JOIN ODQMON_STATUS_ICON_TEXT AS _text ON _text.status_icon = status_icon  -- association [0..*]
;