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.
CSP automated move condition fast formula
Summary:
Seeking support in troubleshooting and fixing fast formula
Content (required):
Looking to implementing a move condition fast formula as part of CSP automated move process. The goal for this formula is to prevent users from moving the application outside of the state if the conditions have not been met. The condition in FF checks if the applicant provided a response that satisfies the criteria based on a selected prescreening question, they must not be CWK at time of application, and if the application has been merged. Below is the example FF:
DEFAULT_DATA_VALUE FOR IRC_CSP_JOBAPP_PRESCREEN_RESPONSE_QSTN_CODE IS 'NA' DEFAULT_DATA_VALUE FOR IRC_CSP_JOBAPP_PRESCREEN_RESPONSE_ANSWER_CODE IS 'NA' DEFAULT_DATA_VALUE FOR IRC_EXTRACTS_SUBMISSION_MERGED_FLAG IS 'NA' CONDITION_RESULT = 'N' CONDITION_MESSAGE = 'PSQ Not checked' i = 1 WHILE IRC_CSP_JOBAPP_PRESCREEN_RESPONSE_QSTN_CODE.EXISTS(i) LOOP ( question_code = IRC_CSP_JOBAPP_PRESCREEN_RESPONSE_QSTN_CODE [i] answer_code = IRC_CSP_JOBAPP_PRESCREEN_RESPONSE_ANSWER_CODE [i] IF (question_code = '300000105651498' AND IRC_CSP_JOBAPP_CANDIDATE_TYPE != 'CWK' AND IRC_EXTRACTS_SUBMISSION_MERGED_FLAG = 'Y') THEN ( IF (answer_code = '300000105651520' OR answer_code = '300000105651522') THEN /*Replace XXXXXX with code of Prescreening answer which meets condition*/ ( CONDITION_RESULT = 'Y'
Tagged:
0