cancel
Showing results for 
Search instead for 
Did you mean: 

Minimum Protected Net: Australia Payroll

Former Member

Hi,

I need to ensure a minimum net pay for AU PY Biweekly Employee having child support deduction. The Processing class 64 for the Child Support Deduction WT has been marked as '1'. The WT has also been marked in Arrears table (T51P6) .Also the constant PRTFT:- for Biweekly Payperiod is present in T511K table.On running the payroll I could not find the minimum net being considered. Please advice if some additional config has to be done.

Thanks,

Himanshu

View Entire Topic
jayantvenkata
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello Himanshu

Please refer to the attached notes which will assist you with your issue.

1231139 - PY-AU: Individual Child Support protected earnings

1530992 - Protected Earning constants in table T511K for year 2011

1541184 - Reading of Protected Earnings constant in Payroll

Meanwhile I found some source in the program RPCARRQ0 (main program

RPCALCQ0)

  • processing class 64 indicates is wt is compared against protected net

IF T512W-VKLAS+63(1) = '1'.

  • find the time unit of the persons period modifier

PERFORM RE549R USING APER-PERMO. "FDSAHRK002232

  • select * from t549r where permo eq aper-permo "FDSAHRK002232

  • and begda le aper-begda. "FDSAHRK002232

  • exit. "FDSAHRK002232

  • endselect. "FDSAHRK002232

IF SY-SUBRC NE 0.

CLEAR T549R. EXIT.

ENDIF.

  • determine what min net to pick up from t511k based on period modifier

  • Note 1541184 - Constants should be read as per the payment date

CASE T549R-ZEINH.

WHEN 01. "Monthly

PERFORM RE511K USING CALCMOLGA 'PRTMN' APER-CHKDT.

MINIMUM_NET = T511K-KWERT.

WHEN 03. "Weekly

PERFORM RE511K USING CALCMOLGA 'PRTWK' APER-CHKDT.

MINIMUM_NET = T511K-KWERT.

WHEN 04. "Bi Monthly

PERFORM RE511K USING CALCMOLGA 'PRTFT' APER-CHKDT.

MINIMUM_NET = T511K-KWERT.

WHEN 02. "Semi Monthly

PERFORM RE511K USING CALCMOLGA 'PRTMN' APER-CHKDT.

MINIMUM_NET = T511K-KWERT / 2.

WHEN 05. "Every 4 weeks

PERFORM RE511K USING CALCMOLGA 'PRTWK' APER-CHKDT.

MINIMUM_NET = T511K-KWERT * 4.

WHEN 06. "Annually

PERFORM RE511K USING CALCMOLGA 'PRTMN' APER-CHKDT.

MINIMUM_NET = T511K-KWERT * 12.

WHEN 07. "Quarterly

PERFORM RE511K USING CALCMOLGA 'PRTMN' APER-CHKDT.

MINIMUM_NET = T511K-KWERT * 3.

ENDCASE.

Hope above information can clarify your query.

Thanks and Kind Regards

Ramana

Former Member
0 Kudos

Thanks Ramana.

I did a change in T51P6 and it worked. I had marked that 'G' in the Arrears column which was making it ignore the minimum net pay amount.

former_member36822
Participant
0 Kudos

Hi Ramana,

Thanks for the details, I have a query on below Child Support Scenario:-

January 2022:-500 Child Support Deducted From Salary.(-500)

Feb 2022:-0 Child Support Deducted From Salary.(0)[Because of whole month EE in LOP]

Mar 2022:-500 Child Support Deducted From Salary.(-500)

April 2022:-LOP Updated for Whole March Month. So (+500 &-500) Child Support Deducted.

Normally in Retro Run its Refunded the Child Support with Positive Amount. How to Handle this Scenarios ,If Stop Refund with +500 Amount ,in case of Retro Run?

Thanks

Baldeb