I_ParkedMCAJournalEntry

DDL: I_PARKEDMCAJOURNALENTRY SQL: IGLEMCAPARK Type: view BASIC

Parked MCA Journal Entry details

I_ParkedMCAJournalEntry is a Basic CDS View (Cube) that provides data about "Parked MCA Journal Entry details" in SAP S/4HANA. It reads from 4 data sources (vbkpf, vbsegs, P_MCAdocref, P_RUNADMID) and exposes 37 fields with key fields CompanyCode, AccountingDocument, FiscalYear, AccountingDocumentItem.

Data Sources (4)

SourceAliasJoin Type
vbkpf _Header inner
vbsegs _Item from
P_MCAdocref _mcadocref inner
P_RUNADMID _RUNADM inner

Annotations (15)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.sqlViewName IGLEMCAPARK view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
Analytics.dataCategory #CUBE view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.internalName #LOCAL view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Parked MCA Journal Entry details view

Fields (37)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode vbsegs bukrs Value
KEY AccountingDocument vbsegs belnr SD Document
KEY FiscalYear vbsegs gjahr Settlement Year
KEY AccountingDocumentItem vbsegs buzei Posting View Item
MCARunID P_MCAdocref Runid UUID
Ledger P_MCAdocref Rldnr Ledger (Compat.)
MCAFileID P_RUNADMID Fileid Phys. Document
LedgerGroup vbkpf ldgrp Target Ledger Group
AccountingDocumentType vbkpf blart Rep. rec. doc. type
CompanyCodeCurrency vbkpf hwaer Local Currency
AdditionalCurrency1 vbkpf hwae2 Local curr. 2
AdditionalCurrency2 vbkpf hwae3 Local curr. 3
AccountCurrency vbkpf waers Transaction Currency
TransactionAmountInLocalCrcy vbsegs dmbtr Loc. amount
AmountInAdditionalCurrency1 vbsegs dmbe2 LC2 Amount
AmountInAdditionalCurrency2 vbsegs dmbe3 LC3 Amount
PurchasingDocumentAmount vbsegs wrbtr Gross Amount
ParkedByUser vbkpf uscmp Completed By
ProfitCenter vbsegs prctr Profit Centers
CostCenter vbsegs kostl Substitute CC
Segment vbsegs segment Segment number
TradingPartner vbsegs vbund Trading Partner
PostingKey vbsegs bschl Posting Key
DocumentDate vbkpf bldat Journal Entry Date
PostingDate vbkpf budat Posting Date
FiscalMonth vbkpf monat Period Block
AccountingDocumentHeaderText vbkpf bktxt Header Text
MarketDataExchangeRate
DocumentReferenceID vbkpf xblnr Reference
PlannedReversalDate vbkpf stodt Reversal Date
ReversalReason vbkpf stgrd Reversal Reason
GLAccount vbsegs saknr G/L Account
PartnerProfitCenter vbsegs pprctr Partner PC
PartnerSegment vbsegs psegment Partner Segment
ValueDate vbsegs valut Value date
DocumentItemText vbsegs sgtxt Text
AssignmentReference vbsegs zuonr Finance Project

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_ParkedMCAJournalEntry.
-- 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: IGLEMCAPARK

CREATE VIEW I_ParkedMCAJournalEntry AS
SELECT
  _Item.bukrs AS CompanyCode,
  _Item.belnr AS AccountingDocument,
  _Item.gjahr AS FiscalYear,
  _Item.buzei AS AccountingDocumentItem,
  _mcadocref.Runid AS MCARunID,
  _mcadocref.Rldnr AS Ledger,
  _RUNADM.Fileid AS MCAFileID,
  _Header.ldgrp AS LedgerGroup,
  _Header.blart AS AccountingDocumentType,
  _Header.hwaer AS CompanyCodeCurrency,
  _Header.hwae2 AS AdditionalCurrency1,
  _Header.hwae3 AS AdditionalCurrency2,
  _Header.waers AS AccountCurrency,
  _Item.dmbtr AS TransactionAmountInLocalCrcy,
  _Item.dmbe2 AS AmountInAdditionalCurrency1,
  _Item.dmbe3 AS AmountInAdditionalCurrency2,
  _Item.wrbtr AS PurchasingDocumentAmount,
  _Header.uscmp AS ParkedByUser,
  _Item.prctr AS ProfitCenter,
  _Item.kostl AS CostCenter,
  _Item.segment AS Segment,
  _Item.vbund AS TradingPartner,
  _Item.bschl AS PostingKey,
  _Header.bldat AS DocumentDate,
  _Header.budat AS PostingDate,
  _Header.monat AS FiscalMonth,
  _Header.bktxt AS AccountingDocumentHeaderText,
  cast( _Header.kursx as abap.dec(28,14) ) AS MarketDataExchangeRate,
  _Header.xblnr AS DocumentReferenceID,
  _Header.stodt AS PlannedReversalDate,
  _Header.stgrd AS ReversalReason,
  _Item.saknr AS GLAccount,
  _Item.pprctr AS PartnerProfitCenter,
  _Item.psegment AS PartnerSegment,
  _Item.valut AS ValueDate,
  _Item.sgtxt AS DocumentItemText,
  _Item.zuonr AS AssignmentReference
FROM vbsegs AS _Item
INNER JOIN vbkpf AS _Header ON /* join condition not captured in parsed metadata */
INNER JOIN P_MCAdocref AS _mcadocref ON /* join condition not captured in parsed metadata */
INNER JOIN P_RUNADMID AS _RUNADM ON /* join condition not captured in parsed metadata */
;