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.
Security Profile- Custom Criteria help needed
Content
Hello,
we have to use the custom criteria ('person security profile') in order to restrict the user from seeing employees who have grade >= 70. The code I have is preventing from the user to see future hire dates. I tried to change its still not working. if someone can assist writing the code better in order to fix the issue with future hire dates?
very appreciate!
The code:
&TABLE_ALIAS.PERSON_ID IN(
SELECT DISTINCT ASG.PERSON_ID FROM FUSION.PER_ALL_ASSIGNMENTS_M ASG
WHERE (ASG.ASSIGNMENT_TYPE = 'E' OR ASG.ASSIGNMENT_TYPE = 'C')
AND TRUNC(SYSDATE) BETWEEN ASG.EFFECTIVE_START_DATE AND ASG.EFFECTIVE_END_DATE
0