/APE/C_BOSTRIDText_UI

DDL: /APE/C_BOSTRIDTEXT_UI Type: view CONSUMPTION

Business Object Strategy ID

/APE/C_BOSTRIDText_UI is a Consumption CDS View that provides data about "Business Object Strategy ID" in SAP S/4HANA. It reads from 1 data source (/APE/I_BOStrategyIDText_TP) and exposes 7 fields with key fields BOStrategyIDKey, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_BOStrategyIDText_TP /APE/I_BOStrategyIDText_TP from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/C_BOSTRID_UI _BOStrategyID _BOStrategyID.BOStrategyIDKey = $projection.BOStrategyIDKey
[0..1] /APE/C_LanguageKey_VH _LanguageKeyVH _LanguageKeyVH.Language = $projection.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_BOSTRTUI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Object Strategy ID view
VDM.viewType #CONSUMPTION view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.allowExtensions true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BOStrategyIDKey ape_parent_key
KEY Language language Report Text Language
LanguageForEdit Original Language
Description description Well Code Des.
LanguageKeyDescription _LanguageKeyVH Description Well Code Des.
_BOStrategyID _BOStrategyID
_LanguageKeyVH _LanguageKeyVH

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_BOSTRIDText_UI.
-- 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_BOSTRIDText_UI AS
SELECT
  ape_parent_key AS BOStrategyIDKey,
  Language,
  cast( LanguageForEdit as /ape/de_langu_key preserving type ) AS LanguageForEdit,
  Description,
  _LanguageKeyVH.Description AS LanguageKeyDescription
FROM /APE/I_BOStrategyIDText_TP
LEFT OUTER JOIN /APE/C_BOSTRID_UI AS _BOStrategyID ON _BOStrategyID.BOStrategyIDKey = BOStrategyIDKey  -- association [1..1]
LEFT OUTER JOIN /APE/C_LanguageKey_VH AS _LanguageKeyVH ON _LanguageKeyVH.Language = Language  -- association [0..1]
;