A_AcctgNotifJournalEntry

DDL: A_ACCTGNOTIFJOURNALENTRY Type: view_entity CONSUMPTION

Accounting Notification Journal Entry

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

Data Sources (1)

SourceAliasJoin Type
I_AcctgNotifJournalEntry I_AcctgNotifJournalEntry from

Annotations (9)

NameValueLevelField
EndUserText.label Accounting Notification Journal Entry view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
OData.entityType.name AcctgNotifJournalEntry_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AccountingNotificationUUID AccountingNotificationUUID
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 A_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 A_AcctgNotifJournalEntry AS
SELECT
  AccountingNotificationUUID,
  AccountingDocument,
  CompanyCode,
  FiscalYear
FROM I_AcctgNotifJournalEntry
;