Srf_UsHelpAmendment

DDL: SRF_USHELPAMENDMENT SQL: SRFUSHELPAMMEND Type: view Package: ID-OBS

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)

SourceAliasJoin Type
I_StRpRepRun I_StRpRepRun from

Parameters (3)

NameTypeDefault
P_StatryRptgEntity srf_reporting_entity
P_StatryRptCategory srf_rep_cat_id
P_StatryRptRunID srf_report_run_id

Annotations (9)

NameValueLevelField
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