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: l_apps_sso varchar2(20);
33: l_profile_defined boolean;
34: l_password varchar2(20) := 'welcome';

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: l_apps_sso varchar2(20);
33: l_profile_defined boolean;
34: l_password varchar2(20) := 'welcome';
35:

Line 56: fnd_user_pkg.createuser(

52:
53: if (l_apps_sso <> 'PORTAL') AND (l_apps_sso <> 'SSWA') then
54: l_password := 'welcome1';
55: end if;
56: fnd_user_pkg.createuser(
57: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
58: (per_ri_config_main.g_configuration_user_name)),
59:
60: x_start_date => per_ri_config_fnd_def_entity.g_config_effective_date,

Line 367: l_user_id fnd_user.user_id%type;

363: l_resp_count number(10) := 0;
364: l_proc varchar2(72) := g_package ||'attach_default_responsibility';
365: l_log_message varchar2(360);
366: l_error_message varchar2(360);
367: l_user_id fnd_user.user_id%type;
368: l_start_date varchar2(240) := to_char(per_ri_config_fnd_def_entity.g_config_effective_date,'YYYY/MM/DD');
369: l_end_date varchar2(240)
370: := to_char(per_ri_config_fnd_def_entity.g_config_effective_end_date,'YYYY/MM/DD');
371: cursor csr_get_product (cp_configuration_code in varchar2) IS

Line 387: fnd_User_resp_groups_api.load_row(

383: hr_utility.set_location('Entering:'|| l_proc, 10);
384:
385: if NOT (p_technical_summary_mode) then
386: -- Attach System Administrator
387: fnd_User_resp_groups_api.load_row(
388: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
389: (per_ri_config_main.g_configuration_user_name)),
390: x_resp_key => 'SYSTEM_ADMINISTRATOR',
391: x_app_short_name => 'SYSADMIN',

Line 417: fnd_User_resp_groups_api.load_row(

413: per_ri_config_utilities.write_log(p_message => l_log_message);
414:
415: -- Attach APPLICATION IMPLEMENTATION for iSetup
416: if NOT (p_technical_summary_mode) then
417: fnd_User_resp_groups_api.load_row(
418: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
419: (per_ri_config_main.g_configuration_user_name)),
420: x_resp_key => 'APPLICATION IMPLEMENTATION',
421: x_app_short_name => 'AZ',

Line 448: fnd_User_resp_groups_api.load_row(

444:
445: -- Attach FNDWF_USER_WEB_NEW for Payroll Process Workflow process
446: -- Bugfix 4219794
447: if NOT (p_technical_summary_mode) then
448: fnd_User_resp_groups_api.load_row(
449: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
450: (per_ri_config_main.g_configuration_user_name)),
451: x_resp_key => 'FNDWF_USER_WEB_NEW',
452: x_app_short_name => 'FND',

Line 478: fnd_User_resp_groups_api.load_row(

474: per_ri_config_utilities.write_log(p_message => l_log_message);
475:
476: -- Attach AZ_ISETUP
477: if NOT (p_technical_summary_mode) then
478: fnd_User_resp_groups_api.load_row(
479: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
480: (per_ri_config_main.g_configuration_user_name)),
481: x_resp_key => 'AZ_ISETUP',
482: x_app_short_name => 'AZ',

Line 508: fnd_User_resp_groups_api.load_row(

504: per_ri_config_utilities.write_log(p_message => l_log_message);
505:
506: -- Attach HRMS_RI_WORKBENCH
507: if NOT (p_technical_summary_mode) then
508: fnd_User_resp_groups_api.load_row(
509: x_user_name => upper(per_ri_config_utilities.return_config_entity_name_pre
510: (per_ri_config_main.g_configuration_user_name)),
511: x_resp_key => 'HRMS_RI_WORKBENCH',
512: x_app_short_name => 'PER',