I_SAPObjectNodeType_2

DDL: I_SAPOBJECTNODETYPE_2 Type: view_entity BASIC

SAP Object Node Type

I_SAPObjectNodeType_2 is a Basic CDS View that provides data about "SAP Object Node Type" in SAP S/4HANA. It reads from 1 data source (nont_node) and exposes 6 fields with key field SAPObjectNodeTypeInUppercase. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
nont_node Node from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_SAPObjectNodeTypeText_2 _Text $projection.SAPObjectNodeTypeInUppercase = _Text.SAPObjectNodeTypeInUppercase
[1..1] I_SAPObjectType_2 _SAPObjectType $projection.SAPObjectTypeInUppercase = _SAPObjectType.SAPObjectTypeInUppercase

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SAP Object Node Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.representativeKey SAPObjectNodeTypeInUppercase view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectNodeTypeInUppercase nont_node nont_name SAP Object Node Type
SAPObjectNodeType nont_node node_name_raw SONT Raw Node Name
SAPObjectTypeInUppercase nont_node node_parent_name SAP Object Type
SAPObjectNodeTypeIsRoot nont_node root_node_flag SONT Root Flag
_Text _Text
_SAPObjectType _SAPObjectType

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_2.
-- 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.

CREATE VIEW I_SAPObjectNodeType_2 AS
SELECT
  Node.nont_name AS SAPObjectNodeTypeInUppercase,
  Node.node_name_raw AS SAPObjectNodeType,
  Node.node_parent_name AS SAPObjectTypeInUppercase,
  Node.root_node_flag AS SAPObjectNodeTypeIsRoot
FROM nont_node AS Node
LEFT OUTER JOIN I_SAPObjectNodeTypeText_2 AS _Text ON SAPObjectNodeTypeInUppercase = _Text.SAPObjectNodeTypeInUppercase  -- association [0..*]
LEFT OUTER JOIN I_SAPObjectType_2 AS _SAPObjectType ON SAPObjectTypeInUppercase = _SAPObjectType.SAPObjectTypeInUppercase  -- association [1..1]
;