To add Star Performer as a member of the Performance Smart List:
In the Name column, enter Star Performer
In the Label column, enter Star Performer
The Performance Smart List dimension now includes the new performance rating member for use in other calculations.
Now add a 20% merit increase calculation and 20% bonus calculation based on Star Performer performance ratings by extending existing member formulas:
Select the Account dimension, and then, under Compensation Assumptions, select Rec. Merit %.
Select Rec. Merit %, click Edit, and then select Member Formula.
In Enter Member Formula, add the following calculation to the member formula to assign a 20% merit increase to employees with a Star Performer rating:
ELSEIF ("Performance" == [Performance.StarPerformer]) 0.20;
The revised member formula is:
[OpenInputValueBlock] IF (@ISMBR(“BegBalance”)) IF (“Performance” == [Performance.FailsToMeetExpectations]) 0.00; ELSEIF (“Performance” == [Performance.NeedsImprovement]) 0.02; ELSEIF (“Performance” == [Performance.MeetsExpectations]) 0.04; ELSEIF (“Performance” == [Performance.ExceedsExpectations]) 0.06; ELSEIF (“Performance” == [Performance.FarExceedsExpectations]) 0.10; ELSEIF (“Performance” == [Performance.StarPerformer]) 0.20; ENDIF ELSE #MISSING; ENDIF [CloseInputValueBlock]
Click Validate Member Formula to validate the change.
Note: | You can validate a member formula only after you deploy the Workforce Planning application to Planning (see Oracle Hyperion Enterprise Performance Management Architect Administrator’s Online Help). |