P_StRpRepRun
General Information about Report Run
P_StRpRepRun is a Basic CDS View that provides data about "General Information about Report Run" in SAP S/4HANA. It reads from 1 data source (srf_rep_run) and exposes 10 fields with key field StatryRptRunUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| srf_rep_run | srf_rep_run | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | General Information about Report Run | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatryRptRunUUID | srf_rep_run | db_key | |
| StatryRptActivityUUID | srf_rep_run | parent_key | ||
| StatryRptTaskUUID | srf_rep_run | root_key | ||
| StatryRptgEntity | srf_rep_run | reporting_entity | ||
| StatryRptCategory | srf_rep_run | rep_cat_id | ||
| StatryRptRunID | srf_rep_run | report_run_id | ||
| StatryRptRunStatus | srf_rep_run | report_run_status | ||
| StatryRptRunType | srf_rep_run | report_run_type | ||
| StatryRptSubmittedDateTime | srf_rep_run | submitted_on | ||
| StatryRptRunCreatedByUser | srf_rep_run | created_by |
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private:true
@ObjectModel.usageType.serviceQuality:#P
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass:#MIXED
@EndUserText.label: 'General Information about Report Run'
define view entity P_StRpRepRun
as select from srf_rep_run
{
key srf_rep_run.db_key as StatryRptRunUUID,
srf_rep_run.parent_key as StatryRptActivityUUID,
srf_rep_run.root_key as StatryRptTaskUUID,
srf_rep_run.reporting_entity as StatryRptgEntity,
srf_rep_run.rep_cat_id as StatryRptCategory,
srf_rep_run.report_run_id as StatryRptRunID,
srf_rep_run.report_run_status as StatryRptRunStatus,
srf_rep_run.report_run_type as StatryRptRunType,
srf_rep_run.submitted_on as StatryRptSubmittedDateTime,
srf_rep_run.created_by as StatryRptRunCreatedByUser
// srf_rep_run.created_on as StatryRptRunCreatedOnDate
}
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