cancel
Showing results for 
Search instead for 
Did you mean: 

have to remove Negative Symbol in Payslip - HRFORM tcode

former_member206394
Active Participant
0 Kudos

Hello Experts,

I have created a Remuneration statement for Indonesia using HRFORMS tcode.  Everything is working good.  But, unfortunately, some of the deduction wage types are displaying '-' (negative sign) infront of the amount.  We want to remove this.  Please help.

I cannot do any customization for the wagetype entry because it might effect all the objects which ever has its usage in the past.

Only option that i see is, to loop in the internal table for deductions (STAR_DEDUCTIONS) and if negative symbol is present for PAY_AMOUNT remove it.  But, any other option would you suggest, will help me.

Regards,

Shankar.

Accepted Solutions (1)

Accepted Solutions (1)

former_member206394
Active Participant
0 Kudos

Solved the issue by coding in the interface to change the sign. (multiplying by -1)

Answers (1)

Answers (1)

SandySingh
Active Contributor
0 Kudos

You can use Form Calc script to change the amount to positive.

Use following command in Script Editor

Abs(amountfieldname)

Regards

Sandy