P_JournalEntryPerformance
FINCS Check Performance of Journal Entry
P_JournalEntryPerformance is a Composite CDS View that provides data about "FINCS Check Performance of Journal Entry" in SAP S/4HANA. It reads from 2 data sources (I_JournalEntryItem, I_FinancialPlanningEntryItem) and exposes 4 fields with key field dbname. Part of development package FIN_CS_RELEASE_UNIVERSAL_JRNL.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_JournalEntryItem | acdoca | from |
| I_FinancialPlanningEntryItem | acdocp | union_all |
Parameters (2)
| Name | Type | Default |
|---|---|---|
| P_CreationDateTimeRgFr | timestamp | |
| P_CreationDateTimeRgTo | timestamp |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PJEP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | FINCS Check Performance of Journal Entry | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | dbname | |||
| count_docs | ||||
| count_docs | ||||
| last_tm_doc |
@AbapCatalog.sqlViewName: 'PJEP'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private:true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'FINCS Check Performance of Journal Entry'
define view P_JournalEntryPerformance
with parameters
P_CreationDateTimeRgFr :timestamp,
P_CreationDateTimeRgTo :timestamp
as
select from I_JournalEntryItem as acdoca
{
key cast('acdoca' as dbname) as dbname,
count( distinct acdoca.CreationDateTime ) as count_docs,
max( acdoca.CreationDateTime ) as last_tm_doc
}
where
acdoca.CreationDateTime between :P_CreationDateTimeRgFr and :P_CreationDateTimeRgTo
union all
select from I_FinancialPlanningEntryItem as acdocp
{
key cast('acdocp' as dbname) as dbname,
count( distinct acdocp.FinPlngEntryItemCrtnDateTime ) as count_docs,
max( acdocp.FinPlngEntryItemCrtnDateTime ) as last_tm_doc
}
where
acdocp.FinPlngEntryItemCrtnDateTime between :P_CreationDateTimeRgFr and :P_CreationDateTimeRgTo
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