I_GteeMIndrctCostSplitInfoVals

DDL: I_GTEEMINDRCTCOSTSPLITINFOVALS SQL: IGMIDCSPLINFOVAL Type: view BASIC

GM Indirect Cost Split Information Values

I_GteeMIndrctCostSplitInfoVals is a Basic CDS View that provides data about "GM Indirect Cost Split Information Values" in SAP S/4HANA. It reads from 1 data source (fagl_splinfo_val) and exposes 10 fields with key fields AccountingDocument, FiscalYear, CompanyCode, AccountingDocumentItem, SplitInformationSequenceNumber. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
fagl_splinfo_val fagl_splinfo_val from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Currency _DisplayCurrency $projection.DisplayCurrency = _DisplayCurrency.Currency
[0..1] I_CurrencyRole _currencyRole $projection.CurrencyRole = _currencyRole.CurrencyRole

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IGMIDCSPLINFOVAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.buffering.status #NOT_ALLOWED view
EndUserText.label GM Indirect Cost Split Information Values view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY AccountingDocument belnr SD Document
KEY FiscalYear gjahr Settlement Year
KEY CompanyCode bukrs Value
KEY AccountingDocumentItem buzei Posting View Item
KEY SplitInformationSequenceNumber spl_no Sequence Number
KEY CurrencyRole curtp Valuation Area
DisplayCurrency waers Transaction Currency
AmountInDisplayCurrency wrbtr Gross Amount
_currencyRole _currencyRole
_DisplayCurrency _DisplayCurrency

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_GteeMIndrctCostSplitInfoVals.
-- 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: IGMIDCSPLINFOVAL

CREATE VIEW I_GteeMIndrctCostSplitInfoVals AS
SELECT
  belnr AS AccountingDocument,
  gjahr AS FiscalYear,
  bukrs AS CompanyCode,
  buzei AS AccountingDocumentItem,
  spl_no AS SplitInformationSequenceNumber,
  curtp AS CurrencyRole,
  waers AS DisplayCurrency,
  wrbtr AS AmountInDisplayCurrency
FROM fagl_splinfo_val
LEFT OUTER JOIN I_Currency AS _DisplayCurrency ON DisplayCurrency = _DisplayCurrency.Currency  -- association [1..1]
LEFT OUTER JOIN I_CurrencyRole AS _currencyRole ON CurrencyRole = _currencyRole.CurrencyRole  -- association [0..1]
;