I_GlobalCompanyHierNodeT

DDL: I_GLOBALCOMPANYHIERNODET Type: view_entity BASIC Package: FIN_COMPANY_HIER

Global Company Hierarchy Node - Text

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

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_GlobalCompanyHierarchy _Hierarchy $projection.GlobalCompanyHierarchy = _Hierarchy.GlobalCompanyHierarchy

Annotations (12)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed false view
EndUserText.label Global Company Hierarchy Node - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.internalName #LOCAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY GlobalCompanyHierarchy
KEY HierarchyNode hrrp_nodet_n hrynode Node
KEY ValidityEndDate
KEY Language hrrp_nodet_n spras Off. Language
HierarchyNodeText hrrp_nodet_n nodetxt Description
ValidityStartDate
_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_GlobalCompanyHierNodeT.
-- 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_GlobalCompanyHierNodeT AS
SELECT
  cast(hrrp_nodet_n.hryid as fis_hryid_company preserving type ) AS GlobalCompanyHierarchy,
  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_GlobalCompanyHierarchy AS _Hierarchy ON GlobalCompanyHierarchy = _Hierarchy.GlobalCompanyHierarchy  -- association [1..*]
;