/APE/C_BusinessMessageID_VH

DDL: /APE/C_BUSINESSMESSAGEID_VH Type: view CONSUMPTION

Business Message ID

/APE/C_BusinessMessageID_VH is a Consumption CDS View that provides data about "Business Message ID" in SAP S/4HANA. It reads from 1 data source (/APE/C_BusMsgID) and exposes 3 fields with key field BusinessMessageIDKey. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/C_BusMsgID BusinessMessageID from

Associations (1)

CardinalityTargetAliasCondition
[0..*] /APE/C_BusMsgIDText _Text _Text.ape_parent_key = BusinessMessageID.config_key

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_BMIVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Message ID view
ObjectModel.usageType.serviceQuality #B 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 BusinessMessageIDKey /APE/C_BusMsgID config_key Char
BusinessMessageID /APE/C_BusMsgID bus_msg_id
descriptionasBusMsgIDDescriptionISL

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_BusinessMessageID_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_BusinessMessageID_VH AS
SELECT
  BusinessMessageID.config_key AS BusinessMessageIDKey,
  BusinessMessageID.bus_msg_id AS BusinessMessageID,
  _Text[1: language = $session.system_language ].description as BusMsgIDDescriptionISL AS descriptionasBusMsgIDDescriptionISL
FROM /APE/C_BusMsgID AS BusinessMessageID
LEFT OUTER JOIN /APE/C_BusMsgIDText AS _Text ON _Text.ape_parent_key = BusinessMessageID.config_key  -- association [0..*]
;