C_GrantCostSharingLinkTP

DDL: C_GRANTCOSTSHARINGLINKTP SQL: CGRANTCSLINKTP Type: view CONSUMPTION Package: ODATA_PSM_S4C_GM_MD

Cost Sharing for the Grant

C_GrantCostSharingLinkTP is a Consumption CDS View that provides data about "Cost Sharing for the Grant" in SAP S/4HANA. It reads from 1 data source (I_GrantCostSharingLinkTP) and exposes 17 fields with key fields GrantID, FinancialManagementArea, Fund, SponsoredProgram, SponsoredClass. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F4182, ASQL_F7335). Part of development package ODATA_PSM_S4C_GM_MD.

Data Sources (1)

SourceAliasJoin Type
I_GrantCostSharingLinkTP I_GrantCostSharingLinkTP from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_GrantCoreTP _GrantCoreTP $projection.GrantID = _GrantCoreTP.GrantID

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName CGRANTCSLINKTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Cost Sharing for the Grant view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
UI.headerInfo.typeName Cost Sharing related to Grant view
UI.headerInfo.typeNamePlural Cost Sharing related to Grants view
UI.headerInfo.title.value GrantName view
UI.headerInfo.description.value GrantID view
VDM.viewType #CONSUMPTION view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F4182 ASQL_F4182 C2 NOT_RELEASED
ASQL_F7335 ASQL_F7335 C2 NOT_RELEASED

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY GrantID GrantID Sender Grant
KEY FinancialManagementArea FinancialManagementArea FM Area
KEY Fund Fund Sender Fund
KEY SponsoredProgram SponsoredProgram Sponsored Program
KEY SponsoredClass SponsoredClass Sponsored Class
KEY GteeMCostSharingSource GteeMCostSharingSource
GranteeMgmtCostSharingType GranteeMgmtCostSharingType
GteeMCostSharingRateInPercent GteeMCostSharingRateInPercent Cost Share Rate %
_FinMgmtArea _FinMgmtArea
_Fund _Fund
_FundText _FundText
_Grant _Grant
_SponsoredClass _SponsoredClass
_SponsoredClassText _SponsoredClassText
_SponsoredProgram _SponsoredProgram
_SponsoredProgramText _SponsoredProgramText
_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 C_GrantCostSharingLinkTP.
-- 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: CGRANTCSLINKTP

CREATE VIEW C_GrantCostSharingLinkTP AS
SELECT
  GrantID,
  FinancialManagementArea,
  Fund,
  SponsoredProgram,
  SponsoredClass,
  GteeMCostSharingSource,
  GranteeMgmtCostSharingType,
  GteeMCostSharingRateInPercent
FROM I_GrantCostSharingLinkTP
LEFT OUTER JOIN C_GrantCoreTP AS _GrantCoreTP ON GrantID = _GrantCoreTP.GrantID  -- association [1..1]
;