DBA Data[Home] [Help]

APPS.HR_PROCESS_EIT_SS dependencies on HR_PROCESS_PERSON_SS

Line 681: -- created by the process_api of the hr_process_person_ss.process_api.

677:
678: -- start registration
679: -- If its a new user registration flow then the assignmentId which is coming
680: -- from transaction table will not be valid because the person has just been
681: -- created by the process_api of the hr_process_person_ss.process_api.
682: -- We can get that person Id and assignment id by making a call
683: -- to the global parameters but we need to branch out the code.
684: -- We also need the latest Object version Number not the one on transaction tbl
685:

Line 687: if (( hr_process_person_ss.g_assignment_id is not null

683: -- to the global parameters but we need to branch out the code.
684: -- We also need the latest Object version Number not the one on transaction tbl
685:
686: -- adding the session id check to avoid connection pooling problems.
687: if (( hr_process_person_ss.g_assignment_id is not null
688: or hr_process_person_ss.g_person_id is not null) and
689: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
690: then
691: hr_utility.trace('AsgId<>NULL or PID<>NULL AND SESSIONID=ICX_SEC.G_SESSION_ID:'||l_proc);

Line 688: or hr_process_person_ss.g_person_id is not null) and

684: -- We also need the latest Object version Number not the one on transaction tbl
685:
686: -- adding the session id check to avoid connection pooling problems.
687: if (( hr_process_person_ss.g_assignment_id is not null
688: or hr_process_person_ss.g_person_id is not null) and
689: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
690: then
691: hr_utility.trace('AsgId<>NULL or PID<>NULL AND SESSIONID=ICX_SEC.G_SESSION_ID:'||l_proc);
692: if p_eit_type = 'PERSON' then

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

685:
686: -- adding the session id check to avoid connection pooling problems.
687: if (( hr_process_person_ss.g_assignment_id is not null
688: or hr_process_person_ss.g_person_id is not null) and
689: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
690: then
691: hr_utility.trace('AsgId<>NULL or PID<>NULL AND SESSIONID=ICX_SEC.G_SESSION_ID:'||l_proc);
692: if p_eit_type = 'PERSON' then
693: p_eit_type_id := hr_process_person_ss.g_person_id;

Line 693: p_eit_type_id := hr_process_person_ss.g_person_id;

689: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
690: then
691: hr_utility.trace('AsgId<>NULL or PID<>NULL AND SESSIONID=ICX_SEC.G_SESSION_ID:'||l_proc);
692: if p_eit_type = 'PERSON' then
693: p_eit_type_id := hr_process_person_ss.g_person_id;
694: else
695: p_eit_type_id := hr_process_person_ss.g_assignment_id;
696: end if;
697: p_person_id := hr_process_person_ss.g_person_id;

Line 695: p_eit_type_id := hr_process_person_ss.g_assignment_id;

691: hr_utility.trace('AsgId<>NULL or PID<>NULL AND SESSIONID=ICX_SEC.G_SESSION_ID:'||l_proc);
692: if p_eit_type = 'PERSON' then
693: p_eit_type_id := hr_process_person_ss.g_person_id;
694: else
695: p_eit_type_id := hr_process_person_ss.g_assignment_id;
696: end if;
697: p_person_id := hr_process_person_ss.g_person_id;
698: end if;
699:

Line 697: p_person_id := hr_process_person_ss.g_person_id;

693: p_eit_type_id := hr_process_person_ss.g_person_id;
694: else
695: p_eit_type_id := hr_process_person_ss.g_assignment_id;
696: end if;
697: p_person_id := hr_process_person_ss.g_person_id;
698: end if;
699:
700: -- end registration
701: --