DBA Data[Home] [Help]

APPS.GR_MIGRATE_TO_12 dependencies on FND_PROFILE_OPTION_VALUES

Line 1300: FROM fnd_profile_options a, fnd_profile_option_values b

1296:
1297: /* Cursor used to retrieve profile value at site level */
1298: CURSOR c_get_profile_value(v_profile_name VARCHAR2) IS
1299: SELECT profile_option_value
1300: FROM fnd_profile_options a, fnd_profile_option_values b
1301: WHERE b.level_id = 10001 and
1302: a.profile_option_id = b.profile_option_id and
1303: a.profile_option_name = v_profile_name;
1304:

Line 2025: FROM fnd_profile_options a, fnd_profile_option_values b

2021: /* ------------------ CURSORS ---------------------- */
2022: /* Cursor used retrieve the default organization code */
2023: CURSOR c_get_default_org IS
2024: SELECT profile_option_value
2025: FROM fnd_profile_options a, fnd_profile_option_values b
2026: WHERE b.level_id = 10001 and
2027: a.profile_option_id = b.profile_option_id and
2028: a.profile_option_name = 'GR_ORGN_DEFAULT';
2029: