DBA Data[Home] [Help]

APPS.GR_MIGRATE_TO_12 dependencies on FND_PROFILE_OPTIONS

Line 1276: FROM fnd_profile_options a, fnd_profile_option_values b

1272:
1273: /* Cursor used to retrieve profile value at site level */
1274: CURSOR c_get_profile_value(v_profile_name VARCHAR2) IS
1275: SELECT profile_option_value
1276: FROM fnd_profile_options a, fnd_profile_option_values b
1277: WHERE b.level_id = 10001 and
1278: a.profile_option_id = b.profile_option_id and
1279: a.profile_option_name = v_profile_name;
1280:

Line 2001: FROM fnd_profile_options a, fnd_profile_option_values b

1997: /* ------------------ CURSORS ---------------------- */
1998: /* Cursor used retrieve the default organization code */
1999: CURSOR c_get_default_org IS
2000: SELECT profile_option_value
2001: FROM fnd_profile_options a, fnd_profile_option_values b
2002: WHERE b.level_id = 10001 and
2003: a.profile_option_id = b.profile_option_id and
2004: a.profile_option_name = 'GR_ORGN_DEFAULT';
2005: