I_FundedProgramHierarchyStdVH
Funded Program Hierarchy
I_FundedProgramHierarchyStdVH is a Basic CDS View that provides data about "Funded Program Hierarchy" in SAP S/4HANA. It reads from 1 data source (hrrp_directory) and exposes 6 fields with key fields FundedProgramHierarchy, ValidityEndDate. It has 2 associations to related views. Part of development package PSM_S4C_BASIS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_directory | hrrp_directory | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_FinancialManagementArea | _FinancialManagementArea | $projection.FinancialManagementArea = _FinancialManagementArea.FinancialManagementArea |
| [1..*] | I_FundedProgramHierarchyText | _Text | $projection.FundedProgramHierarchy = _Text.FundedProgramHierarchy |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.representativeKey | FundedProgramHierarchy | view | |
| EndUserText.label | Funded Program Hierarchy | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Analytics.internalName | #LOCAL | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIFPGDHVH | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| Metadata.allowExtensions | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AbapCatalog.preserveKey | true | view | |
| Consumption.filter.businessDate.at | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Consumption.ranked | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FundedProgramHierarchy | |||
| KEY | ValidityEndDate | hrrp_directory | hryvalto | |
| ValidityStartDate | hrrp_directory | hryvalfrom | ||
| FinancialManagementArea | ||||
| _FinancialManagementArea | _FinancialManagementArea | |||
| _Text | _Text |
@ObjectModel.representativeKey: 'FundedProgramHierarchy'
@EndUserText.label: 'Funded Program Hierarchy'
@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.internalName:#LOCAL
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIFPGDHVH'
@AccessControl.authorizationCheck: #MANDATORY
@Metadata.allowExtensions:true
@AbapCatalog.compiler.compareFilter:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #XL
}
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #VALUE_HELP_PROVIDER]
@AbapCatalog.preserveKey: true
@Consumption.filter.businessDate.at : true
@Metadata.ignorePropagatedAnnotations: true
@Consumption.ranked: true
define view I_FundedProgramHierarchyStdVH
as select from hrrp_directory
association [1..1] to I_FinancialManagementArea as _FinancialManagementArea on $projection.FinancialManagementArea = _FinancialManagementArea.FinancialManagementArea
association [1..*] to I_FundedProgramHierarchyText as _Text on $projection.FundedProgramHierarchy = _Text.FundedProgramHierarchy
{
@ObjectModel.text.association: '_Text'
key cast(hrrp_directory.hryid as fmis_hryid_fundedprogram ) as FundedProgramHierarchy,
@Semantics.businessDate.to: true
key hrrp_directory.hryvalto as ValidityEndDate,
@Semantics.businessDate.from: true
hrrp_directory.hryvalfrom as ValidityStartDate,
@ObjectModel.foreignKey.association: '_FinancialManagementArea'
cast(substring( hrrp_directory.hrycls,1,4) as fikrs preserving type ) as FinancialManagementArea,
_FinancialManagementArea,
_Text
}
where
hrrp_directory.hrytyp = '0315';
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