DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_FND_DEF_ENTITY dependencies on FND_USER

Line 23: from fnd_user

19: per_ri_config_tech_summary.user_tab) IS
20:
21: cursor csr_find_user (cp_user_name in varchar2) IS
22: select user_id
23: from fnd_user
24: where user_name = cp_user_name;
25:
26: l_users_count number(10) := 0;
27: l_proc varchar2(72) := g_package ||'create_user';

Line 30: l_user_id fnd_user.user_id%type;

26: l_users_count number(10) := 0;
27: l_proc varchar2(72) := g_package ||'create_user';
28: l_log_message varchar2(360);
29: l_error_message varchar2(360);
30: l_user_id fnd_user.user_id%type;
31: l_user_name fnd_user.user_name%type;
32:
33: BEGIN
34: hr_utility.set_location('Entering:'|| l_proc, 10);

Line 31: l_user_name fnd_user.user_name%type;

27: l_proc varchar2(72) := g_package ||'create_user';
28: l_log_message varchar2(360);
29: l_error_message varchar2(360);
30: l_user_id fnd_user.user_id%type;
31: l_user_name fnd_user.user_name%type;
32:
33: BEGIN
34: hr_utility.set_location('Entering:'|| l_proc, 10);
35:

Line 45: fnd_user_pkg.createuser(

41: fetch csr_find_user into l_user_id;
42:
43: if NOT (p_technical_summary_mode) then
44: if csr_find_user%NOTFOUND then
45: fnd_user_pkg.createuser(
46: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
47: (per_ri_config_main.g_configuration_user_name)),
48:
49: x_start_date => per_ri_config_fnd_def_entity.g_config_effective_date,

Line 356: l_user_id fnd_user.user_id%type;

352: l_resp_count number(10) := 0;
353: l_proc varchar2(72) := g_package ||'attach_default_responsibility';
354: l_log_message varchar2(360);
355: l_error_message varchar2(360);
356: l_user_id fnd_user.user_id%type;
357: l_start_date varchar2(240) := to_char(per_ri_config_fnd_def_entity.g_config_effective_date,'YYYY/MM/DD');
358: l_end_date varchar2(240)
359: := to_char(per_ri_config_fnd_def_entity.g_config_effective_end_date,'YYYY/MM/DD');
360: cursor csr_get_product (cp_configuration_code in varchar2) IS

Line 376: fnd_User_resp_groups_api.load_row(

372: hr_utility.set_location('Entering:'|| l_proc, 10);
373:
374: if NOT (p_technical_summary_mode) then
375: -- Attach System Administrator
376: fnd_User_resp_groups_api.load_row(
377: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
378: (per_ri_config_main.g_configuration_user_name)),
379: x_resp_key => 'SYSTEM_ADMINISTRATOR',
380: x_app_short_name => 'SYSADMIN',

Line 406: fnd_User_resp_groups_api.load_row(

402: per_ri_config_utilities.write_log(p_message => l_log_message);
403:
404: -- Attach APPLICATION IMPLEMENTATION for iSetup
405: if NOT (p_technical_summary_mode) then
406: fnd_User_resp_groups_api.load_row(
407: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
408: (per_ri_config_main.g_configuration_user_name)),
409: x_resp_key => 'APPLICATION IMPLEMENTATION',
410: x_app_short_name => 'AZ',

Line 437: fnd_User_resp_groups_api.load_row(

433:
434: -- Attach FNDWF_USER_WEB_NEW for Payroll Process Workflow process
435: -- Bugfix 4219794
436: if NOT (p_technical_summary_mode) then
437: fnd_User_resp_groups_api.load_row(
438: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
439: (per_ri_config_main.g_configuration_user_name)),
440: x_resp_key => 'FNDWF_USER_WEB_NEW',
441: x_app_short_name => 'FND',

Line 467: fnd_User_resp_groups_api.load_row(

463: per_ri_config_utilities.write_log(p_message => l_log_message);
464:
465: -- Attach AZ_ISETUP
466: if NOT (p_technical_summary_mode) then
467: fnd_User_resp_groups_api.load_row(
468: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
469: (per_ri_config_main.g_configuration_user_name)),
470: x_resp_key => 'AZ_ISETUP',
471: x_app_short_name => 'AZ',

Line 497: fnd_User_resp_groups_api.load_row(

493: per_ri_config_utilities.write_log(p_message => l_log_message);
494:
495: -- Attach HRMS_RI_WORKBENCH
496: if NOT (p_technical_summary_mode) then
497: fnd_User_resp_groups_api.load_row(
498: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
499: (per_ri_config_main.g_configuration_user_name)),
500: x_resp_key => 'HRMS_RI_WORKBENCH',
501: x_app_short_name => 'PER',