DBA Data[Home] [Help]

APPS.BEN_PROCESS_USER_SS_API dependencies on FND_USER_PKG

Line 392: -- Purpose: This procedure does have user hooks and actually calls fnd_user_pkg to do inserts.

388: --
389: -- ---------------------------------------------------------------------------
390: -- ---------------------- < create_user_details> -------------------------
391: -- ---------------------------------------------------------------------------
392: -- Purpose: This procedure does have user hooks and actually calls fnd_user_pkg to do inserts.
393: -- ---------------------------------------------------------------------------
394: procedure create_user_details
395: (p_validate in boolean default false
396: ,p_user_name in varchar2

Line 462: the global variables will be copied to the parameter for fnd_user_pkg.

458: parameters as null) on pressing next
459: button,putting logic in the hooks then customer can pass respo-
460: nsibility_id and responsibility_application_id via global variables
461: defined in ben_process_user_utility package header.The value of
462: the global variables will be copied to the parameter for fnd_user_pkg.
463: createuserid and fnd_user_resp_groups_api and fnd_resp_functions api.
464:
465: Also we have taken care of the fact that username,password,
466: start_date,end_date,last_logon_date,password_date,password_

Line 563: l_user_id := fnd_user_pkg.createuserid

559: --
560: end;
561: --
562:
563: l_user_id := fnd_user_pkg.createuserid
564: (x_user_name => nvl(ben_process_user_utility.g_fnd_user_record.user_name,p_user_name)
565: ,x_owner => p_owner
566: ,x_unencrypted_password => nvl(ben_process_user_utility.g_fnd_user_record.password,p_unencrypted_password)
567: ,x_start_date => nvl(ben_process_user_utility.g_fnd_user_record.start_date,p_start_date)