E_JrnlEntrItmMngJrnlEntryDraft

DDL: E_JRNLENTRITMMNGJRNLENTRYDRAFT Type: view_entity EXTENSION

Manage Journal Entry Item - Extension

E_JrnlEntrItmMngJrnlEntryDraft is a Extension CDS View that provides data about "Manage Journal Entry Item - Extension" in SAP S/4HANA. It reads from 1 data source (mngjeitem_draft) and exposes 4 fields with key fields CompanyCode, FiscalYear, AccountingDocument, AccountingDocumentItem.

Data Sources (1)

SourceAliasJoin Type
mngjeitem_draft Persistence from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Manage Journal Entry Item - Extension view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode mngjeitem_draft companycode Receiver Company Code
KEY FiscalYear mngjeitem_draft fiscalyear G/L Fiscal Year
KEY AccountingDocument mngjeitem_draft accountingdocument Journal Entry
KEY AccountingDocumentItem mngjeitem_draft accountingdocumentitem Posting View 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_JrnlEntrItmMngJrnlEntryDraft.
-- 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_JrnlEntrItmMngJrnlEntryDraft AS
SELECT
  Persistence.companycode AS CompanyCode,
  Persistence.fiscalyear AS FiscalYear,
  Persistence.accountingdocument AS AccountingDocument,
  Persistence.accountingdocumentitem AS AccountingDocumentItem
FROM mngjeitem_draft AS Persistence
;