DBA Data[Home] [Help]

APPS.HR_PROCESS_ASSIGNMENT_SS dependencies on ICX_SEC

Line 5896: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))

5892: -- We also need the latest Object version Number not the one on transaction tbl
5893:
5894: -- adding the session id check to avoid connection pooling problems.
5895: if (( hr_process_person_ss.g_assignment_id is not null) and
5896: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
5897: then
5898: hr_utility.set_location('session id is ICX_SEC.G_SESSION_ID:'||l_proc,15);
5899: l_assignment_rec.person_id := hr_process_person_ss.g_person_id;
5900: l_assignment_rec.assignment_id := hr_process_person_ss.g_assignment_id;

Line 5898: hr_utility.set_location('session id is ICX_SEC.G_SESSION_ID:'||l_proc,15);

5894: -- adding the session id check to avoid connection pooling problems.
5895: if (( hr_process_person_ss.g_assignment_id is not null) and
5896: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
5897: then
5898: hr_utility.set_location('session id is ICX_SEC.G_SESSION_ID:'||l_proc,15);
5899: l_assignment_rec.person_id := hr_process_person_ss.g_person_id;
5900: l_assignment_rec.assignment_id := hr_process_person_ss.g_assignment_id;
5901: l_assignment_rec.object_version_number:=hr_process_person_ss.g_asg_object_version_number;
5902: -- Hard code ovn to 1 for the new user registration process

Line 5915: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then

5911: -- check if we are updating applicant, if yes we need to get the
5912: -- latest object version
5913: -- number of the applicant who has became employee in BD page
5914: if (hr_process_person_ss.g_is_applicant and
5915: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
5916: hr_utility.set_location('Applicaant ICX_SEC.G_SESSION_ID:'||l_proc,20);
5917: open asg_applicant_rec(l_assignment_rec.assignment_id, l_effective_date);
5918: fetch asg_applicant_rec into l_assignment_rec.object_version_number
5919: ,l_appl_assignment_type

Line 5916: hr_utility.set_location('Applicaant ICX_SEC.G_SESSION_ID:'||l_proc,20);

5912: -- latest object version
5913: -- number of the applicant who has became employee in BD page
5914: if (hr_process_person_ss.g_is_applicant and
5915: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
5916: hr_utility.set_location('Applicaant ICX_SEC.G_SESSION_ID:'||l_proc,20);
5917: open asg_applicant_rec(l_assignment_rec.assignment_id, l_effective_date);
5918: fetch asg_applicant_rec into l_assignment_rec.object_version_number
5919: ,l_appl_assignment_type
5920: ,l_assignment_rec.assignment_status_type_id;