I_AcctgNotifJournalEntry

DDL: I_ACCTGNOTIFJOURNALENTRY Type: view_entity COMPOSITE

Accounting Notification Journal Entry

I_AcctgNotifJournalEntry is a Composite CDS View that provides data about "Accounting Notification Journal Entry" in SAP S/4HANA. It reads from 1 data source (I_GLAccountLineItemRawData) and exposes 4 fields with key fields AccountingNotificationUUID, AccountingDocument, CompanyCode, FiscalYear.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountLineItemRawData I_GLAccountLineItemRawData from

Annotations (6)

NameValueLevelField
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Accounting Notification Journal Entry view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XXL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AccountingNotificationUUID AccountingNotificationUUID Accounting Notification UUID
KEY AccountingDocument AccountingDocument Journal Entry
KEY CompanyCode CompanyCode Receiver Company Code
KEY FiscalYear FiscalYear G/L Fiscal Year

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_AcctgNotifJournalEntry.
-- 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 I_AcctgNotifJournalEntry AS
SELECT
  AccountingNotificationUUID,
  AccountingDocument,
  CompanyCode,
  FiscalYear
FROM I_GLAccountLineItemRawData
;