DBA Data[Home] [Help]

APPS.HR_PROCESS_ASSIGNMENT_STEP_SS dependencies on HR_UTILITY

Line 124: hr_utility.set_location('Entering:'||l_proc, 5);

120: g_normal_flow boolean := false;
121:
122: begin
123:
124: hr_utility.set_location('Entering:'||l_proc, 5);
125:
126: if p_step_id is null then
127: return;
128: end if;

Line 165: hr_utility.set_location('p_flow_mode = hr_process_assignment_ss.g_new_hire_registration:'||l_proc,10);

161:
162: if p_flow_mode is not null and
163: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
164: then
165: hr_utility.set_location('p_flow_mode = hr_process_assignment_ss.g_new_hire_registration:'||l_proc,10);
166: g_registration := true;
167: end if;
168:
169: hr_pay_rate_gsp_ss.check_grade_ladder_exists(

Line 276: hr_utility.set_location('New Hire:'||l_proc, 15);

272:
273: open csr_assignment;
274: fetch csr_assignment into l_assignment_id,l_assignment_type, l_pay_basis_id;
275: if (csr_assignment%notfound and g_registration) then
276: hr_utility.set_location('New Hire:'||l_proc, 15);
277: savepoint new_hire;
278: hr_new_user_reg_ss.processNewUserTransaction
279: (WfItemType => p_item_type
280: ,WfItemKey => p_item_key

Line 284: hr_utility.set_location('Applicant Hire:'||l_proc, 20);

280: ,WfItemKey => p_item_key
281: ,PersonId => l_person_id
282: ,AssignmentId => l_assignment_id);
283: elsif (l_assignment_type = 'A') then
284: hr_utility.set_location('Applicant Hire:'||l_proc, 20);
285: g_applicant_hire := true;
286: SAVEPOINT applicant_hire;
287:
288: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,

Line 298: hr_utility.set_location('Normal Flow:'||l_proc, 25);

294: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,
295: p_item_key => p_item_key
296: ,p_api_name => 'HR_PROCESS_ASSIGNMENT_SS.PROCESS_API');
297: else
298: hr_utility.set_location('Normal Flow:'||l_proc, 25);
299: g_normal_flow := true;
300: savepoint normal_flow;
301: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,
302: p_item_key => p_item_key

Line 320: hr_utility.set_location('Datetrack Mode Update:'||l_proc, 30);

316: open last_step_change_date;
317: fetch last_step_change_date into l_last_step_change_date;
318: if last_step_change_date%found then
319: if l_effective_date>l_last_step_change_date then
320: hr_utility.set_location('Datetrack Mode Update:'||l_proc, 30);
321: l_datetrack_update_mode:='UPDATE';
322: else
323: open step_correction_date;
324: fetch step_correction_date into dummy;

Line 326: hr_utility.set_location('Datetrack Mode Correct:'||l_proc, 35);

322: else
323: open step_correction_date;
324: fetch step_correction_date into dummy;
325: if step_correction_date%FOUND then
326: hr_utility.set_location('Datetrack Mode Correct:'||l_proc, 35);
327: l_datetrack_update_mode:='CORRECTION';
328: else
329: hr_utility.set_location('Datetrack Mode Update Change Insert:'||l_proc, 40);
330: l_datetrack_update_mode:='UPDATE_CHANGE_INSERT';

Line 329: hr_utility.set_location('Datetrack Mode Update Change Insert:'||l_proc, 40);

325: if step_correction_date%FOUND then
326: hr_utility.set_location('Datetrack Mode Correct:'||l_proc, 35);
327: l_datetrack_update_mode:='CORRECTION';
328: else
329: hr_utility.set_location('Datetrack Mode Update Change Insert:'||l_proc, 40);
330: l_datetrack_update_mode:='UPDATE_CHANGE_INSERT';
331: end if;
332: close step_correction_date;
333: end if;

Line 372: hr_utility.set_location('After calling placement api:'||l_proc, 45);

368: p_page_error => p_page_error,
369: p_page_error_msg => p_page_error_msg);
370: end if;
371:
372: hr_utility.set_location('After calling placement api:'||l_proc, 45);
373:
374: if p_flow_mode is not null and
375: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
376: then

Line 620: hr_utility.set_location('Exiting:'||l_proc, 50);

616: p_login_person_id => p_login_person_id);
617: end if;
618: end if;
619:
620: hr_utility.set_location('Exiting:'||l_proc, 50);
621: EXCEPTION
622: when hr_utility.hr_error then
623: hr_message.provide_error;
624: p_page_error := hr_message.last_message_app;

Line 622: when hr_utility.hr_error then

618: end if;
619:
620: hr_utility.set_location('Exiting:'||l_proc, 50);
621: EXCEPTION
622: when hr_utility.hr_error then
623: hr_message.provide_error;
624: p_page_error := hr_message.last_message_app;
625: p_page_error_msg := hr_message.get_message_text;
626: hr_utility.set_location('Exiting: p_page_error '||p_page_error||l_proc, 50);

Line 626: hr_utility.set_location('Exiting: p_page_error '||p_page_error||l_proc, 50);

622: when hr_utility.hr_error then
623: hr_message.provide_error;
624: p_page_error := hr_message.last_message_app;
625: p_page_error_msg := hr_message.get_message_text;
626: hr_utility.set_location('Exiting: p_page_error '||p_page_error||l_proc, 50);
627: hr_utility.set_location('Exiting: p_page_error_msg '||p_page_error_msg||l_proc, 50);
628: if(g_registration) then
629: rollback to new_hire;
630: end if;

Line 627: hr_utility.set_location('Exiting: p_page_error_msg '||p_page_error_msg||l_proc, 50);

623: hr_message.provide_error;
624: p_page_error := hr_message.last_message_app;
625: p_page_error_msg := hr_message.get_message_text;
626: hr_utility.set_location('Exiting: p_page_error '||p_page_error||l_proc, 50);
627: hr_utility.set_location('Exiting: p_page_error_msg '||p_page_error_msg||l_proc, 50);
628: if(g_registration) then
629: rollback to new_hire;
630: end if;
631: if (g_applicant_hire) then

Line 679: hr_utility.set_location('Entering:'||l_proc, 5);

675: l_proc varchar2(72) := g_package||'create_step';
676:
677: begin
678:
679: hr_utility.set_location('Entering:'||l_proc, 5);
680:
681: l_object_version_number := p_object_version_number;
682: savepoint create_step;
683: hr_sp_placement_api.create_spp

Line 696: hr_utility.set_location('After calling placement api:'||l_proc, 10);

692: p_effective_end_date => l_effective_end_date,
693: p_gsp_post_process_warning => p_gsp_post_process_warning
694: );
695:
696: hr_utility.set_location('After calling placement api:'||l_proc, 10);
697:
698: hr_pay_rate_gsp_ss.check_grade_ladder_exists(
699: p_business_group_id => p_business_group_id,
700: p_effective_date => p_effective_date,

Line 714: hr_utility.set_location('Leaving:'||l_proc, 15);

710: if p_validate then
711: rollback to create_step;
712: end if;
713:
714: hr_utility.set_location('Leaving:'||l_proc, 15);
715: EXCEPTION
716: WHEN others THEN
717: rollback to create_step;
718: raise;

Line 749: hr_utility.set_location('Entering:'||l_proc, 5);

745: l_proc varchar2(72) := g_package||'update_step';
746:
747: BEGIN
748:
749: hr_utility.set_location('Entering:'||l_proc, 5);
750:
751: l_object_version_number := p_object_version_number;
752: l_effective_start_date := p_effective_start_date;
753: l_effective_end_date := p_effective_end_date;

Line 767: hr_utility.set_location('After calling placement api:'||l_proc, 10);

763: p_effective_end_date => l_effective_end_date,
764: p_gsp_post_process_warning => p_gsp_post_process_warning
765: );
766:
767: hr_utility.set_location('After calling placement api:'||l_proc, 10);
768:
769: hr_pay_rate_gsp_ss.check_grade_ladder_exists(
770: p_business_group_id => p_business_group_id,
771: p_effective_date => p_effective_date,

Line 775: hr_utility.set_location('if(lb_grd_ldr_exists_flag) then:'||l_proc,15);

771: p_effective_date => p_effective_date,
772: p_grd_ldr_exists_flag => lb_grd_ldr_exists_flag);
773:
774: if(lb_grd_ldr_exists_flag) then
775: hr_utility.set_location('if(lb_grd_ldr_exists_flag) then:'||l_proc,15);
776: hr_pay_rate_gsp_ss.get_employee_salary(
777: p_assignment_id => p_assignment_id,
778: P_effective_date => p_effective_date,
779: p_ltt_salary_data => p_ltt_salary_data);

Line 786: hr_utility.set_location('Leaving:'||l_proc, 20);

782: if p_validate then
783: rollback to update_step;
784: end if;
785:
786: hr_utility.set_location('Leaving:'||l_proc, 20);
787:
788: EXCEPTION
789: WHEN others THEN
790: rollback to update_step;

Line 820: hr_utility.set_location('Entering:'||l_proc, 5);

816: l_proc varchar2(72) := g_package||'process_api';
817:
818: begin
819:
820: hr_utility.set_location('Entering:'||l_proc, 5);
821:
822: if (p_effective_date is not null) then
823: l_effective_date:= to_date(p_effective_date,g_date_format);
824: else

Line 976: hr_utility.set_location('Leaving:'||l_proc, 10);

972: ,p_page_error => l_page_error
973: ,p_page_error_msg => l_page_error_msg);
974: end if;
975:
976: hr_utility.set_location('Leaving:'||l_proc, 10);
977:
978: end process_api;
979:
980: procedure get_transaction_data

Line 1004: hr_utility.set_location('Entering:'||l_proc, 5);

1000: psp.spinal_point_id=psps.spinal_point_id and psps.step_id=p_step_id;
1001:
1002: begin
1003:
1004: hr_utility.set_location('Entering:'||l_proc, 5);
1005:
1006: p_assignment_id:=
1007: hr_transaction_api.get_number_value
1008: (p_transaction_step_id => p_transaction_step_id

Line 1051: hr_utility.set_location('Leaving:'||l_proc, 10);

1047: hr_transaction_api.get_number_value
1048: (p_transaction_step_id => p_transaction_step_id
1049: ,p_name => 'P_BUSINESS_GROUP_ID');
1050:
1051: hr_utility.set_location('Leaving:'||l_proc, 10);
1052:
1053: end get_transaction_data;
1054:
1055: procedure delete_pay_step