ODQMON_QUEUESTATE

DDL: ODQMON_QUEUESTATE SQL: ODQMONQUEST Type: view

Monitor: Queue State

ODQMON_QUEUESTATE is a CDS View that provides data about "Monitor: Queue State" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field queuestate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] ODQMON_QUEUESTATE_TEXT _text _text.queuestate = $projection.queuestate

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ODQMONQUEST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey queuestate view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Monitor: Queue State view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY queuestate 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_QUEUESTATE.
-- 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: ODQMONQUEST

CREATE VIEW ODQMON_QUEUESTATE AS
SELECT
  cast( domvalue_l as odq_queuestate ) AS queuestate
FROM dd07l
LEFT OUTER JOIN ODQMON_QUEUESTATE_TEXT AS _text ON _text.queuestate = queuestate  -- association [0..*]
;