DBA Data[Home] [Help]

APPS.HR_PAY_RATE_GSP_SS dependencies on HR_UTILITY

Line 68: WHEN hr_utility.hr_error THEN

64:
65: p_ltt_salary_data(1).salary_effective_date := l_sal_effective_date;
66:
67: EXCEPTION
68: WHEN hr_utility.hr_error THEN
69: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
70: hr_utility.trace('p_error_msg_text');
71: WHEN OTHERS THEN
72: hr_utility.trace(

Line 69: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');

65: p_ltt_salary_data(1).salary_effective_date := l_sal_effective_date;
66:
67: EXCEPTION
68: WHEN hr_utility.hr_error THEN
69: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
70: hr_utility.trace('p_error_msg_text');
71: WHEN OTHERS THEN
72: hr_utility.trace(
73: 'there is an OTHERS Exception in process_salary_java_gsp');

Line 70: hr_utility.trace('p_error_msg_text');

66:
67: EXCEPTION
68: WHEN hr_utility.hr_error THEN
69: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
70: hr_utility.trace('p_error_msg_text');
71: WHEN OTHERS THEN
72: hr_utility.trace(
73: 'there is an OTHERS Exception in process_salary_java_gsp');
74: hr_utility.trace('p_error_msg_text' || SQLERRM);

Line 72: hr_utility.trace(

68: WHEN hr_utility.hr_error THEN
69: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
70: hr_utility.trace('p_error_msg_text');
71: WHEN OTHERS THEN
72: hr_utility.trace(
73: 'there is an OTHERS Exception in process_salary_java_gsp');
74: hr_utility.trace('p_error_msg_text' || SQLERRM);
75: end get_employee_salary;
76:

Line 74: hr_utility.trace('p_error_msg_text' || SQLERRM);

70: hr_utility.trace('p_error_msg_text');
71: WHEN OTHERS THEN
72: hr_utility.trace(
73: 'there is an OTHERS Exception in process_salary_java_gsp');
74: hr_utility.trace('p_error_msg_text' || SQLERRM);
75: end get_employee_salary;
76:
77: -- get the current salary , called before updating the assignment
78: procedure get_employee_current_salary

Line 171: WHEN hr_utility.hr_error THEN

167: p_ltt_salary_data(1).annual_equivalent := ln_annual_salary;
168: p_ltt_salary_data(1).current_salary := ln_proposed_salary;
169:
170: EXCEPTION
171: WHEN hr_utility.hr_error THEN
172: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
173: hr_utility.trace('p_error_msg_text');
174: WHEN OTHERS THEN
175: hr_utility.trace(

Line 172: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');

168: p_ltt_salary_data(1).current_salary := ln_proposed_salary;
169:
170: EXCEPTION
171: WHEN hr_utility.hr_error THEN
172: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
173: hr_utility.trace('p_error_msg_text');
174: WHEN OTHERS THEN
175: hr_utility.trace(
176: 'there is an OTHERS Exception in process_salary_java_gsp');

Line 173: hr_utility.trace('p_error_msg_text');

169:
170: EXCEPTION
171: WHEN hr_utility.hr_error THEN
172: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
173: hr_utility.trace('p_error_msg_text');
174: WHEN OTHERS THEN
175: hr_utility.trace(
176: 'there is an OTHERS Exception in process_salary_java_gsp');
177: hr_utility.trace('p_error_msg_text' || SQLERRM);

Line 175: hr_utility.trace(

171: WHEN hr_utility.hr_error THEN
172: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
173: hr_utility.trace('p_error_msg_text');
174: WHEN OTHERS THEN
175: hr_utility.trace(
176: 'there is an OTHERS Exception in process_salary_java_gsp');
177: hr_utility.trace('p_error_msg_text' || SQLERRM);
178: end get_employee_current_salary;
179:

Line 177: hr_utility.trace('p_error_msg_text' || SQLERRM);

173: hr_utility.trace('p_error_msg_text');
174: WHEN OTHERS THEN
175: hr_utility.trace(
176: 'there is an OTHERS Exception in process_salary_java_gsp');
177: hr_utility.trace('p_error_msg_text' || SQLERRM);
178: end get_employee_current_salary;
179:
180: -- save the GSP Txn , which will be called hr_process_assignment_api
181: procedure save_gsp_txn

Line 227: hr_utility.trace('Start save_gsp_txn');

223:
224: BEGIN
225: -- bug # 1641590
226:
227: hr_utility.trace('Start save_gsp_txn');
228:
229: lv_review_url := gv_package_name||'.salary_review';
230: lv_api_name := gv_package_name||'.PROCESS_API' ;
231:

Line 236: hr_utility.trace('Creator Person Id ' || ln_creator_person_id);

232: ln_creator_person_id := wf_engine.GetItemAttrNumber(p_item_type,
233: p_item_key,
234: 'CREATOR_PERSON_ID');
235:
236: hr_utility.trace('Creator Person Id ' || ln_creator_person_id);
237:
238: -- prepare salary proposal data to be stored in transaction table
239: li_count := 1 ;
240:

Line 534: hr_utility.trace('Create Transaction and Transaction Step ');

530: gtt_trans_steps(li_count).param_data_type := 'NUMBER' ;
531:
532:
533: -- save the txn data
534: hr_utility.trace('Create Transaction and Transaction Step ');
535:
536: open get_transaction_step_id
537: (c_item_type => p_item_type
538: ,c_item_key => p_item_key

Line 544: hr_utility.trace(' existing ln_transaction_step_id ' || ln_transaction_step_id);

540:
541: fetch get_transaction_step_id into ln_transaction_step_id;
542: close get_transaction_step_id;
543:
544: hr_utility.trace(' existing ln_transaction_step_id ' || ln_transaction_step_id);
545:
546: hr_transaction_ss.save_transaction_step(
547: p_Item_Type => p_item_type
548: ,p_Item_Key => p_item_key

Line 564: hr_utility.trace(message);

560: EXCEPTION
561: WHEN OTHERS THEN
562: message := 'Exception in maintain_txn_java_for_gsp' || SQLERRM;
563:
564: hr_utility.trace(message);
565: raise;
566: end save_gsp_txn;
567:
568: procedure create_pay_txn

Line 746: hr_utility.trace(message);

742: EXCEPTION
743: WHEN OTHERS THEN
744: message := 'Exception in create_pay_txn' || SQLERRM;
745:
746: hr_utility.trace(message);
747: raise;
748: end create_pay_txn;
749: --
750: --

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

760: l_proc varchar2(72) := 'check_grade_ladder_exists';
761: --
762: Begin
763: --
764: hr_utility.set_location('Entering:'||l_proc, 5);
765: --
766: pqh_employee_salary.check_grade_ladder_exists
767: (p_business_group_id => p_business_group_id,
768: p_effective_date => p_effective_date,

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

769: p_grd_ldr_exists_flag => l_status);
770:
771: --
772: p_grd_ldr_exists_flag:= l_status;
773: hr_utility.set_location('Leaving:'||l_proc, 10);
774: --
775: --
776: Exception When others then
777: --

Line 778: hr_utility.set_location('Exception:'||l_proc, 200);

774: --
775: --
776: Exception When others then
777: --
778: hr_utility.set_location('Exception:'||l_proc, 200);
779: raise;
780: --
781: End check_grade_ladder_exists;
782: