DBA Data[Home] [Help]

APPS.HR_SUPERVISOR_SS dependencies on HR_PROCESS_PERSON_SS

Line 1214: -- hr_process_person_ss.process_api we can get that person Id and assignment id by making a call

1210:
1211: -- start newhire
1212: -- If its a new hire flow than the assignmentId which is coming from transaction table
1213: -- will not be valid because the person has just been created by the process_api of the
1214: -- hr_process_person_ss.process_api we can get that person Id and assignment id by making a call
1215: -- to the global parameters but we need to branch out the code.
1216: -- We also need the latest Object version Number not the one on transaction tables
1217:
1218: -- adding the session id check to avoid connection pooling problems.

Line 1219: -- if (hr_process_person_ss.g_assignment_id is not null) then

1215: -- to the global parameters but we need to branch out the code.
1216: -- We also need the latest Object version Number not the one on transaction tables
1217:
1218: -- adding the session id check to avoid connection pooling problems.
1219: -- if (hr_process_person_ss.g_assignment_id is not null) then
1220: if (( hr_process_person_ss.g_assignment_id is not null) and
1221: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1222: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1223: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;

Line 1220: if (( hr_process_person_ss.g_assignment_id is not null) and

1216: -- We also need the latest Object version Number not the one on transaction tables
1217:
1218: -- adding the session id check to avoid connection pooling problems.
1219: -- if (hr_process_person_ss.g_assignment_id is not null) then
1220: if (( hr_process_person_ss.g_assignment_id is not null) and
1221: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1222: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1223: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1224: end if;

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

1217:
1218: -- adding the session id check to avoid connection pooling problems.
1219: -- if (hr_process_person_ss.g_assignment_id is not null) then
1220: if (( hr_process_person_ss.g_assignment_id is not null) and
1221: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1222: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1223: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1224: end if;
1225:

Line 1222: ln_selected_emp_id := hr_process_person_ss.g_person_id;

1218: -- adding the session id check to avoid connection pooling problems.
1219: -- if (hr_process_person_ss.g_assignment_id is not null) then
1220: if (( hr_process_person_ss.g_assignment_id is not null) and
1221: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1222: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1223: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1224: end if;
1225:
1226: -- end newhire

Line 1223: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;

1219: -- if (hr_process_person_ss.g_assignment_id is not null) then
1220: if (( hr_process_person_ss.g_assignment_id is not null) and
1221: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1222: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1223: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1224: end if;
1225:
1226: -- end newhire
1227:

Line 1988: ,p_api_name => 'HR_PROCESS_PERSON_SS.PROCESS_API');

1984: ,p_source => true); */
1985:
1986: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,
1987: p_item_key => p_item_key
1988: ,p_api_name => 'HR_PROCESS_PERSON_SS.PROCESS_API');
1989:
1990: end if;
1991:
1992: if p_validate = 1 THEN