/APE/C_BOStrategyGrop_VH

DDL: /APE/C_BOSTRATEGYGROUP_VH Type: view CONSUMPTION

Business Object Strategy Group

/APE/C_BOStrategyGrop_VH is a Consumption CDS View that provides data about "Business Object Strategy Group" in SAP S/4HANA. It reads from 1 data source (/APE/C_StrategyGroup) and exposes 5 fields with key field StrategyGroupKey. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/C_StrategyGroup StrategyGroup from

Associations (1)

CardinalityTargetAliasCondition
[0..*] /APE/C_BOStrategyGroupText _Text _Text.ape_parent_key = $projection.StrategyGroupKey

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_BOSTGVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Object Strategy Group view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StrategyGroupKey /APE/C_StrategyGroup config_key Char
StrategyGroupID /APE/C_StrategyGroup strategy_group_id
ProcessCluster /APE/C_StrategyGroup proc_cluster
StrategyGroupDescriptionISL
proc_cluster /APE/C_StrategyGroup proc_cluster

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_BOStrategyGrop_VH.
-- 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_BOStrategyGrop_VH AS
SELECT
  StrategyGroup.config_key AS StrategyGroupKey,
  StrategyGroup.strategy_group_id AS StrategyGroupID,
  StrategyGroup.proc_cluster AS ProcessCluster,
  _Text[1: language = $session.system_language ].description AS StrategyGroupDescriptionISL,
  StrategyGroup.proc_cluster AS proc_cluster
FROM /APE/C_StrategyGroup AS StrategyGroup
LEFT OUTER JOIN /APE/C_BOStrategyGroupText AS _Text ON _Text.ape_parent_key = StrategyGroupKey  -- association [0..*]
;