I_AcctgNotifJournalEntry

DDL: I_ACCTGNOTIFJOURNALENTRY Type: view_entity COMPOSITE Package: FABTI_ACCNTG_NOTIFICATION_EXT

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. Part of development package FABTI_ACCNTG_NOTIFICATION_EXT.

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
KEY AccountingDocument AccountingDocument
KEY CompanyCode CompanyCode
KEY FiscalYear FiscalYear
@VDM.viewType:#COMPOSITE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Accounting Notification Journal Entry'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #XXL
define view entity I_AcctgNotifJournalEntry
  as select from I_GLAccountLineItemRawData
{
  key AccountingNotificationUUID,
  key AccountingDocument,
  key CompanyCode,
  key FiscalYear
}
where
  AccountingNotificationUUID != hextobin( '00000000000000000000000000000000' )
group by
  AccountingNotificationUUID,
  CompanyCode,
  FiscalYear,
  AccountingDocument