I_StRpActivity

DDL: I_STRPACTIVITY SQL: ISTRPACT Type: view BASIC Package: GLO_GEN_SRF_RUNTIME

Activity Definition

I_StRpActivity is a Basic CDS View that provides data about "Activity Definition" in SAP S/4HANA. It reads from 1 data source (srf_rpg_act) and exposes 10 fields with key field StatryRptActivityUUID. Part of development package GLO_GEN_SRF_RUNTIME.

Data Sources (1)

SourceAliasJoin Type
srf_rpg_act srf_rpg_act from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISTRPACT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Activity Definition view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.sapObjectNodeType.name StatutoryReportingActivity view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY StatryRptActivityUUID srf_rpg_act db_key
StatryRptPhaseUUID srf_rpg_act parent_key
StatryRptTaskUUID srf_rpg_act root_key
StatryRptCategory srf_rpg_act rep_cat_id
StatryRptActivityId srf_rpg_act activity_id
StatryRptActivityType srf_rpg_act activity_type
StatryRptActivityPhase srf_rpg_act activity_phase
StatryRptActivityStatus srf_rpg_act activity_status
StatryRptTaskDueDate srf_rpg_act due_date
StatryRptActyChgdOnDteTme srf_rpg_act changed_on
@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

}