/APE/C_CheckGroup_C

DDL: /APE/C_CHECKGROUP_C Type: view_entity CONSUMPTION

Configure Check Group

/APE/C_CheckGroup_C is a Consumption CDS View that provides data about "Configure Check Group" in SAP S/4HANA. It reads from 1 data source (/APE/I_CheckGroup_C) and exposes 8 fields. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_CheckGroup_C /APE/I_CheckGroup_C from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/C_ProcessCluster_C _ProcessCluster $projection.proc_cluster_uuid = _ProcessCluster.config_key
[1..1] /APE/C_Version_C _Version $projection.version_uuid = _Version.config_key

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Configure Check Group view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view

Fields (8)

KeyFieldSource TableSource FieldDescription
proc_cluster _ProcessCluster proc_cluster
check_group check_group Check Group
version_uuid version_uuid
version _Version version XML Vers.
class class User Group
market_role market_role
config_layer config_layer
_Version _Version

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_C.
-- 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_C AS
SELECT
  _ProcessCluster.proc_cluster AS proc_cluster,
  check_group,
  version_uuid,
  _Version.version AS version,
  class,
  market_role,
  config_layer
FROM /APE/I_CheckGroup_C
LEFT OUTER JOIN /APE/C_ProcessCluster_C AS _ProcessCluster ON proc_cluster_uuid = _ProcessCluster.config_key  -- association [1..1]
LEFT OUTER JOIN /APE/C_Version_C AS _Version ON version_uuid = _Version.config_key  -- association [1..1]
;