Srf_UsHelpAmendment
Helper view to determine the correction run
Srf_UsHelpAmendment is a CDS View that provides data about "Helper view to determine the correction run" in SAP S/4HANA. It reads from 1 data source (I_StRpRepRun). Part of development package ID-OBS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StRpRepRun | I_StRpRepRun | from |
Parameters (3)
| Name | Type | Default |
|---|---|---|
| P_StatryRptgEntity | srf_reporting_entity | |
| P_StatryRptCategory | srf_rep_cat_id | |
| P_StatryRptRunID | srf_report_run_id |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SRFUSHELPAMMEND | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Helper view to determine the correction run | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.lifecycle.status | #DEPRECATED | view |
@AbapCatalog.sqlViewName: 'SRFUSHELPAMMEND'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Helper view to determine the correction run'
@ObjectModel.usageType.serviceQuality:#D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass:#MIXED
@VDM.lifecycle.status: #DEPRECATED
define view Srf_UsHelpAmendment
with parameters
P_StatryRptgEntity : srf_reporting_entity,
P_StatryRptCategory : srf_rep_cat_id,
P_StatryRptRunID : srf_report_run_id
as select from I_StRpRepRun
{
case StatryRptRunType
when 'CORR' then 'G'
else ''
end as IsAmendment
}
where
StatryRptgEntity = $parameters.P_StatryRptgEntity
and StatryRptCategory = $parameters.P_StatryRptCategory
and StatryRptRunID = $parameters.P_StatryRptRunID
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