/APE/C_CheckText_UI

DDL: /APE/C_CHECKTEXT_UI Type: view CONSUMPTION

Check

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

Data Sources (1)

SourceAliasJoin Type
/APE/I_CheckText_TP /APE/I_CheckText_TP from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/C_Check_UI _Check _Check.CheckKey = $projection.CheckKey
[0..1] /APE/C_LanguageKey_VH _LanguageKeyVH _LanguageKeyVH.Language = $projection.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_CHKTUI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Check 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 (7)

KeyFieldSource TableSource FieldDescription
KEY CheckKey ape_parent_key
KEY Language /APE/I_CheckText_TP language Report Text Language
LanguageForEdit
Description description Well Code Des.
LanguageKeyDescription _LanguageKeyVH Description Well Code Des.
_Check _Check
_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_CheckText_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_CheckText_UI AS
SELECT
  ape_parent_key AS CheckKey,
  /APE/I_CheckText_TP.language AS Language,
  cast( /APE/I_CheckText_TP.LanguageForEdit as /ape/de_langu_key preserving type ) AS LanguageForEdit,
  Description,
  _LanguageKeyVH.Description AS LanguageKeyDescription
FROM /APE/I_CheckText_TP
LEFT OUTER JOIN /APE/C_Check_UI AS _Check ON _Check.CheckKey = CheckKey  -- association [1..1]
LEFT OUTER JOIN /APE/C_LanguageKey_VH AS _LanguageKeyVH ON _LanguageKeyVH.Language = Language  -- association [0..1]
;