I_SegmentHierNodeT

DDL: I_SEGMENTHIERNODET SQL: IFISEGMENTHNT Type: view BASIC Package: FINS_SEGMENT_HIER

Segment Hierarchy Node - Text

I_SegmentHierNodeT (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Public Edition with built-in and side-by-side extension capabilities.

SegmentHierarchyNodeText · Accounting and Financial Close

I_SegmentHierNodeT is a Basic CDS View that provides data about "Segment Hierarchy Node - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_nodet_n) and exposes 8 fields with key fields SegmentHierarchy, HierarchyNode, ValidityEndDate, Language. It has 2 associations to related views. Part of development package FINS_SEGMENT_HIER.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-GL-N-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
hrrp_nodet_n hrrp_nodet_n from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..*] I_SegmentHierarchy _Hierarchy $projection.SegmentHierarchy = _Hierarchy.SegmentHierarchy

Annotations (15)

NameValueLevelField
EndUserText.label Segment Hierarchy Node - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFISEGMENTHNT view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.sapObjectNodeType.name SegmentHierarchyNodeText view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SegmentHierarchy Segment Hierarchy ID
KEY HierarchyNode hrrp_nodet_n hrynode Hierarchy node
KEY ValidityEndDate Validity End Date
KEY Language hrrp_nodet_n spras Off. Language
HierarchyNodeText hrrp_nodet_n nodetxt Hierarchy node description
ValidityStartDate Validity Start Date
_Language _Language
_Hierarchy _Hierarchy

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_SegmentHierNodeT.
-- 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: IFISEGMENTHNT

CREATE VIEW I_SegmentHierNodeT AS
SELECT
  cast(hrrp_nodet_n.hryid as fis_hryid_segment preserving type ) AS SegmentHierarchy,
  hrrp_nodet_n.hrynode AS HierarchyNode,
  cast (hrrp_nodet_n.hryvalto as fis_datbi preserving type ) AS ValidityEndDate,
  hrrp_nodet_n.spras AS Language,
  hrrp_nodet_n.nodetxt AS HierarchyNodeText,
  cast (hrrp_nodet_n.hryvalfrom as fis_datab preserving type ) AS ValidityStartDate
FROM hrrp_nodet_n
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_SegmentHierarchy AS _Hierarchy ON SegmentHierarchy = _Hierarchy.SegmentHierarchy  -- association [1..*]
;