hrpy_pcc_activity
Payroll Activities
hrpy_pcc_activity is a CDS View that provides data about "Payroll Activities" in SAP S/4HANA. It reads from 9 data sources and exposes 12 fields with key fields rec_ref_id, ac_ref_id.
Data Sources (9)
| Source | Alias | Join Type |
|---|---|---|
| pyc_d_tl_task_t | activity_text | left_outer |
| I_User | created_user | left_outer |
| adrp | created_user_name | left_outer |
| pyt_d_err_sta_t | error_status_text | left_outer |
| pyt_d_exe_status | exe_status | left_outer |
| I_User | last_changed_user | left_outer |
| adrp | last_changed_user_name | left_outer |
| pyt_d_proc_sta_t | processing_status_text | left_outer |
| pyt_d_act_reso | run_time_activity | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Payroll Activities | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | rec_ref_id | pyt_d_act_reso | root_ref_id | PCC UUID |
| KEY | ac_ref_id | pyt_d_act_reso | ref_id | Technical Object |
| cfg_ref_id | pyt_d_act_reso | cfg_ref_id | PCC UUID | |
| category | pyt_d_act_reso | ac_category | Activity Category | |
| name | pyc_d_tl_task_t | name | Zone name | |
| id | pyt_d_act_reso | ac_al_id | Activity ID | |
| lc_user | pyt_d_act_reso | lc_user | User Name | |
| lc_user_name | adrp | name_text | Full Name | |
| cr_user | pyt_d_act_reso | lc_user | User Name | |
| cr_user_name | adrp | name_text | Full Name | |
| cr_dt | pyt_d_act_reso | cr_dt | Time Stamp | |
| lc_dt | pyt_d_act_reso | lc_dt | Time Stamp |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view hrpy_pcc_activity.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
CREATE VIEW hrpy_pcc_activity AS
SELECT
run_time_activity.root_ref_id AS rec_ref_id,
run_time_activity.ref_id AS ac_ref_id,
run_time_activity.cfg_ref_id AS cfg_ref_id,
run_time_activity.ac_category AS category,
activity_text.name AS name,
run_time_activity.ac_al_id AS id,
run_time_activity.lc_user AS lc_user,
last_changed_user_name.name_text AS lc_user_name,
run_time_activity.lc_user AS cr_user,
created_user_name.name_text AS cr_user_name,
run_time_activity.cr_dt AS cr_dt,
run_time_activity.lc_dt AS lc_dt
FROM pyt_d_act_reso AS run_time_activity
LEFT OUTER JOIN pyc_d_tl_task_t AS activity_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN pyt_d_exe_status AS exe_status ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN pyt_d_err_sta_t AS error_status_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN pyt_d_proc_sta_t AS processing_status_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_User AS last_changed_user ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN adrp AS last_changed_user_name ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_User AS created_user ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN adrp AS created_user_name ON /* join condition not captured in parsed metadata */
;
Learn More
- CDS View Annotations — A Complete Guide
- 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 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA