I_STRPACTIVITY
Activity Definition
I_STRPACTIVITY is a CDS View in S/4HANA. Activity Definition. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_StRpRepRun | view | inner | BASIC | General Information about Report Run |
| R_StRpActivityTP | view_entity | from | TRANSACTIONAL | Statutory Reporting Activity - TP |
@AbapCatalog.sqlViewName: 'ISTRPACT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Activity Definition'
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.sapObjectNodeType.name: 'StatutoryReportingActivity'
define view I_StRpActivity
as select from srf_rpg_act
{
key srf_rpg_act.db_key as StatryRptActivityUUID,
srf_rpg_act.parent_key as StatryRptPhaseUUID,
srf_rpg_act.root_key as StatryRptTaskUUID,
srf_rpg_act.rep_cat_id as StatryRptCategory,
srf_rpg_act.activity_id as StatryRptActivityId,
srf_rpg_act.activity_type as StatryRptActivityType,
srf_rpg_act.activity_phase as StatryRptActivityPhase,
srf_rpg_act.activity_status as StatryRptActivityStatus,
srf_rpg_act.due_date as StatryRptTaskDueDate,
srf_rpg_act.changed_on as StatryRptActyChgdOnDteTme
}