I_SponsoredProgHierarchyNodeT

DDL: I_SPONSOREDPROGHIERARCHYNODET SQL: IGMSPPROGHNT Type: view BASIC

Sponsored Prog Hierarchy Node - Text

I_SponsoredProgHierarchyNodeT (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_SponsoredProgHierarchyNodeT is a Basic CDS View that provides data about "Sponsored Prog Hierarchy Node - Text" in SAP S/4HANA. It reads from 2 data sources (hrrp_nodet, I_SponsoredProgramHierarchy) and exposes 8 fields with key fields SponsoredProgramHierarchy, 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_SponsoredProgramHierarchy I_SponsoredProgramHierarchy inner

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..*] I_SponsoredProgramHierarchy _Hierarchy $projection.SponsoredProgramHierarchy = _Hierarchy.SponsoredProgramHierarchy

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IGMSPPROGHNT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sponsored Prog 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 SponsoredProgramHierarchy Sponsored Program 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_SponsoredProgHierarchyNodeT.
-- 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: IGMSPPROGHNT

CREATE VIEW I_SponsoredProgHierarchyNodeT AS
SELECT
  cast( hrrp_nodet.hryid as gmis_hryid_sponsoredprog preserving type ) AS SponsoredProgramHierarchy,
  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_SponsoredProgramHierarchy 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_SponsoredProgramHierarchy AS _Hierarchy ON SponsoredProgramHierarchy = _Hierarchy.SponsoredProgramHierarchy  -- association [1..*]
;