E_CnsldtnGroupJrnlEntryItem

DDL: E_CNSLDTNGROUPJRNLENTRYITEM Type: view EXTENSION

Group Journal Entry Item - Extension

E_CnsldtnGroupJrnlEntryItem is a Extension CDS View that provides data about "Group Journal Entry Item - Extension" in SAP S/4HANA. It reads from 1 data source (acdocu) and exposes 5 fields with key fields ConsolidationLedger, ConsolidationDimension, FiscalYear, CnsldtnGroupJrnlEntry, CnsldtnGroupJrnlEntryItem.

Data Sources (1)

SourceAliasJoin Type
acdocu Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EICJRNLENTRITEM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #EXTENSION view
EndUserText.label Group Journal Entry Item - Extension view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationLedger rldnr Ledger (Compat.)
KEY ConsolidationDimension rdimen Dimension
KEY FiscalYear ryear Ref. Year1
KEY CnsldtnGroupJrnlEntry Well doc.no.
KEY CnsldtnGroupJrnlEntryItem 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_CnsldtnGroupJrnlEntryItem.
-- 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_CnsldtnGroupJrnlEntryItem AS
SELECT
  rldnr AS ConsolidationLedger,
  rdimen AS ConsolidationDimension,
  ryear AS FiscalYear,
  cast(docnr as fincs_group_jrnl_entry preserving type ) AS CnsldtnGroupJrnlEntry,
  cast(docln as fincs_group_jrnl_entry_item preserving type) AS CnsldtnGroupJrnlEntryItem
FROM acdocu AS Persistence
;