I_SponsoredClassHierarchyNodeT

DDL: I_SPONSOREDCLASSHIERARCHYNODET SQL: IGMSPCLASSHNT Type: view BASIC

Sponsored Class Hierarchy Node - Text

I_SponsoredClassHierarchyNodeT (Basic)

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

Cross Applications

I_SponsoredClassHierarchyNodeT is a Basic CDS View that provides data about "Sponsored Class Hierarchy Node - Text" in SAP S/4HANA. It reads from 2 data sources (hrrp_nodet, I_SponsoredClassHierarchy) and exposes 8 fields with key fields SponsoredClassHierarchy, HierarchyNode, ValidityEndDate, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-GM-GTE-MD
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
hrrp_nodet hrrp_nodet from
I_SponsoredClassHierarchy I_SponsoredClassHierarchy inner

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..*] I_SponsoredClassHierarchy _Hierarchy $projection.SponsoredClassHierarchy = _Hierarchy.SponsoredClassHierarchy

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IGMSPCLASSHNT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sponsored Class Hierarchy Node - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SponsoredClassHierarchy Sponsored Class Hierarchy
KEY HierarchyNode hrrp_nodet hrynode Hierarchy node
KEY ValidityEndDate Validity End Date
KEY Language hrrp_nodet spras Off. Language
HierarchyNodeText hrrp_nodet 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_SponsoredClassHierarchyNodeT.
-- 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: IGMSPCLASSHNT

CREATE VIEW I_SponsoredClassHierarchyNodeT AS
SELECT
  cast( hrrp_nodet.hryid as gmis_hryid_sponsoredclass preserving type ) AS SponsoredClassHierarchy,
  hrrp_nodet.hrynode AS HierarchyNode,
  cast( hrrp_nodet.hryvalto as fis_datbi preserving type ) AS ValidityEndDate,
  hrrp_nodet.spras AS Language,
  hrrp_nodet.nodetxt AS HierarchyNodeText,
  cast( hrrp_nodet.hryvalfrom as fis_datab preserving type ) AS ValidityStartDate
FROM hrrp_nodet
INNER JOIN I_SponsoredClassHierarchy ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_SponsoredClassHierarchy AS _Hierarchy ON SponsoredClassHierarchy = _Hierarchy.SponsoredClassHierarchy  -- association [1..*]
;