DBA Data[Home] [Help]

APPS.PER_DATA_UPDATE_REPORT dependencies on FND_PROFILE

Line 114: from fnd_profile_options_vl

110: where upgrade_definition_id = p_upgrade_definition_id;
111:
112: cursor c_profile_option_name (p_config_option_name varchar2) is
113: select user_profile_option_name
114: from fnd_profile_options_vl
115: where profile_option_name = p_config_option_name;
116:
117: l_xfdf_string CLOB;
118: l_c_data_start varchar2(10);

Line 498: fnd_profile.get(l_option_name, l_execution_point);

494: l_cursor_get_data.upgrade_definition_id),
495: 'N/A');
496: if l_exec_lookup_type = 'N/A' then
497: -- no EXEC_LOOKUP_TYPE parameter found so return internal value
498: fnd_profile.get(l_option_name, l_execution_point);
499: l_execution_point := nvl(l_execution_point,'N/A');
500: else
501: -- an EXEC_LOOKUP_TYPE parameter was found so derive lookup value
502: -- for the profile option and meaning

Line 503: fnd_profile.get(l_option_name, l_lookup_execution_point);

499: l_execution_point := nvl(l_execution_point,'N/A');
500: else
501: -- an EXEC_LOOKUP_TYPE parameter was found so derive lookup value
502: -- for the profile option and meaning
503: fnd_profile.get(l_option_name, l_lookup_execution_point);
504: l_execution_point := nvl(hr_general.decode_lookup(l_exec_lookup_type,
505: l_lookup_execution_point), l_lookup_execution_point);
506: end if;
507: --