I_SponsoredProgramCore
Sponsored Program
I_SponsoredProgramCore is a Basic CDS View (Dimension) that provides data about "Sponsored Program" in SAP S/4HANA. It reads from 1 data source (gmspprogram) and exposes 10 fields with key field SponsoredProgram. It has 5 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| gmspprogram | gmspprogram | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SponsoredProgHierarchyNode | _SponsoredProgHierarchyNode | $projection.SponsoredProgram = _SponsoredProgHierarchyNode.SponsoredProgram |
| [0..*] | I_SponsoredProgramTextCore | _Text | $projection.SponsoredProgram = _Text.SponsoredProgram |
| [0..1] | I_User | _CreatedByUser | $projection.CreatedByUser = _CreatedByUser.UserID |
| [0..1] | I_User | _LastChangedByUser | $projection.LastChangedByUser = _LastChangedByUser.UserID |
| [1..1] | E_SponsoredProgramCore | _Extension | $projection.SponsoredProgram = _Extension.SponsoredProgram |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | SponsoredProgram | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.allowExtensions | true | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Analytics.internalName | #LOCAL | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IGMSPPROGCL | view | |
| EndUserText.label | Sponsored Program | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SponsoredProgram | sponsored_prog | ||
| CreatedByUser | created_by | |||
| CreationDate | created_on | |||
| LastChangedByUser | modified_by | |||
| LastChangeDate | modified_on | |||
| SponsoredProgramAuthznGrp | auth_group | |||
| _Text | _Text | |||
| _SponsoredProgHierarchyNode | _SponsoredProgHierarchyNode | |||
| _CreatedByUser | _CreatedByUser | |||
| _LastChangedByUser | _LastChangedByUser |
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations:['_SponsoredProgHierarchyNode','_CreatedByUser','_LastChangedByUser']
@ObjectModel.representativeKey: 'SponsoredProgram'
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #EXTRACTION_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #L
}
@Metadata.allowExtensions:true
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.compiler.compareFilter: true
@Analytics.internalName:#LOCAL
@AbapCatalog.preserveKey:true
@AbapCatalog.sqlViewName: 'IGMSPPROGCL'
@EndUserText.label: 'Sponsored Program'
define view I_SponsoredProgramCore
as select from gmspprogram
association [0..*] to I_SponsoredProgHierarchyNode as _SponsoredProgHierarchyNode on $projection.SponsoredProgram = _SponsoredProgHierarchyNode.SponsoredProgram
association [0..*] to I_SponsoredProgramTextCore as _Text on $projection.SponsoredProgram = _Text.SponsoredProgram
association [0..1] to I_User as _CreatedByUser on $projection.CreatedByUser = _CreatedByUser.UserID
association [0..1] to I_User as _LastChangedByUser on $projection.LastChangedByUser = _LastChangedByUser.UserID
association [1..1] to E_SponsoredProgramCore as _Extension //do not expose this association in the projection list of the view
on $projection.SponsoredProgram = _Extension.SponsoredProgram
{
@ObjectModel.text.association: '_Text'
@ObjectModel.hierarchy.association: '_SponsoredProgHierarchyNode'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key sponsored_prog as SponsoredProgram,
created_by as CreatedByUser,
@Semantics.systemDate.createdAt: true
created_on as CreationDate,
modified_by as LastChangedByUser,
@Semantics.systemDate.lastChangedAt: true
modified_on as LastChangeDate,
auth_group as SponsoredProgramAuthznGrp,
_Text,
_SponsoredProgHierarchyNode,
_CreatedByUser,
_LastChangedByUser
}
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