I_BCS_MSG_STATUS_VH

DDL: I_BCS_MSG_STATUS_VH Type: view_entity

Value help for msg_status

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

Data Sources (1)

SourceAliasJoin Type
dd07l status_value from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BCS_MSG_STATUS_T status_text $projection.status = status_text.status

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value help for msg_status view
Search.searchable true view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY status domvalue_l Lower Value
status_text status_text Status 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 I_BCS_MSG_STATUS_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.

CREATE VIEW I_BCS_MSG_STATUS_VH AS
SELECT
  domvalue_l AS status,
  status_text
FROM dd07l AS status_value
LEFT OUTER JOIN I_BCS_MSG_STATUS_T AS status_text ON status = status_text.status  -- association [0..*]
;