I_BusObjects

DDL: I_BUSOBJECTS SQL: IBUSOBJECTS Type: view COMPOSITE Package: BEH_OUTBOUND

SAP Object Types

I_BusObjects is a Composite CDS View that provides data about "SAP Object Types" in SAP S/4HANA. Part of development package BEH_OUTBOUND.

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBUSOBJECTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SAP Object Types view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectType I_BusinessObjectEventTask SAPObjectType SOT Name
KEY SAPObjectTypeName I_BusinessObjectEventTask SAPObjectTypeName
KEY SAPObjectTaskCode I_BusinessObjectEventTask SAPObjectTaskCode
KEY SAPObjectTaskTypeName I_BusinessObjectEventTask SAPObjectTaskTypeName

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_BusObjects.
-- 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.
-- SQL view name: IBUSOBJECTS

CREATE VIEW I_BusObjects AS
SELECT
  I_BusinessObjectEventTask.SAPObjectType AS SAPObjectType,
  I_BusinessObjectEventTask.SAPObjectTypeName AS SAPObjectTypeName,
  I_BusinessObjectEventTask.SAPObjectTaskCode AS SAPObjectTaskCode,
  I_BusinessObjectEventTask.SAPObjectTaskTypeName AS SAPObjectTaskTypeName
;