DBA Data[Home] [Help]

APPS.FV_INSTALL_EXTN dependencies on FND_PROFILE_OPTIONS

Line 37: FROM fnd_profile_options

33:
34: -- Check if profile is enabled at User/Responsibility level.
35: CURSOR c_prof_enabled IS
36: SELECT resp_enabled_flag, user_enabled_flag
37: FROM fnd_profile_options
38: WHERE profile_option_name = 'FV_ENABLED';
39:
40: l_resp_flag fnd_profile_options.resp_enabled_flag%TYPE;
41: l_user_flag fnd_profile_options.user_enabled_flag%TYPE;

Line 40: l_resp_flag fnd_profile_options.resp_enabled_flag%TYPE;

36: SELECT resp_enabled_flag, user_enabled_flag
37: FROM fnd_profile_options
38: WHERE profile_option_name = 'FV_ENABLED';
39:
40: l_resp_flag fnd_profile_options.resp_enabled_flag%TYPE;
41: l_user_flag fnd_profile_options.user_enabled_flag%TYPE;
42:
43: BEGIN
44: g_module_name := 'fv.plsql.fv_install_extn.';

Line 41: l_user_flag fnd_profile_options.user_enabled_flag%TYPE;

37: FROM fnd_profile_options
38: WHERE profile_option_name = 'FV_ENABLED';
39:
40: l_resp_flag fnd_profile_options.resp_enabled_flag%TYPE;
41: l_user_flag fnd_profile_options.user_enabled_flag%TYPE;
42:
43: BEGIN
44: g_module_name := 'fv.plsql.fv_install_extn.';
45: l_module_name := g_module_name || 'run_process';