P_IT_ReportRunParameter2
P_IT_ReportRunParameter2 is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (srf_rep_run, srf_rep_run_par) and exposes 10 fields with key fields StatryRptRunParamUUID, StatryRptRunUUID.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| srf_rep_run | _RepRun | inner |
| srf_rep_run_par | RepRunPar | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatryRptRunParamUUID | srf_rep_run_par | db_key | |
| KEY | StatryRptRunUUID | srf_rep_run_par | parent_key | |
| StatryRptgEntity | srf_rep_run | reporting_entity | ||
| StatryRptCategory | srf_rep_run | rep_cat_id | ||
| StatryRptRunID | srf_rep_run | report_run_id | ||
| StatryRptRunParamID | srf_rep_run_par | param_id | ||
| StatryRptRunParamRngeSign | srf_rep_run_par | sign | ||
| StatryRptRunParamRngeOption | srf_rep_run_par | selopt_option | ||
| StatryRptRunParamRngeLowValue | srf_rep_run_par | low | ||
| StatryRptRunParamRngeHighValue | srf_rep_run_par | high |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@VDM.private: true
@VDM.viewType: #BASIC
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity P_IT_ReportRunParameter2
as select from srf_rep_run_par as RepRunPar
inner join srf_rep_run as _RepRun on _RepRun.db_key = RepRunPar.db_key
{
key RepRunPar.db_key as StatryRptRunParamUUID,
key RepRunPar.parent_key as StatryRptRunUUID,
_RepRun.reporting_entity as StatryRptgEntity,
_RepRun.rep_cat_id as StatryRptCategory,
_RepRun.report_run_id as StatryRptRunID,
RepRunPar.param_id as StatryRptRunParamID,
RepRunPar.sign as StatryRptRunParamRngeSign,
RepRunPar.selopt_option as StatryRptRunParamRngeOption,
RepRunPar.low as StatryRptRunParamRngeLowValue,
RepRunPar.high as StatryRptRunParamRngeHighValue
}
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