I_GteeMBudgetEntryDocumentItem

DDL: I_GTEEMBUDGETENTRYDOCUMENTITEM SQL: IGMBDGTDOCITM Type: view COMPOSITE

Budget Entry Doc in Grantee Management

I_GteeMBudgetEntryDocumentItem is a Composite CDS View that provides data about "Budget Entry Doc in Grantee Management" in SAP S/4HANA. It reads from 1 data source (I_GteeMBdgtEntrDocItemBasic) and exposes 34 fields with key fields GranteeMgmtBudgetEntryDocument, GteeMBudgetEntryDocumentItem. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_GteeMBdgtEntrDocItemBasic I_GteeMBdgtEntrDocItemBasic from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_FinancialManagementArea _FinMgmtArea $projection.FinancialManagementArea = _FinMgmtArea.FinancialManagementArea
[0..1] I_Fund _Fund $projection.FinancialManagementArea = _Fund.FinancialManagementArea and $projection.Fund = _Fund.Fund

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.sqlViewName IGMBDGTDOCITM view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Budget Entry Doc in Grantee Management view
ObjectModel.representativeKey GteeMBudgetEntryDocumentItem view

Fields (34)

KeyFieldSource TableSource FieldDescription
KEY GranteeMgmtBudgetEntryDocument GranteeMgmtBudgetEntryDocument Document Number
KEY GteeMBudgetEntryDocumentItem GteeMBudgetEntryDocumentItem VAT Return Line Item
GrantID GrantID Sender Grant
GteeMBudgetValidityNumber GteeMBudgetValidityNumber Bdgt Validty No.
SponsoredProgram SponsoredProgram Sponsored Program
SponsoredClass SponsoredClass Sponsored Class
GteeMFinancingObjectType GteeMFinancingObjectType Financing Obj Type
GteeMFinancingObject GteeMFinancingObject Financing Object
FinancialManagementArea
Fund Fund Sender Fund
GrantCurrency GrantCurrency Grant Currency
NetBdgtAmtInGrantCrcy
GteeMIndirectCostRateInPercent GteeMIndirectCostRateInPercent Indirect Rate
IndirectCostBdgtAmtInGrantCrcy
AwardBdgtAmtInGrantCrcy
GteeMCostSharingRateInPercent GteeMCostSharingRateInPercent Cost Sharing Rate
CostShrngBdgtAmtInGrantCrcy
TotalBdgtAmtInGrantCrcy
GteeMBudgetEntryDocItemDesc GteeMBudgetEntryDocItemDesc
GteeMInternalBudgetingProcess GteeMInternalBudgetingProcess Trans.
GranteeMgmtValueType GranteeMgmtValueType Value Type
PostingDate PostingDate Posting Date for GR
GranteeFiscalYear GranteeFiscalYear Grantee Fisc. Year
SponsoredClassType SponsoredClassType Class Type
_Header _Header
_Grant _Grant
_SponsoredProgram _SponsoredProgram
_SponsoredClass _SponsoredClass
_GrantCurrency _GrantCurrency
_BudgetingProcess _BudgetingProcess
_ValueType _ValueType
_SponsoredClassType _SponsoredClassType
_Fund _Fund
_FinMgmtArea _FinMgmtArea

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_GteeMBudgetEntryDocumentItem.
-- 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: IGMBDGTDOCITM

CREATE VIEW I_GteeMBudgetEntryDocumentItem AS
SELECT
  GranteeMgmtBudgetEntryDocument,
  GteeMBudgetEntryDocumentItem,
  GrantID,
  GteeMBudgetValidityNumber,
  SponsoredProgram,
  SponsoredClass,
  GteeMFinancingObjectType,
  GteeMFinancingObject,
  _Grant._CompanyCode.FinancialManagementArea AS FinancialManagementArea,
  Fund,
  GrantCurrency,
  cast(NetBdgtAmtInGrantCrcy as gmis_bdgt_amt_net_grant_crcy ) AS NetBdgtAmtInGrantCrcy,
  GteeMIndirectCostRateInPercent,
  cast(IndirectCostBdgtAmtInGrantCrcy as gmis_bdgt_amt_idc_grant_crcy) AS IndirectCostBdgtAmtInGrantCrcy,
  cast(AwardBdgtAmtInGrantCrcy * BudgetAmountFactor as gmis_bdgt_amt_award_grant_crcy) AS AwardBdgtAmtInGrantCrcy,
  GteeMCostSharingRateInPercent,
  cast(CostShrngBdgtAmtInGrantCrcy as gmis_bdgt_amt_csh_grant_crcy) AS CostShrngBdgtAmtInGrantCrcy,
  cast(TotalBdgtAmtInGrantCrcy as gmis_bdgt_amt_total_grant_crcy) AS TotalBdgtAmtInGrantCrcy,
  GteeMBudgetEntryDocItemDesc,
  GteeMInternalBudgetingProcess,
  GranteeMgmtValueType,
  PostingDate,
  GranteeFiscalYear,
  SponsoredClassType
FROM I_GteeMBdgtEntrDocItemBasic
LEFT OUTER JOIN I_FinancialManagementArea AS _FinMgmtArea ON FinancialManagementArea = _FinMgmtArea.FinancialManagementArea  -- association [0..1]
LEFT OUTER JOIN I_Fund AS _Fund ON FinancialManagementArea = _Fund.FinancialManagementArea AND Fund = _Fund.Fund  -- association [0..1]
;