I_BusinessObjType

DDL: I_BUSINESSOBJTYPE SQL: IBOTYPE Type: view BASIC

Business Object Type

I_BusinessObjType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_BusinessObjType is a Basic CDS View (Dimension) that provides data about "Business Object Type" in SAP S/4HANA. It reads from 1 data source (tojtb) and exposes 2 fields with key field BusinessObjectType. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentLO-CMM-BF
CapabilitiesAnalytical Dimension
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tojtb tojtb from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_BusinessObjTypeText _Text $projection.BusinessObjectType = _Text.BusinessObjectType

Annotations (12)

NameValueLevelField
EndUserText.label Business Object Type view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IBOTYPE view
ObjectModel.representativeKey BusinessObjectType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessObjectType Object Type
_Text _Text

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_BusinessObjType.
-- 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: IBOTYPE

CREATE VIEW I_BusinessObjType AS
SELECT
  cast (name as swo_objtyp ) AS BusinessObjectType
FROM tojtb
LEFT OUTER JOIN I_BusinessObjTypeText AS _Text ON BusinessObjectType = _Text.BusinessObjectType  -- association [1..*]
;