I_DSP_DLH_FAILCAUSE

DDL: I_DSP_DLH_FAILCAUSE Type: view_entity

draft lifecycle fail cause

I_DSP_DLH_FAILCAUSE is a CDS View that provides data about "draft lifecycle fail cause" 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 value from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DSP_DLH_FAILCAUSE_TEXT _Text _Text.Status = $projection.Status

Annotations (3)

NameValueLevelField
EndUserText.label draft lifecycle fail cause view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey Status view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Status domvalue_l 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 I_DSP_DLH_FAILCAUSE.
-- 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_DSP_DLH_FAILCAUSE AS
SELECT
  domvalue_l AS Status
FROM dd07l AS value
LEFT OUTER JOIN I_DSP_DLH_FAILCAUSE_TEXT AS _Text ON _Text.Status = Status  -- association [0..*]
;