/APE/C_BusObjCodeText_UI

DDL: /APE/C_BUSOBJCODETEXT_UI Type: view CONSUMPTION

Business Object Code Description

/APE/C_BusObjCodeText_UI is a Consumption CDS View that provides data about "Business Object Code Description" in SAP S/4HANA. It reads from 1 data source (/APE/I_BusObjCodeText_TP) and exposes 8 fields with key fields BusinessObjectCodeKey, BusinessObjectDataModelKey, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_BusObjCodeText_TP BusinessObjectCodeText from

Associations (3)

CardinalityTargetAliasCondition
[1..1] /APE/C_BusObjCode_UI _BOCode _BOCode.BusinessObjectCodeKey = $projection.BusinessObjectCodeKey and _BOCode.BusinessObjectDataModelKey = $projection.BusinessObjectDataModelKey
[1..1] /APE/C_BODataModelHdr_UI _BODMHdr _BODMHdr.BusinessObjectDataModelKey = $projection.BusinessObjectDataModelKey
[0..1] /APE/C_LanguageKey_VH _LanguageKeyVH _LanguageKeyVH.Language = $projection.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_BOCODETUI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Object Code Description view
VDM.viewType #CONSUMPTION view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.allowExtensions true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BusinessObjectCodeKey /APE/I_BusObjCodeText_TP ape_parent_key
KEY BusinessObjectDataModelKey /APE/I_BusObjCodeText_TP ape_root_key
KEY Language /APE/I_BusObjCodeText_TP language Report Text Language
LanguageKeyDescription _LanguageKeyVH Description Well Code Des.
Description /APE/I_BusObjCodeText_TP description Well Code Des.
_BOCode _BOCode
_BODMHdr _BODMHdr
_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_BusObjCodeText_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_BusObjCodeText_UI AS
SELECT
  BusinessObjectCodeText.ape_parent_key AS BusinessObjectCodeKey,
  BusinessObjectCodeText.ape_root_key AS BusinessObjectDataModelKey,
  BusinessObjectCodeText.language AS Language,
  _LanguageKeyVH.Description AS LanguageKeyDescription,
  BusinessObjectCodeText.description AS Description
FROM /APE/I_BusObjCodeText_TP AS BusinessObjectCodeText
LEFT OUTER JOIN /APE/C_BusObjCode_UI AS _BOCode ON _BOCode.BusinessObjectCodeKey = BusinessObjectCodeKey AND _BOCode.BusinessObjectDataModelKey = BusinessObjectDataModelKey  -- association [1..1]
LEFT OUTER JOIN /APE/C_BODataModelHdr_UI AS _BODMHdr ON _BODMHdr.BusinessObjectDataModelKey = BusinessObjectDataModelKey  -- association [1..1]
LEFT OUTER JOIN /APE/C_LanguageKey_VH AS _LanguageKeyVH ON _LanguageKeyVH.Language = Language  -- association [0..1]
;