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: hr_assignment_common_save_web.get_step
127: (p_item_type => p_item_type
128: ,p_item_key => p_item_key

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

156:
157: if p_flow_mode is not null and
158: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
159: then
160: hr_utility.set_location('p_flow_mode = hr_process_assignment_ss.g_new_hire_registration:'||l_proc,10);
161: g_registration := true;
162: end if;
163:
164: hr_pay_rate_gsp_ss.check_grade_ladder_exists(

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

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

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

275: ,WfItemKey => p_item_key
276: ,PersonId => l_person_id
277: ,AssignmentId => l_assignment_id);
278: elsif (l_assignment_type = 'A') then
279: hr_utility.set_location('Applicant Hire:'||l_proc, 20);
280: g_applicant_hire := true;
281: SAVEPOINT applicant_hire;
282:
283: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,

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

289: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,
290: p_item_key => p_item_key
291: ,p_api_name => 'HR_PROCESS_ASSIGNMENT_SS.PROCESS_API');
292: else
293: hr_utility.set_location('Normal Flow:'||l_proc, 25);
294: g_normal_flow := true;
295: savepoint normal_flow;
296: hr_new_user_reg_ss.process_selected_transaction(p_item_type => p_item_type,
297: p_item_key => p_item_key

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

311: open last_step_change_date;
312: fetch last_step_change_date into l_last_step_change_date;
313: if last_step_change_date%found then
314: if l_effective_date>l_last_step_change_date then
315: hr_utility.set_location('Datetrack Mode Update:'||l_proc, 30);
316: l_datetrack_update_mode:='UPDATE';
317: else
318: open step_correction_date;
319: fetch step_correction_date into dummy;

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

317: else
318: open step_correction_date;
319: fetch step_correction_date into dummy;
320: if step_correction_date%FOUND then
321: hr_utility.set_location('Datetrack Mode Correct:'||l_proc, 35);
322: l_datetrack_update_mode:='CORRECTION';
323: else
324: hr_utility.set_location('Datetrack Mode Update Change Insert:'||l_proc, 40);
325: l_datetrack_update_mode:='UPDATE_CHANGE_INSERT';

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

320: if step_correction_date%FOUND then
321: hr_utility.set_location('Datetrack Mode Correct:'||l_proc, 35);
322: l_datetrack_update_mode:='CORRECTION';
323: else
324: hr_utility.set_location('Datetrack Mode Update Change Insert:'||l_proc, 40);
325: l_datetrack_update_mode:='UPDATE_CHANGE_INSERT';
326: end if;
327: close step_correction_date;
328: end if;

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

363: p_page_error => p_page_error,
364: p_page_error_msg => p_page_error_msg);
365: end if;
366:
367: hr_utility.set_location('After calling placement api:'||l_proc, 45);
368:
369: if p_flow_mode is not null and
370: p_flow_mode = hr_process_assignment_ss.g_new_hire_registration
371: then

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

611: p_login_person_id => p_login_person_id);
612: end if;
613: end if;
614:
615: hr_utility.set_location('Exiting:'||l_proc, 50);
616: EXCEPTION
617: when hr_utility.hr_error then
618: hr_message.provide_error;
619: p_page_error := hr_message.last_message_app;

Line 617: when hr_utility.hr_error then

613: end if;
614:
615: hr_utility.set_location('Exiting:'||l_proc, 50);
616: EXCEPTION
617: when hr_utility.hr_error then
618: hr_message.provide_error;
619: p_page_error := hr_message.last_message_app;
620: p_page_error_msg := hr_message.get_message_text;
621: hr_utility.set_location('Exiting: p_page_error '||p_page_error||l_proc, 50);

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

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

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

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

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

670: l_proc varchar2(72) := g_package||'create_step';
671:
672: begin
673:
674: hr_utility.set_location('Entering:'||l_proc, 5);
675:
676: l_object_version_number := p_object_version_number;
677: savepoint create_step;
678: hr_sp_placement_api.create_spp

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

687: p_effective_end_date => l_effective_end_date,
688: p_gsp_post_process_warning => p_gsp_post_process_warning
689: );
690:
691: hr_utility.set_location('After calling placement api:'||l_proc, 10);
692:
693: hr_pay_rate_gsp_ss.check_grade_ladder_exists(
694: p_business_group_id => p_business_group_id,
695: p_effective_date => p_effective_date,

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

705: if p_validate then
706: rollback to create_step;
707: end if;
708:
709: hr_utility.set_location('Leaving:'||l_proc, 15);
710: EXCEPTION
711: WHEN others THEN
712: rollback to create_step;
713: raise;

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

740: l_proc varchar2(72) := g_package||'update_step';
741:
742: BEGIN
743:
744: hr_utility.set_location('Entering:'||l_proc, 5);
745:
746: l_object_version_number := p_object_version_number;
747: l_effective_start_date := p_effective_start_date;
748: l_effective_end_date := p_effective_end_date;

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

758: p_effective_end_date => l_effective_end_date,
759: p_gsp_post_process_warning => p_gsp_post_process_warning
760: );
761:
762: hr_utility.set_location('After calling placement api:'||l_proc, 10);
763:
764: hr_pay_rate_gsp_ss.check_grade_ladder_exists(
765: p_business_group_id => p_business_group_id,
766: p_effective_date => p_effective_date,

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

766: p_effective_date => p_effective_date,
767: p_grd_ldr_exists_flag => lb_grd_ldr_exists_flag);
768:
769: if(lb_grd_ldr_exists_flag) then
770: hr_utility.set_location('if(lb_grd_ldr_exists_flag) then:'||l_proc,15);
771: hr_pay_rate_gsp_ss.get_employee_salary(
772: p_assignment_id => p_assignment_id,
773: P_effective_date => p_effective_date,
774: p_ltt_salary_data => p_ltt_salary_data);

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

777: if p_validate then
778: rollback to update_step;
779: end if;
780:
781: hr_utility.set_location('Leaving:'||l_proc, 20);
782:
783: EXCEPTION
784: WHEN others THEN
785: rollback to update_step;

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

811: l_proc varchar2(72) := g_package||'process_api';
812:
813: begin
814:
815: hr_utility.set_location('Entering:'||l_proc, 5);
816:
817: if (p_effective_date is not null) then
818: l_effective_date:= to_date(p_effective_date,g_date_format);
819: else

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

967: ,p_page_error => l_page_error
968: ,p_page_error_msg => l_page_error_msg);
969: end if;
970:
971: hr_utility.set_location('Leaving:'||l_proc, 10);
972:
973: end process_api;
974:
975: procedure get_transaction_data

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

995: psp.spinal_point_id=psps.spinal_point_id and psps.step_id=p_step_id;
996:
997: begin
998:
999: hr_utility.set_location('Entering:'||l_proc, 5);
1000:
1001: p_assignment_id:=
1002: hr_transaction_api.get_number_value
1003: (p_transaction_step_id => p_transaction_step_id

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

1042: hr_transaction_api.get_number_value
1043: (p_transaction_step_id => p_transaction_step_id
1044: ,p_name => 'P_BUSINESS_GROUP_ID');
1045:
1046: hr_utility.set_location('Leaving:'||l_proc, 10);
1047:
1048: end get_transaction_data;
1049:
1050: procedure delete_pay_step