DBA Data[Home] [Help]

APPS.HR_WHO dependencies on FND_GLOBAL

Line 21: p_new_created_by := fnd_global.user_id;

17: --
18: -- Test the p_new_created_by argument
19: --
20: If (p_new_created_by is null) Then
21: p_new_created_by := fnd_global.user_id;
22: End If;
23: --
24: -- Test the p_new_creation_date argument
25: --

Line 57: p_new_last_updated_by := fnd_global.user_id;

53: -- Test the p_new_last_updated_by argument
54: --
55: If (p_new_last_updated_by is null or
56: p_new_last_updated_by = p_old_last_updated_by) Then
57: p_new_last_updated_by := fnd_global.user_id;
58: End If;
59: --
60: -- Test the p_new_last_update_login argument
61: --

Line 64: p_new_last_update_login := fnd_global.login_id;

60: -- Test the p_new_last_update_login argument
61: --
62: If (p_new_last_update_login is null or
63: p_new_last_update_login = p_old_last_update_login) Then
64: p_new_last_update_login := fnd_global.login_id;
65: End If;
66: hr_utility.set_location(' Leaving:'||l_proc, 10);
67: End who;
68: end hr_who;