/APE/I_BOStrategyGrpText_TP

DDL: /APE/I_BOSTRATEGYGRPTEXT_TP Type: view TRANSACTIONAL

BO Strategy Group Description

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

Data Sources (1)

SourceAliasJoin Type
/APE/I_BOStrategyGrpText /APE/I_BOStrategyGrpText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /APE/I_BOSTRGR_TP _BOStrategyGrp $projection.ape_parent_key = _BOStrategyGrp.config_key

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_BOSTRGRPT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BO Strategy Group Description view
ObjectModel.writeActivePersistence /APE/BOSTRGRPT view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.writeDraftPersistence /APE/BOSTGRPT_DR view
VDM.viewType #TRANSACTIONAL 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.
_BOStrategyGrp _BOStrategyGrp

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_BOStrategyGrpText_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_BOStrategyGrpText_TP AS
SELECT
  language,
  language AS LanguageForEdit,
  description
FROM /APE/I_BOStrategyGrpText
LEFT OUTER JOIN /APE/I_BOSTRGR_TP AS _BOStrategyGrp ON ape_parent_key = _BOStrategyGrp.config_key  -- association [1..1]
;