I_SponsoredClassHierarchyText
Sponsored Class Hierarchy Text
I_SponsoredClassHierarchyText is a Basic CDS View that provides data about "Sponsored Class Hierarchy Text" in SAP S/4HANA. It reads from 1 data source (hrrp_directoryt) and exposes 6 fields with key fields SponsoredClassHierarchy, ValidityEndDate, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_directoryt | hrrp_directoryt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IGMSPCLASHT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Sponsored Class Hierarchy Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SponsoredClassHierarchy | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SponsoredClassHierarchy | |||
| KEY | ValidityEndDate | |||
| KEY | Language | spras | ||
| ValidityStartDate | ||||
| SponsoredClassHierarchyName | hrytxt | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IGMSPCLASHT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Sponsored Class Hierarchy Text'
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'SponsoredClassHierarchy',
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #XL
}
}
define view I_SponsoredClassHierarchyText
as select from hrrp_directoryt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast( hrrp_directoryt.hryid as gmis_hryid_sponsoredclass preserving type ) as SponsoredClassHierarchy,
@Semantics.businessDate.to: true
key cast( hrrp_directoryt.hryvalto as fis_datbi preserving type ) as ValidityEndDate,
@Semantics.language
key spras as Language,
@Semantics.businessDate.from: true
cast( hrrp_directoryt.hryvalfrom as fis_datab preserving type ) as ValidityStartDate,
@Semantics.text
hrytxt as SponsoredClassHierarchyName,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_DIRECTORYT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA