HCM Fast Formula
Using below fast formula we can restrict formula to a particular user.
Navigation: Go to Setup and Maintenance >> Search
Search with "Manage Fast Formula" task.
Provide Formula name and Type (as per the requirement)
In current requirement we need to use this formula for an particular employee.
Database Item Name : PER_ASG_PERSON_NUMBER
Add below code in Text area
/* Formula: Person Extract */
/* DATABASE ITEM DEFAULTS BEGIN */
DEFAULT FOR PER_ASG_PERSON_NUMBER IS ' '
/* DATABASE ITEM DEFAULTS END */
L_PERSON = PER_ASG_PERSON_NUMBER
L_PERSON = 'XXXXX'
RETURN L_PERSON
Click on Save button and Compile fast formula.
0 Comments