Hi,
i created 2 custom fields in role Assignment tab on Project Module with the help of
but problem is that other users than IFSAPP cannot see the data in the fields;

There is a sql code running behind these fields;
SELECT education_level_name
FROM (
SELECT education_level_name
FROM pers_education_profile
WHERE person_id = :person_id
AND extract(YEAR FROM end_year) != 9999
ORDER BY end_year DESC, education_level_no DESC
)
WHERE ROWNUM = 1
and i tried to give every possible permission.

and

But it didn’t work.
Need help.
Thanks.