DBA Data[Home] [Help]

APPS.PA_SECURITY dependencies on FND_OBJECTS

Line 487: fnd_objects fo

483: SELECT '1'
484: FROM pa_projects_all ppa,
485: pa_project_role_types_b ppr, -- Added for bug 3224170
486: fnd_grants fg,
487: fnd_objects fo
488: WHERE
489: --fg.grantee_key = 'PER:'||X_person_id and /* commenting this line for 11.5.10 security changes */
490: fg.grantee_key = PA_SECURITY_PVT.get_grantee_key( 'PERSON', X_person_id, 'N') and
491: /* replaced the above line with this call. The last paramater will assert that the function will not write to database. */

Line 595: fnd_objects fo,

591: CURSOR c1 IS
592: SELECT '1'
593: FROM pa_projects_all ppa,
594: fnd_grants fg,
595: fnd_objects fo,
596: fnd_menus fm
597: WHERE */
598: --fg.grantee_key = 'PER:'||X_person_id and /* commenting this line for 11.5.10 security changes */
599: /* fg.grantee_key = PA_SECURITY_PVT.get_grantee_key( 'PERSON', X_person_id, 'N') and*/