cancel
Showing results for 
Search instead for 
Did you mean: 

Deductions and Arrears.

Former Member
0 Kudos

Hi,

1. How to retrieve values from DDNTK and ARRRS payroll cluster ?

2. how to consider retro ?

3. Do we need to refer T51P1 table ?

4. Cant Wagetype reporter store values of DDNTK and ARRRS values ?

Pls advice.

Regards,

Jothi.

Accepted Solutions (0)

Answers (1)

Answers (1)

sikindar_a
Active Contributor
0 Kudos

check the tcode PC_PAYRESULT

are u able get the results from the clusters

and one more thing wht exactly u want from Retro ????

/552 wage type will get generated if u run retro for the employee

Former Member
0 Kudos

1 .yes values are getting displayed in PC_PAYRESULT in ARRRS and DDNTK tables.

2. shall i just use te values from the cluster / which one to pass (INPER / FORPER) ?

3. whts te use of T51p1 table ? do i need to filter the cluster based on T51p1 valus ?

4. Is it correct ?

CALL FUNCTION 'CU_READ_RGDIR_NEW'

EXPORTING

persnr = pernr-pernr

TABLES

in_rgdir = lt_rgdir

EXCEPTIONS

no_record_found = 1

import_mismatch_error = 2

no_read_authority = 3

OTHERS = 4.

IF sy-subrc = 0.

  • Cluster Directory Entries are Found

  • Read the required Payroll Result for given Inperiod and Forperiod

LOOP AT lt_rgdir INTO lwa_rgdir WHERE payty = P_PAYTY and ( inper = lv_inper or ( ipend >= p_pbegda and ipend <= p_pendda ) ).

CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'

EXPORTING

ENDLOOP.

REgards,

Jothi

sikindar_a
Active Contributor
0 Kudos

INPER / FORPER

inper - in period

forper - for period

u will get the vlaues from clusters even if wan to see in wage type reporter we can see only when the dat gets updated in the clusters so derive the data from the cluster

and T51P1 set the deductions priorities

mean which wage type shd get deducted first like that

Former Member
0 Kudos

1. I have some values in payroll cluster .

2. Deduction priorities are set in T51p1 table.

My Q is, do i need to filter out my cluster results with t51p1 wagetypes ?

3. In simple, i want to retrieve DDNTK and ARRRS payroll cluster values ?

I used to get RT values from WAGETYPE reporter. Will this work for this scenario ( for DDNTK and ARRRS)

sikindar_a
Active Contributor
0 Kudos

depends upon the requirment

say for example if u client wants values that are as per the settings of the Deductions than u have to filter

the wage type reporter will work in ur scenario

Former Member
0 Kudos

yes they asked me to consider T51p1 values .

Pls go thoru and say whthere im correct ?

1. pass payperiod,pernr and wagetypes ( which are taken from t51p1) in wagetype reporter.

2. so wagetype reporter (h99cwtr0) retrieves values from all the cluster tables ..not only RT. right ?

Thanks,

Jothi.

sikindar_a
Active Contributor
0 Kudos

once check the values in cluster and RT are identical or not

for me it is ok but just check the above one before going to final decision

Former Member
0 Kudos

>>once check the values in cluster and RT are identical or not

>>for me it is ok but just check the above one before going to final decision

- I didn't get u .

sikindar_a
Active Contributor
0 Kudos

yes u can go ahead