P_RU_StRpJournalEntryLogStat2
ACR Reported Tax Items Log Table Statistic-2
P_RU_StRpJournalEntryLogStat2 is a Basic CDS View that provides data about "ACR Reported Tax Items Log Table Statistic-2" in SAP S/4HANA. It reads from 1 data source (I_StRpRepRun) and exposes 9 fields. Part of development package GLO_FIN_IS_VAT_RU.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StRpRepRun | run | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | PRUSRJRNLENTRLS2 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| StatryRptgEntity | I_StRpRepRun | StatryRptgEntity | ||
| StatryRptCategory | I_StRpRepRun | StatryRptCategory | ||
| StatryRptRunID | I_StRpRepRun | StatryRptRunID | ||
| StatryRptRunStatus | I_StRpRepRun | StatryRptRunStatus | ||
| StatryRptRunCreatedByUser | I_StRpRepRun | StatryRptRunCreatedByUser | ||
| ts_delta | run_log | timestamp_delta | ||
| StatryRptCatPhase | I_StRpRepRun | StatryRptCatPhase | ||
| StatryRptDef | I_StRpRepRun | StatryRptDef | ||
| StatryRptRunUUID | I_StRpRepRun | StatryRptRunUUID |
@VDM.private: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'PRUSRJRNLENTRLS2'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_RU_StRpJournalEntryLogStat2
as select from I_StRpRepRun as run
left outer to one join P_RU_StRpRepRunLog as run_log on run_log.StatryRptRunUUID = run.StatryRptRunUUID
{
run.StatryRptgEntity,
run.StatryRptCategory,
run.StatryRptRunID,
run.StatryRptRunStatus,
run.StatryRptRunCreatedByUser,
run_log.timestamp_delta as ts_delta,
concat_with_space ( concat_with_space ( cast(run_log.timestamp_delta_h as char100),
cast(run_log.timestamp_delta_m as char100),
1),
cast(run_log.timestamp_delta_s as char100),
1) as time_delta,
run.StatryRptCatPhase,
run.StatryRptDef,
run.StatryRptRunUUID
}
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