I_StRpActivity

DDL: I_STRPACTIVITY SQL: ISTRPACT Type: view BASIC

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 9 fields with key fields StatryRptActivityUUID, StatryRptPhaseUUID.

Data Sources (1)

SourceAliasJoin Type
srf_rpg_act srf_rpg_act from

Annotations (10)

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

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY StatryRptActivityUUID srf_rpg_act db_key
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
@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
define view I_StRpActivity
  as select from srf_rpg_act
{
  key srf_rpg_act.db_key           as StatryRptActivityUUID,
  key 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

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"SRF_RPG_ACT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/