I_BusEvtSAPObjectNodeType

DDL: I_BUSEVTSAPOBJECTNODETYPE Type: view BASIC

Business Event SAP Object Node Type

I_BusEvtSAPObjectNodeType is a Basic CDS View that provides data about "Business Event SAP Object Node Type" in SAP S/4HANA. It reads from 1 data source (beh_i_event) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
beh_i_event beh_i_event from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBUEVSONT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Business Event SAP Object Node Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
SAPObjectType bo_type SOT Name
SAPObjectNodeType object_node_type SONT 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 I_BusEvtSAPObjectNodeType.
-- 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 I_BusEvtSAPObjectNodeType AS
SELECT
  bo_type AS SAPObjectType,
  object_node_type AS SAPObjectNodeType
FROM beh_i_event
;