P_StRpRepRunDoc
Report Run document data
P_StRpRepRunDoc is a Basic CDS View that provides data about "Report Run document data" in SAP S/4HANA. It reads from 1 data source (srf_rep_run_doc) and exposes 10 fields with key field StatryRptRunDocUUID. Part of development package GLO_GEN_SRF_RUNTIME.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| srf_rep_run_doc | srf_rep_run_doc | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PSRREPRUNDOC | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatryRptRunDocUUID | db_key | ||
| StatryRptRunUUID | parent_key | |||
| StatryRptTaskUUID | root_key | |||
| StatryDocID | document_id | |||
| StatryFileID | file_id | |||
| StatryNumQueries | num_queries | |||
| StatryDocChangedOn | changed_on | |||
| StatryDocSequenceNum | sequence_number | |||
| StatryRefDocId | reference_document_id | |||
| StatryDocStatus | status |
@AbapCatalog.sqlViewName: 'PSRREPRUNDOC'
@VDM.viewType: #BASIC
@VDM.private: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality:#B
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass:#MIXED
@AbapCatalog.compiler.compareFilter:true
define view P_StRpRepRunDoc as select from srf_rep_run_doc {
key db_key as StatryRptRunDocUUID,
parent_key as StatryRptRunUUID,
root_key as StatryRptTaskUUID,
document_id as StatryDocID,
file_id as StatryFileID,
num_queries as StatryNumQueries,
changed_on as StatryDocChangedOn,
sequence_number as StatryDocSequenceNum,
reference_document_id as StatryRefDocId,
status as StatryDocStatus
}
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