I_SAPOBJECTTYPE
SAP Object Type
I_SAPOBJECTTYPE is a CDS View in S/4HANA. SAP Object Type. It contains 1 fields. 6 CDS views read from this table.
CDS Views using this table (6)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_LocSubstnLocationTypeVH | view_entity | from | CONSUMPTION | Location Substitution Object Types |
| C_Sitn2SAPObjectTypeVH | view | from | CONSUMPTION | SAP Object Type |
| I_BusinessObjectEventTask | view | from | COMPOSITE | SAP Obj Type and SAP Obj Tsk Type Mappg |
| I_BusinessObjectEventTask | view | union | COMPOSITE | SAP Obj Type and SAP Obj Tsk Type Mappg |
| I_MaintCallObjectType | view | from | COMPOSITE | Maintenance Call Object Type |
| I_TaxItemProcessFlow | view_entity | inner | COMPOSITE | Tax Item Process Flow |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | SAPObjectType | SAPObjectType | 1 |
@AbapCatalog.sqlViewName: 'IOBJTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'SAP Object Type'
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel: { semanticKey: 'SAPObjectType',
representativeKey: 'SAPObjectType' }
define view I_SAPObjectType
as select from sbo_i_botype
association [0..*] to I_SAPObjectTypeText as _Text on $projection.SAPObjectType = _Text.SAPObjectType
association [0..*] to I_SAPObjectRepresentation as _Representation on $projection.SAPObjectType = _Representation.SAPObjectType
association [0..*] to I_SAPObjectNodeType as _NodeType on $projection.SAPObjectType = _NodeType.SAPObjectType
{
@ObjectModel.text.association: '_Text'
key bo_type as SAPObjectType,
_Text,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_NodeType,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_Representation
}