I_SponsoredProgram

DDL: I_SPONSOREDPROGRAM SQL: IGMSPPROGRAMSQL Type: view BASIC Package: PSM_S4C_GM_MD

Sponsored Program

I_SponsoredProgram 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 11 fields with key field SponsoredProgram. It has 2 associations to related views. Part of development package PSM_S4C_GM_MD.

Data Sources (1)

SourceAliasJoin Type
gmspprogram gmspprogram from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_GteeMLegislativeDistrict _LegislativeDistrict $projection.GranteeMgmtLegislativeDistrict = _LegislativeDistrict.GranteeMgmtLegislativeDistrict
[0..*] I_SponsoredProgramText _Text $projection.SponsoredProgram = _Text.SponsoredProgram

Annotations (17)

NameValueLevelField
EndUserText.label Sponsored Program view
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.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.allowExtensions true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IGMSPPROGRAMSQL view
AbapCatalog.preserveKey true view
ObjectModel.sapObjectNodeType.name SponsoredProgram view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY SponsoredProgram sponsored_prog
GteeMBdgtTransfObjIsVldtd validate_fmbt
GteeMBdgtAndPostObjIsVldtd validate_fmba
GranteeMgmtLegislativeDistrict ld_code
SponsoredProgramAuthznGrp auth_group
CreatedByUser created_by
CreationDate created_on
LastChangedByUser modified_by
LastChangeDate modified_on
_LegislativeDistrict _LegislativeDistrict
_Text _Text
//Do not use it and use the I_SponsoredProgramCore

@EndUserText.label: 'Sponsored Program'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'SponsoredProgram'
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE]
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #C,
  sizeCategory: #L
}
@Metadata.allowExtensions:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'IGMSPPROGRAMSQL'
@AbapCatalog.preserveKey:true 
@ObjectModel.sapObjectNodeType.name: 'SponsoredProgram'
define view I_SponsoredProgram
  as select from gmspprogram
  association [0..1] to I_GteeMLegislativeDistrict as _LegislativeDistrict on $projection.GranteeMgmtLegislativeDistrict = _LegislativeDistrict.GranteeMgmtLegislativeDistrict
  association [0..*] to I_SponsoredProgramText     as _Text                on $projection.SponsoredProgram = _Text.SponsoredProgram
{

      @ObjectModel.text.association: '_Text'
  key sponsored_prog as SponsoredProgram,
      validate_fmbt  as GteeMBdgtTransfObjIsVldtd,
      validate_fmba  as GteeMBdgtAndPostObjIsVldtd,
      @ObjectModel.foreignKey.association: '_LegislativeDistrict'
      ld_code        as GranteeMgmtLegislativeDistrict,
      auth_group     as SponsoredProgramAuthznGrp,
      created_by     as CreatedByUser,
      @Semantics.systemDate.createdAt: true
      created_on     as CreationDate,
      modified_by    as LastChangedByUser,
      @Semantics.systemDate.lastChangedAt: true
      modified_on    as LastChangeDate,

      _LegislativeDistrict,
      _Text

}