I_SAPObjectNodeType

DDL: I_SAPOBJECTNODETYPE SQL: ISAPOBJNODETYPE Type: view BASIC

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.

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 SONT Name
SAPObjectType bo_type SOT Name
SAPObjectNodeTypeIsRoot root_node_flag SONT Root Flag
_Text _Text
_ObjectType _ObjectType
_NodeCDS _NodeCDS

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_SAPObjectNodeType.
-- 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: ISAPOBJNODETYPE

CREATE VIEW I_SAPObjectNodeType AS
SELECT
  object_node_type AS SAPObjectNodeType,
  bo_type AS SAPObjectType,
  root_node_flag AS SAPObjectNodeTypeIsRoot
FROM sbo_i_nodetype
LEFT OUTER JOIN I_SAPObjectNodeTypeText AS _Text ON SAPObjectNodeType = _Text.SAPObjectNodeType  -- association [0..*]
LEFT OUTER JOIN I_SAPObjectType AS _ObjectType ON SAPObjectType = _ObjectType.SAPObjectType  -- association [1..1]
LEFT OUTER JOIN I_SAPObjectNodeTypeCDS AS _NodeCDS ON SAPObjectNodeType = _NodeCDS.SAPObjectNodeType  -- association [0..*]
;