I've been notified that the PRUEDED library is presently calculating union dues based on GROSS PAY instead of per position. I would like to modify the code but not really familiar and not sure how to refence the position.
Scenarios:
Employee is in 2 different positions and 2 different Unions -> Calculate dues separately per position
WA1 is with DSE (Service Employee) ~ 30 hrs
WA2 is with NSM (Skilled Maintenance) ~ 10 hrs
Employee is in 2 different positions (1 union and the other is not)
WA1 is DAFT (Nurses Union) ~ 24 hrs -> Calculate dues per position
WA2 is (Non Union position) ~ 16 Hrs
Existing Code Snippet:
*****************************************************************
8125-CALC.
*****************************************************************
COMPUTE PRUE-DED-AMT = (PRUE-GROSS-PAY * .02).
IF (PRUE-DED-AMT < 10.00)
MOVE 10.00 TO PRUE-DED-AMT
END-IF.
8125-END.
Any ideas on how to proceed.
Thanks