I_SAPObjectNodeTypeText

DDL: I_SAPOBJECTNODETYPETEXT SQL: ISAPOBJNODETYTXT Type: view BASIC

Text for SAP Object Node Type

I_SAPObjectNodeTypeText is a Basic CDS View that provides data about "Text for SAP Object Node Type" in SAP S/4HANA. It reads from 1 data source (sbo_i_nodetypet) and exposes 5 fields with key fields Language, SAPObjectNodeType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
sbo_i_nodetypet sbo_i_nodetypet from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SAPObjectNodeType _NodeType $projection.SAPObjectNodeType = _NodeType.SAPObjectNodeType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY SAPObjectNodeType object_node_type SONT Name
SAPObjectNodeTypeText node_type_text Obj Node Type Desc
_NodeType _NodeType
_Language _Language

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_SAPObjectNodeTypeText.
-- 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: ISAPOBJNODETYTXT

CREATE VIEW I_SAPObjectNodeTypeText AS
SELECT
  spras AS Language,
  object_node_type AS SAPObjectNodeType,
  node_type_text AS SAPObjectNodeTypeText
FROM sbo_i_nodetypet
LEFT OUTER JOIN I_SAPObjectNodeType AS _NodeType ON SAPObjectNodeType = _NodeType.SAPObjectNodeType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;