Hi
To protect the "CORRECTIONS" being made in per_all_people_f (by the person_type amendments ;-) ) ... i am taking the PPF.last_updated_by and (assuming the FND_USER.user_id is still active) am becomeing this "person", thus corrections will be by the same person ..
I also need to take identify a responsibility_id and for the user I am finding these in FND_USER_RESP_GROUPS ..
However .. some users have many responsibilities and some of these responsibilities DO NOT have the authority to make changes to the people data ..
Consequently :
SELECT MAX(t1.responsibility_id) INTO l_out
FROM fnd_user_resp_groups t1
etc
Will be fairly "RANDOM"
.. so ..
How can i assure the Q. so that i restrict the responsibility to those that are "authorised" ..

Thanks ..
Neill