Get Started with Redwood for Oracle Cloud HCM Begin Now
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.
Fast Formula: Need Help to Pull Latest Talent Rating Recorded
Content
In our compensation worksheet, I was able to successfully pull performance rating from Talent Ratings page based from the solution provided here: Doc ID 2331384.1. The performance rating being pulled from though is the first rating and we want to pull the latest performance rating added.
Here's the FF used:
FF1: /* RS CC Get Perf Ratings */
Inputs are CMP_IV_PLAN_EXTRACTION_DATE (date)
L_RETURN_VALUE = 'AAA'
l_person_id = get_context(PERSON_ID, -1)
l_eff_date = CMP_IV_PLAN_EXTRACTION_DATE
CHANGE_CONTEXTS(EFFECTIVE_DATE = l_eff_date)
SET_INPUT('TALENT_PROFILE_CONTENT_TYPE','PERFORMANCE_RATING')
RET = ESS_LOG_WRITE('Executing Parent Formula Starts'||TO_CHAR(l_eff_date))
2