I_CompanyCodeHierNodeT

DDL: I_COMPANYCODEHIERNODET SQL: IFICOCODEHNT Type: view BASIC

Company Code Hierarchy Node - Text

I_CompanyCodeHierNodeT (Basic)

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

CompanyCodeHierarchyNodeText · Accounting and Financial Close

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

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesAssociation Target for Defining CDS Entities, Data Source for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private 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_CompanyCodeHierarchy _Hierarchy $projection.CompanyCodeHierarchy = _Hierarchy.CompanyCodeHierarchy

Annotations (15)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCodeHierarchy Company Code Hierarchy
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_CompanyCodeHierNodeT.
-- 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: IFICOCODEHNT

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