/APE/C_BusObjTypeOfEExDoc_VH

DDL: /APE/C_BUSOBJTYPEOFEEXDOC_VH Type: view CONSUMPTION

Business Object Type

/APE/C_BusObjTypeOfEExDoc_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 5 fields with key field BusinessObjectType. 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 (8)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BusinessObjectType /APE/C_BOType bo_type SOT Name
BusinessObjectTypeKey /APE/C_BOType config_key Char
SemanticObject /APE/C_BOType semantic_object Semantic Object
SemanticAction /APE/C_BOType semantic_action Semantic Action
KeyFieldName /APE/C_BOType object_key_name

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_BusObjTypeOfEExDoc_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_BusObjTypeOfEExDoc_VH AS
SELECT
  BusinessObjectType.bo_type AS BusinessObjectType,
  BusinessObjectType.config_key AS BusinessObjectTypeKey,
  BusinessObjectType.semantic_object AS SemanticObject,
  BusinessObjectType.semantic_action AS SemanticAction,
  BusinessObjectType.object_key_name AS KeyFieldName
FROM /APE/C_BOType AS BusinessObjectType
LEFT OUTER JOIN /APE/C_BusObjTypeText AS _Text ON _Text.ape_parent_key = BusinessObjectTypeKey  -- association [0..*]
;