I_BusinessObjType

DDL: I_BUSINESSOBJTYPE SQL: IBOTYPE Type: view BASIC

Business Object Type

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.

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
_Text _Text
@EndUserText.label: 'Business Object Type'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //or  #CHECK

@AbapCatalog.sqlViewName: 'IBOTYPE'
@ObjectModel.representativeKey: 'BusinessObjectType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION]
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions:true
@Metadata.ignorePropagatedAnnotations: true

define view I_BusinessObjType
   as select from tojtb

   association [1..*] to I_BusinessObjTypeText as _Text
     on $projection.BusinessObjectType = _Text.BusinessObjectType

{
@ObjectModel.text.association: '_Text'

   key  cast (name as swo_objtyp ) as BusinessObjectType,
        _Text
  
}
    
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TOJTB"
],
"ASSOCIATED":
[
"I_BUSINESSOBJTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/