/APE/C_CheckGroup_Text

DDL: /APE/C_CHECKGROUP_TEXT Type: view BASIC

Check Group - Text

/APE/C_CheckGroup_Text is a Basic CDS View that provides data about "Check Group - Text" in SAP S/4HANA. It reads from 1 data source (/ape/chkgrp) and exposes 4 fields with key field CheckGroupKey.

Data Sources (1)

SourceAliasJoin Type
/ape/chkgrp CheckGroup from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_CKGRTXTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Check Group - Text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CheckGroupKey /ape/chkgrp config_key Char
Language CheckGroupText language Report Text Language
Description CheckGroupText description Well Code Des.
CheckGroup /ape/chkgrp check_group Check Group

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_CheckGroup_Text.
-- 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_CheckGroup_Text AS
SELECT
  CheckGroup.config_key AS CheckGroupKey,
  CheckGroupText.language AS Language,
  CheckGroupText.description AS Description,
  CheckGroup.check_group AS CheckGroup
FROM /ape/chkgrp AS CheckGroup
;