/APE/I_CheckGroupText_TP

DDL: /APE/I_CHECKGROUPTEXT_TP Type: view TRANSACTIONAL

Check Group Description

/APE/I_CheckGroupText_TP is a Transactional CDS View that provides data about "Check Group Description" in SAP S/4HANA. It reads from 1 data source (/APE/I_CheckGroupText) and exposes 4 fields with key field language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_CheckGroupText /APE/I_CheckGroupText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /APE/I_CheckGroup_TP _CheckGroup $projection.ape_parent_key = _CheckGroup.config_key

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_CHKGRPT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Check Group Description view
ObjectModel.writeActivePersistence /APE/CHKGRPT view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.writeDraftPersistence /APE/CHKGRPT_DR view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY language language Report Text Language
LanguageForEdit language Report Text Language
description description Well Code Des.
_CheckGroup _CheckGroup

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/I_CheckGroupText_TP.
-- 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/I_CheckGroupText_TP AS
SELECT
  language,
  language AS LanguageForEdit,
  description
FROM /APE/I_CheckGroupText
LEFT OUTER JOIN /APE/I_CheckGroup_TP AS _CheckGroup ON ape_parent_key = _CheckGroup.config_key  -- association [1..1]
;