/APE/C_BODataModelHdrTP_C

DDL: /APE/C_BODATAMODELHDRTP_C Type: view_entity CONSUMPTION

Business Object Data Model Header

/APE/C_BODataModelHdrTP_C is a Consumption CDS View that provides data about "Business Object Data Model Header" in SAP S/4HANA. It reads from 1 data source (/APE/I_BODataModelHdrTP_C) and exposes 28 fields with key field BusinessObjectDataModelKey. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_BODataModelHdrTP_C /APE/I_BODataModelHdrTP_C projection

Associations (2)

CardinalityTargetAliasCondition
[0..*] /APE/C_WhereUsed_UI _WhereUsed _WhereUsed.ConfigurationUUID = $projection.BusinessObjectDataModelKey
[0..1] /APE/C_BODMHDRCUST _BODataModelExtesion _BODataModelExtesion.ape_parent_key = $projection.BusinessObjectDataModelKey

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Object Data Model Header view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY BusinessObjectDataModelKey config_key Char
ProcessClusterUUID proc_cluster_uuid
ProcessCluster proc_cluster
BusinessObjectTypeUUID bo_type_uuid
BusinessObjectType bo_type SOT Name
VersionKey version_uuid
Version version XML Vers.
descriptionasVersionDescriptionlocalized
BusinessObjectDDICType bo_ddic_type
BusinessObjectDataClass bo_data_class
IntegrationHanlderClass intg_handler_class
BusinessOperatorClass bo_operator_class
BusinessStrategyGroupKey strategy_group_uuid
BusinessStrategyGroupID strategy_group_id
TechnicalMessageID tech_msg_id
TechnicalMessageVersion tech_msg_version
APIIDUUID api_id_uuid
APIID api_id GUID
descriptionasAPIIDDescriptionlocalized
Compression compress_actv
MarketRole market_role
ConfigurationLayer config_layer
DeploymentTarget deploy_target
ChangedAt changed_at Timestamp
_Version _Version
_LinkedBMS _LinkedBMS
_WhereUsed _WhereUsed
_BODataModelExtesion _BODataModelExtesion

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_BODataModelHdrTP_C.
-- 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_BODataModelHdrTP_C AS
SELECT
  config_key AS BusinessObjectDataModelKey,
  proc_cluster_uuid AS ProcessClusterUUID,
  proc_cluster AS ProcessCluster,
  bo_type_uuid AS BusinessObjectTypeUUID,
  bo_type AS BusinessObjectType,
  version_uuid AS VersionKey,
  Version,
  _VersionText.description as VersionDescription : localized AS descriptionasVersionDescriptionlocalized,
  bo_ddic_type AS BusinessObjectDDICType,
  bo_data_class AS BusinessObjectDataClass,
  intg_handler_class AS IntegrationHanlderClass,
  bo_operator_class AS BusinessOperatorClass,
  strategy_group_uuid AS BusinessStrategyGroupKey,
  strategy_group_id AS BusinessStrategyGroupID,
  tech_msg_id AS TechnicalMessageID,
  tech_msg_version AS TechnicalMessageVersion,
  api_id_uuid AS APIIDUUID,
  api_id AS APIID,
  _APIIDText.description as APIIDDescription : localized AS descriptionasAPIIDDescriptionlocalized,
  compress_actv AS Compression,
  market_role AS MarketRole,
  config_layer AS ConfigurationLayer,
  deploy_target AS DeploymentTarget,
  changed_at AS ChangedAt
FROM /APE/I_BODataModelHdrTP_C
LEFT OUTER JOIN /APE/C_WhereUsed_UI AS _WhereUsed ON _WhereUsed.ConfigurationUUID = BusinessObjectDataModelKey  -- association [0..*]
LEFT OUTER JOIN /APE/C_BODMHDRCUST AS _BODataModelExtesion ON _BODataModelExtesion.ape_parent_key = BusinessObjectDataModelKey  -- association [0..1]
;