I_AcctgNotifJournalEntry
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 5 fields with key fields AccountingNotificationUUID, AccountingDocument, CompanyCode, FiscalYear.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountLineItemRawData | I_GLAccountLineItemRawData | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Accounting Notification Journal Entry | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccountingNotificationUUID | AccountingNotificationUUID | ||
| KEY | AccountingDocument | AccountingDocument | ||
| KEY | CompanyCode | CompanyCode | ||
| KEY | FiscalYear | FiscalYear | ||
| _PyrlAcctgNotif | _PyrlAcctgNotif |
@VDM.viewType:#COMPOSITE
//@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@ClientHandling.type: #CLIENT_DEPENDENT
//@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Accounting Notification Journal Entry'
//@AbapCatalog.sqlViewName: 'IACCTGNOTIFJE'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #XXL
define view entity I_AcctgNotifJournalEntry
// with parameters
// P_AccountingNotificationUUID : fis_hdr_technical_id
as select from I_GLAccountLineItemRawData
association to parent I_PyrlAccountingNotification as _PyrlAcctgNotif on $projection.AccountingNotificationUUID = _PyrlAcctgNotif.PyrlAccountingNotificationUUID
{
key AccountingNotificationUUID,
key AccountingDocument,
key CompanyCode,
key FiscalYear,
_PyrlAcctgNotif
}
where
AccountingNotificationUUID != hextobin( '00000000000000000000000000000000' )
// and AccountingNotificationUUID = $parameters.P_AccountingNotificationUUID
group by
AccountingNotificationUUID,
CompanyCode,
FiscalYear,
AccountingDocument
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_GLACCOUNTLINEITEMRAWDATA"
],
"ASSOCIATED":
[
"I_PYRLACCOUNTINGNOTIFICATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA