Deprecated
This CDS view is deprecated in S/4HANA. Use I_ProductStructureNodeText instead. View all deprecated CDS views →

I_NodeText

DDL: I_NODETEXT SQL: INODETEXT Type: view BASIC

Node Text

I_NodeText is a Basic CDS View that provides data about "Node Text" in SAP S/4HANA. It reads from 1 data source (pnodtx) and exposes 4 fields with key fields ProductStructureNodeUUID, Language, ProdStrucNodeTxtChgStateIntID.

Data Sources (1)

SourceAliasJoin Type
pnodtx pnodtx from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName INODETEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ProductStructureNodeText view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
EndUserText.label Node Text view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProductStructureNodeUUID pnguid Line Network GUID
KEY Language spras Off. Language
KEY ProdStrucNodeTxtChgStateIntID pntxcnt Counter
ProdStrucNodeDescription pntext Info. Version

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_NodeText.
-- 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: INODETEXT

CREATE VIEW I_NodeText AS
SELECT
  pnguid AS ProductStructureNodeUUID,
  spras AS Language,
  pntxcnt AS ProdStrucNodeTxtChgStateIntID,
  pntext AS ProdStrucNodeDescription
FROM pnodtx
;