E_JournalEntryItem

DDL: E_JOURNALENTRYITEM Type: view_entity EXTENSION Package: FINS_FIS_FICO

Include View for Journal Entry Item

E_JournalEntryItem is a Extension CDS View that provides data about "Include View for Journal Entry Item" in SAP S/4HANA. It reads from 1 data source (acdoca) and exposes 5 fields with key fields SourceLedger, CompanyCode, FiscalYear, AccountingDocument, LedgerGLLineItem. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
acdoca Persistence from

Annotations (7)

NameValueLevelField
EndUserText.label Include View for Journal Entry Item view
Analytics.technicalName EFIJOURNALENTIT view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SourceLedger acdoca rldnr Ledger (Compat.)
KEY CompanyCode acdoca rbukrs Company Code
KEY FiscalYear acdoca gjahr Settlement Year
KEY AccountingDocument acdoca belnr SD Document
KEY LedgerGLLineItem acdoca docln Matching Document Line Item

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 E_JournalEntryItem.
-- 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.

CREATE VIEW E_JournalEntryItem AS
SELECT
  Persistence.rldnr AS SourceLedger,
  Persistence.rbukrs AS CompanyCode,
  Persistence.gjahr AS FiscalYear,
  Persistence.belnr AS AccountingDocument,
  Persistence.docln AS LedgerGLLineItem
FROM acdoca AS Persistence
;