I_GrantSponsoredProgramsLinkTP

DDL: I_GRANTSPONSOREDPROGRAMSLINKTP SQL: IGMGRANTSPTP Type: view TRANSACTIONAL

TP View - SP details for Grant

I_GrantSponsoredProgramsLinkTP is a Transactional CDS View that provides data about "TP View - SP details for Grant" in SAP S/4HANA. It reads from 1 data source (I_GrantSponsoredProgramsLink) and exposes 8 fields with key fields GrantID, SponsoredProgram. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_GrantSponsoredProgramsLink I_GrantSponsoredProgramsLink from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_GrantCoreTP _GrantCoreTP $projection.GrantID = _GrantCoreTP.GrantID
[1..1] I_SponsoredProgramCore _SponsoredProgramForEdit $projection.SponsoredProgramForEdit = _SponsoredProgramForEdit.SponsoredProgram

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IGMGRANTSPTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label TP View - SP details for Grant view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.writeDraftPersistence GMGRNT_SP_DFT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY GrantID GrantID Sender Grant
KEY SponsoredProgram SponsoredProgram Sponsored Program
SponsoredProgramForEdit I_GrantSponsoredProgramsLink SponsoredProgram Sponsored Program
_Grant _Grant
_SponsoredProgram _SponsoredProgram
_SponsoredProgramText _SponsoredProgramText
_SponsoredProgramForEdit _SponsoredProgramForEdit
_GrantCoreTP _GrantCoreTP

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_GrantSponsoredProgramsLinkTP.
-- 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: IGMGRANTSPTP

CREATE VIEW I_GrantSponsoredProgramsLinkTP AS
SELECT
  GrantID,
  SponsoredProgram,
  I_GrantSponsoredProgramsLink.SponsoredProgram AS SponsoredProgramForEdit
FROM I_GrantSponsoredProgramsLink
LEFT OUTER JOIN I_GrantCoreTP AS _GrantCoreTP ON GrantID = _GrantCoreTP.GrantID  -- association [1..1]
LEFT OUTER JOIN I_SponsoredProgramCore AS _SponsoredProgramForEdit ON SponsoredProgramForEdit = _SponsoredProgramForEdit.SponsoredProgram  -- association [1..1]
;