Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Reading Retro and Offcycle payroll results

Former Member
0 Kudos

Hi all,

Anyone have idea about how to read retro and offcycle payroll results.

Thanks in advance.

Sriram

6 REPLIES 6

former_member583013
Active Contributor
0 Kudos

Maybe this could help you -:)

<a href="/people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports to deal with HR Payroll reports</a>

Greetings,

Blag.

suresh_datti
Active Contributor
0 Kudos

RGDIR-SRTZA = 'O' or 'P' ( for Retro ) &

RGDIR-PAYTY ne space ( for Off-Cycle ) The Payroll Type could be Bonus,Correction,Manula Check or a Supplemental payment.

PL take a look at the entries in table HRPY_RGDIR to get an idea.

~Suresh

Former Member
0 Kudos

Thanks for your replies. I have idea of how to read regular payroll result. But my requirement is to read retro results( even offcycle ) , regular results and offcycle results.

For reading retro results i am using the fm CD_EVALUATION_PERIODS and but not able to get exact results.

Any idea

0 Kudos

First use function call 'CU_READ_RGDIR' & get all the results for the employee.

Then filter the itab for the PAYTY & SRTZA. loop at that itab & then call 'CD_EVALUATION_PERIODS' for each loop pass.You will get the relevant SEQNR for each of such result. You can then read the results for that seqnr by using the normal method ie a function call like HR_PT_READ_PAYROLL_RESULT should be enough.

~Suresh

0 Kudos

Any sample code?

0 Kudos

Pl take a look at the Std Report RPUDRQQ0.

~Suresh