E_JournalEntryItemItemization

DDL: E_JOURNALENTRYITEMITEMIZATION Type: view_entity EXTENSION

Aged Journal Entry Item - Extension

E_JournalEntryItemItemization is a Extension CDS View that provides data about "Aged Journal Entry Item - Extension" in SAP S/4HANA. It reads from 1 data source (acdocd) and exposes 5 fields with key fields SourceLedger, CompanyCode, FiscalYear, AccountingDocument, LedgerGLLineItem.

Data Sources (1)

SourceAliasJoin Type
acdocd Persistence from

Annotations (7)

NameValueLevelField
Analytics.technicalName EFIJOURNALENTITITMZN view
EndUserText.label Aged Journal Entry Item - Extension 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 acdocd rldnr Ledger (Compat.)
KEY CompanyCode acdocd rbukrs Company Code
KEY FiscalYear acdocd gjahr Settlement Year
KEY AccountingDocument acdocd belnr SD Document
KEY LedgerGLLineItem acdocd 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_JournalEntryItemItemization.
-- 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_JournalEntryItemItemization AS
SELECT
  Persistence.rldnr AS SourceLedger,
  Persistence.rbukrs AS CompanyCode,
  Persistence.gjahr AS FiscalYear,
  Persistence.belnr AS AccountingDocument,
  Persistence.docln AS LedgerGLLineItem
FROM acdocd AS Persistence
;