/APE/C_CheckGroupText_UI

DDL: /APE/C_CHECKGROUPTEXT_UI Type: view CONSUMPTION

Check Group

/APE/C_CheckGroupText_UI is a Consumption CDS View that provides data about "Check Group" in SAP S/4HANA. It reads from 1 data source (/APE/I_CheckGroupText_TP) and exposes 6 fields with key fields CheckGroupKey, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_CheckGroupText_TP CheckGroupText from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/C_CheckGroup_UI _CheckGroup _CheckGroup.CheckGroupKey = $projection.CheckGroupKey
[0..1] /APE/C_LanguageKey_VH _LanguageKeyVH _LanguageKeyVH.Language = $projection.Language

Annotations (13)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CheckGroupKey /APE/I_CheckGroupText_TP ape_parent_key
KEY Language /APE/I_CheckGroupText_TP language Report Text Language
LanguageKeyDescription _LanguageKeyVH Description Well Code Des.
Description /APE/I_CheckGroupText_TP description Well Code Des.
_CheckGroup _CheckGroup
_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_CheckGroupText_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_CheckGroupText_UI AS
SELECT
  CheckGroupText.ape_parent_key AS CheckGroupKey,
  CheckGroupText.language AS Language,
  _LanguageKeyVH.Description AS LanguageKeyDescription,
  CheckGroupText.description AS Description
FROM /APE/I_CheckGroupText_TP AS CheckGroupText
LEFT OUTER JOIN /APE/C_CheckGroup_UI AS _CheckGroup ON _CheckGroup.CheckGroupKey = CheckGroupKey  -- association [1..1]
LEFT OUTER JOIN /APE/C_LanguageKey_VH AS _LanguageKeyVH ON _LanguageKeyVH.Language = Language  -- association [0..1]
;