DBA Data[Home] [Help]

APPS.HR_PAY_RATE_SS dependencies on HR_PROCESS_PERSON_SS

Line 4133: IF (( hr_process_person_ss.g_assignment_id is not null) and

4129: -- Bug 2547283: need to update person info and asg info.
4130: hr_new_user_reg_ss.process_selected_transaction
4131: (p_item_type => p_item_type,
4132: p_item_key => p_item_key);
4133: IF (( hr_process_person_ss.g_assignment_id is not null) and
4134: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
4135: THEN
4136: hr_utility.set_location(l_proc,15);
4137: -- Set the Assignment Id to the one just created, don't use the

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

4130: hr_new_user_reg_ss.process_selected_transaction
4131: (p_item_type => p_item_type,
4132: p_item_key => p_item_key);
4133: IF (( hr_process_person_ss.g_assignment_id is not null) and
4134: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
4135: THEN
4136: hr_utility.set_location(l_proc,15);
4137: -- Set the Assignment Id to the one just created, don't use the
4138: -- transaction table.

Line 4139: ltt_salary_data(1).assignment_id := hr_process_person_ss.g_assignment_id;

4135: THEN
4136: hr_utility.set_location(l_proc,15);
4137: -- Set the Assignment Id to the one just created, don't use the
4138: -- transaction table.
4139: ltt_salary_data(1).assignment_id := hr_process_person_ss.g_assignment_id;
4140: END IF;
4141: end if;
4142:
4143:

Line 6056: -- hr_process_person_ss.process_api we can get that person Id and

6052: -- start registration
6053: -- If it's a new user registration flow than the assignmentId which is
6054: -- coming from transaction table will not be valid because the person
6055: -- has just been created by the process_api of the
6056: -- hr_process_person_ss.process_api we can get that person Id and
6057: -- assignment id by making a call to the global parameters but we need
6058: -- to branch out the code.
6059:
6060: -- Adding the session id check to avoid connection pooling problems.

Line 6061: IF (( hr_process_person_ss.g_assignment_id is not null) and

6057: -- assignment id by making a call to the global parameters but we need
6058: -- to branch out the code.
6059:
6060: -- Adding the session id check to avoid connection pooling problems.
6061: IF (( hr_process_person_ss.g_assignment_id is not null) and
6062: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
6063: THEN
6064: hr_utility.set_location(l_proc,20);
6065: -- Set the Assignment Id to the one just created, don't use the

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

6058: -- to branch out the code.
6059:
6060: -- Adding the session id check to avoid connection pooling problems.
6061: IF (( hr_process_person_ss.g_assignment_id is not null) and
6062: (hr_process_person_ss.g_session_id= ICX_SEC.G_SESSION_ID))
6063: THEN
6064: hr_utility.set_location(l_proc,20);
6065: -- Set the Assignment Id to the one just created, don't use the
6066: -- transaction table.

Line 6067: ltt_salary_data(1).assignment_id := hr_process_person_ss.g_assignment_id;

6063: THEN
6064: hr_utility.set_location(l_proc,20);
6065: -- Set the Assignment Id to the one just created, don't use the
6066: -- transaction table.
6067: ltt_salary_data(1).assignment_id := hr_process_person_ss.g_assignment_id;
6068: END IF;
6069: -- 04/12/02 Salary Basis Enhancement Ends
6070:
6071: -- 04/25/02 Salary Basis Enhancement Change Begins