I_OMEQ_STAT_VH

DDL: I_OMEQ_STAT_VH SQL: OMEQV_STAT_VH Type: view

Value help provider view for status

I_OMEQ_STAT_VH is a CDS View that provides data about "Value help provider view for status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field statusid. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l stat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OMEQ_STAT_T _stat_t $projection.statusid = _stat_t.statusid

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName OMEQV_STAT_VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value help provider view for status view
Search.searchable true view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY statusid dd07l domvalue_l Status ID
_stat_t _stat_t

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 I_OMEQ_STAT_VH.
-- 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: OMEQV_STAT_VH

CREATE VIEW I_OMEQ_STAT_VH AS
SELECT
  stat.domvalue_l AS statusid
FROM dd07l AS stat
LEFT OUTER JOIN I_OMEQ_STAT_T AS _stat_t ON statusid = _stat_t.statusid  -- association [0..*]
;