/APE/C_BOTYPE_VH

DDL: /APE/C_BOTYPE_VH Type: view CONSUMPTION

Business Object Type

/APE/C_BOTYPE_VH is a Consumption CDS View that provides data about "Business Object Type" in SAP S/4HANA. It reads from 1 data source (/APE/C_BOType) and exposes 3 fields with key field BusinessObjectTypeKey. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/C_BOType BusinessObjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] /APE/C_BusObjTypeText _Text _Text.ape_parent_key = $projection.BusinessObjectTypeKey

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_BOTYVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Object Type view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessObjectTypeKey /APE/C_BOType config_key Char
BusinessObjectType /APE/C_BOType bo_type SOT Name
BOTypeDescriptionISL

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_BOTYPE_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_BOTYPE_VH AS
SELECT
  BusinessObjectType.config_key AS BusinessObjectTypeKey,
  BusinessObjectType.bo_type AS BusinessObjectType,
  _Text[1: language = $session.system_language ].description AS BOTypeDescriptionISL
FROM /APE/C_BOType AS BusinessObjectType
LEFT OUTER JOIN /APE/C_BusObjTypeText AS _Text ON _Text.ape_parent_key = BusinessObjectTypeKey  -- association [0..*]
;