I_GrantSponsoredProgramsLink

DDL: I_GRANTSPONSOREDPROGRAMSLINK SQL: IGRANTSPLINK Type: view BASIC

Grant Specific Sponsored Program Details

I_GrantSponsoredProgramsLink is a Basic CDS View that provides data about "Grant Specific Sponsored Program Details" in SAP S/4HANA. It reads from 1 data source (gmgspprogram) and exposes 5 fields with key fields GrantID, SponsoredProgram. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
gmgspprogram gmgspprogram from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Grant _Grant $projection.GrantID = _Grant.GrantID
[1..1] I_SponsoredProgramCore _SponsoredProgram $projection.SponsoredProgram = _SponsoredProgram.SponsoredProgram
[0..*] I_SponsoredProgramTextCore _SponsoredProgramText $projection.SponsoredProgram = _SponsoredProgramText.SponsoredProgram

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IGRANTSPLINK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Grant Specific Sponsored Program Details view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GrantID grant_nbr Receiver Grant
KEY SponsoredProgram sponsored_prog Sponsored Program
_Grant _Grant
_SponsoredProgram _SponsoredProgram
_SponsoredProgramText _SponsoredProgramText

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_GrantSponsoredProgramsLink.
-- 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: IGRANTSPLINK

CREATE VIEW I_GrantSponsoredProgramsLink AS
SELECT
  grant_nbr AS GrantID,
  sponsored_prog AS SponsoredProgram
FROM gmgspprogram
LEFT OUTER JOIN I_Grant AS _Grant ON GrantID = _Grant.GrantID  -- association [1..1]
LEFT OUTER JOIN I_SponsoredProgramCore AS _SponsoredProgram ON SponsoredProgram = _SponsoredProgram.SponsoredProgram  -- association [1..1]
LEFT OUTER JOIN I_SponsoredProgramTextCore AS _SponsoredProgramText ON SponsoredProgram = _SponsoredProgramText.SponsoredProgram  -- association [0..*]
;