I_StRpActivity
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)
| Source | Alias | Join Type |
|---|---|---|
| srf_rpg_act | srf_rpg_act | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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