Learn about the new Oracle AI Agent Studio for Fusion Applications: Watch Now
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
How to round values in a fast formula
Hello, how are you?
I would like to round the values returned by this Fast Formula. Is there a function that does this? How can I do it?
IF l_manager_score <> 0 THEN
(
l_mdiv = l_manager_score / l_count_comp
l_manager_avg_score = TRUNC(l_mdiv, 2)
/******* Calculate the Average Rating Score 360 *******/
IF worker_count > 0 AND pair_count > 0 AND l_self_eval_stat = 'COMP' THEN
(
l_manager_avg_score = l_manager_avg_score * 0.60
l_worker_avg_score = l_worker_avg_score * 0.10
l_pair_avg_score = (l_pair_avg_score / pair_count) * 0.30
L_RETURN_VALUE = l_manager_avg_score + l_worker_avg_score + l_pair_avg_score
Tagged:
0