I_SAPObjectNodeType

DDL: I_SAPOBJECTNODETYPE SQL: ISAPOBJNODETYPE Type: view BASIC Package: SBO_TYPE_MAP

SAP Object Node Type

I_SAPObjectNodeType is a Basic CDS View that provides data about "SAP Object Node Type" in SAP S/4HANA. It reads from 1 data source (sbo_i_nodetype) and exposes 6 fields with key field SAPObjectNodeType. It has 3 associations to related views. Part of development package SBO_TYPE_MAP.

Data Sources (1)

SourceAliasJoin Type
sbo_i_nodetype sbo_i_nodetype from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_SAPObjectNodeTypeText _Text $projection.SAPObjectNodeType = _Text.SAPObjectNodeType
[1..1] I_SAPObjectType _ObjectType $projection.SAPObjectType = _ObjectType.SAPObjectType
[0..*] I_SAPObjectNodeTypeCDS _NodeCDS $projection.SAPObjectNodeType = _NodeCDS.SAPObjectNodeType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISAPOBJNODETYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label SAP Object Node Type view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.semanticKey SAPObjectNodeType view
ObjectModel.representativeKey SAPObjectNodeType view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectNodeType object_node_type
SAPObjectType bo_type
SAPObjectNodeTypeIsRoot root_node_flag
_Text _Text
_ObjectType _ObjectType
_NodeCDS _NodeCDS
@AbapCatalog.sqlViewName: 'ISAPOBJNODETYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'SAP Object Node Type'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel: { semanticKey: 'SAPObjectNodeType',
                representativeKey: 'SAPObjectNodeType' }
define view I_SAPObjectNodeType
  as select from sbo_i_nodetype
  association [0..*] to I_SAPObjectNodeTypeText as _Text       on $projection.SAPObjectNodeType = _Text.SAPObjectNodeType
  association [1..1] to I_SAPObjectType         as _ObjectType on $projection.SAPObjectType = _ObjectType.SAPObjectType
  association [0..*] to I_SAPObjectNodeTypeCDS  as _NodeCDS    on $projection.SAPObjectNodeType = _NodeCDS.SAPObjectNodeType
{
      //SBO_I_SONT

      @ObjectModel.text.association: '_Text'
  key object_node_type as SAPObjectNodeType,
      bo_type          as SAPObjectType,
      root_node_flag   as SAPObjectNodeTypeIsRoot,
      _Text,
      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT,
                                      #TO_COMPOSITION_ROOT]
      _ObjectType,
      _NodeCDS
}