/APE/C_CheckResultText_UI

DDL: /APE/C_CHECKRESULTTEXT_UI Type: view CONSUMPTION

Check Result

/APE/C_CheckResultText_UI is a Consumption CDS View that provides data about "Check Result" in SAP S/4HANA. It reads from 1 data source (/APE/I_CheckResultText_TP) and exposes 7 fields with key fields CheckResultKey, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_CheckResultText_TP /APE/I_CheckResultText_TP from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/C_CheckResult_UI _CheckResult $projection.CheckResultKey = _CheckResult.CheckResultKey
[0..1] /APE/C_LanguageKey_VH _LanguageKeyVH _LanguageKeyVH.Language = $projection.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_CHKRESTUI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Check Result view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CheckResultKey ape_parent_key
KEY Language language Report Text Language
LanguageForEdit Original Language
LanguageKeyDescription _LanguageKeyVH Description Well Code Des.
Description description Well Code Des.
_CheckResult _CheckResult
_LanguageKeyVH _LanguageKeyVH

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 /APE/C_CheckResultText_UI.
-- 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 /APE/C_CheckResultText_UI AS
SELECT
  ape_parent_key AS CheckResultKey,
  Language,
  cast(LanguageForEdit as /ape/de_langu_key preserving type ) AS LanguageForEdit,
  _LanguageKeyVH.Description AS LanguageKeyDescription,
  Description
FROM /APE/I_CheckResultText_TP
LEFT OUTER JOIN /APE/C_CheckResult_UI AS _CheckResult ON CheckResultKey = _CheckResult.CheckResultKey  -- association [1..1]
LEFT OUTER JOIN /APE/C_LanguageKey_VH AS _LanguageKeyVH ON _LanguageKeyVH.Language = Language  -- association [0..1]
;