DBA Data[Home] [Help]

APPS.FND_SEC_BULK dependencies on FND_USER_PKG

Line 8: ** Note: this procedure should live in fnd_user_pkg

4:
5: /*
6: ** cloneuser_attr - setup a new user with the attributes, responsibilities,
7: ** and profile option settings of an existing user.
8: ** Note: this procedure should live in fnd_user_pkg
9: */
10: PROCEDURE cloneuser_attr(p_template_user in varchar2,
11: p_new_user in varchar2,
12: description in varchar2,

Line 40: fnd_user_pkg.UpdateUser(

36: null;
37: end;
38:
39: for tu in template_user loop
40: fnd_user_pkg.UpdateUser(
41: x_user_name => upper(p_new_user),
42: x_owner => 'CUST',
43: x_end_date => tu.end_date,
44: x_description => nvl(description, tu.description),

Line 61: ** Note: this procedure should live in fnd_user_pkg

57:
58: /*
59: ** cloneuser_resp - setup a new user with the attributes, responsibilities,
60: ** and profile option settings of an existing user.
61: ** Note: this procedure should live in fnd_user_pkg
62: */
63: PROCEDURE cloneuser_resp(p_template_user in varchar2,
64: p_new_user in varchar2)
65: is

Line 114: ** Note: this procedure should live in fnd_user_pkg

110: end;
111: /*
112: ** cloneuser_prof - setup a new user with the attributes, responsibilities,
113: ** and profile option settings of an existing user.
114: ** Note: this procedure should live in fnd_user_pkg
115: */
116: PROCEDURE cloneuser_prof(p_template_user in varchar2,
117: p_new_user in varchar2)
118: is