DBA Data[Home] [Help]

APPS.HR_SUPERVISOR_SS dependencies on HR_PROCESS_PERSON_SS

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

1255:
1256: -- start newhire
1257: -- If its a new hire flow than the assignmentId which is coming from transaction table
1258: -- will not be valid because the person has just been created by the process_api of the
1259: -- hr_process_person_ss.process_api we can get that person Id and assignment id by making a call
1260: -- to the global parameters but we need to branch out the code.
1261: -- We also need the latest Object version Number not the one on transaction tables
1262:
1263: -- adding the session id check to avoid connection pooling problems.

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

1260: -- to the global parameters but we need to branch out the code.
1261: -- We also need the latest Object version Number not the one on transaction tables
1262:
1263: -- adding the session id check to avoid connection pooling problems.
1264: -- if (hr_process_person_ss.g_assignment_id is not null) then
1265: if (( hr_process_person_ss.g_assignment_id is not null) and
1266: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1267: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1268: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;

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

1261: -- We also need the latest Object version Number not the one on transaction tables
1262:
1263: -- adding the session id check to avoid connection pooling problems.
1264: -- if (hr_process_person_ss.g_assignment_id is not null) then
1265: if (( hr_process_person_ss.g_assignment_id is not null) and
1266: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1267: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1268: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1269: end if;

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

1262:
1263: -- adding the session id check to avoid connection pooling problems.
1264: -- if (hr_process_person_ss.g_assignment_id is not null) then
1265: if (( hr_process_person_ss.g_assignment_id is not null) and
1266: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1267: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1268: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1269: end if;
1270:

Line 1267: ln_selected_emp_id := hr_process_person_ss.g_person_id;

1263: -- adding the session id check to avoid connection pooling problems.
1264: -- if (hr_process_person_ss.g_assignment_id is not null) then
1265: if (( hr_process_person_ss.g_assignment_id is not null) and
1266: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1267: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1268: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1269: end if;
1270:
1271: -- end newhire

Line 1268: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;

1264: -- if (hr_process_person_ss.g_assignment_id is not null) then
1265: if (( hr_process_person_ss.g_assignment_id is not null) and
1266: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID)) then
1267: ln_selected_emp_id := hr_process_person_ss.g_person_id;
1268: ln_passed_assignment_id := hr_process_person_ss.g_assignment_id;
1269: end if;
1270:
1271: -- end newhire
1272:

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

2108: ,p_source => true); */
2109:
2110: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,
2111: p_item_key => p_item_key
2112: ,p_api_name => 'HR_PROCESS_PERSON_SS.PROCESS_API');
2113:
2114: end if;
2115:
2116: if p_validate = 1 THEN