I_GteeMBudgetEntryDocumentItem
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)
| Source | Alias | Join Type |
|---|---|---|
| I_GteeMBdgtEntrDocItemBasic | I_GteeMBdgtEntrDocItemBasic | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA