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.
Security to secure access to the data in BI Publisher.
There were two set of users called X & Y.
User X is having Full Data access, where as Y has data access to limited countries.
With the help of PER_PERSON_SECURED_LIST_V trying to limit the data access. But both the users are getting same set of data.
select
papf.person_number,ppnfv.first_name
from
PER_PERSON_SECURED_LIST_V ppslv,per_all_people_f papf ,PER_PERSON_NAMES_F_V ppnfv
where
ppslv.person_id = papf.person_id
and sysdate between ppslv.effective_start_date and ppslv.effective_end_date
and sysdate between papf.effective_start_date and papf.effective_end_date
0