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 167: WHEN hr_utility.hr_error THEN

163: p_ltt_salary_data(1).annual_equivalent := ln_annual_salary;
164: p_ltt_salary_data(1).current_salary := ln_proposed_salary;
165:
166: EXCEPTION
167: WHEN hr_utility.hr_error THEN
168: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
169: hr_utility.trace('p_error_msg_text');
170: WHEN OTHERS THEN
171: hr_utility.trace(

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

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

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

165:
166: EXCEPTION
167: WHEN hr_utility.hr_error THEN
168: hr_utility.trace('there is a hr_utility.hr_error in get_employee_salary');
169: hr_utility.trace('p_error_msg_text');
170: WHEN OTHERS THEN
171: hr_utility.trace(
172: 'there is an OTHERS Exception in process_salary_java_gsp');
173: hr_utility.trace('p_error_msg_text' || SQLERRM);

Line 171: hr_utility.trace(

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

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

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

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

219:
220: BEGIN
221: -- bug # 1641590
222:
223: hr_utility.trace('Start save_gsp_txn');
224:
225: lv_review_url := gv_package_name||'.salary_review';
226: lv_api_name := gv_package_name||'.PROCESS_API' ;
227:

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

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

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

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

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

536:
537: fetch get_transaction_step_id into ln_transaction_step_id;
538: close get_transaction_step_id;
539:
540: hr_utility.trace(' existing ln_transaction_step_id ' || ln_transaction_step_id);
541:
542: hr_transaction_ss.save_transaction_step(
543: p_Item_Type => p_item_type
544: ,p_Item_Key => p_item_key

Line 560: hr_utility.trace(message);

556: EXCEPTION
557: WHEN OTHERS THEN
558: message := 'Exception in maintain_txn_java_for_gsp' || SQLERRM;
559:
560: hr_utility.trace(message);
561: raise;
562: end save_gsp_txn;
563:
564: procedure create_pay_txn

Line 742: hr_utility.trace(message);

738: EXCEPTION
739: WHEN OTHERS THEN
740: message := 'Exception in create_pay_txn' || SQLERRM;
741:
742: hr_utility.trace(message);
743: raise;
744: end create_pay_txn;
745: --
746: --

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

756: l_proc varchar2(72) := 'check_grade_ladder_exists';
757: --
758: Begin
759: --
760: hr_utility.set_location('Entering:'||l_proc, 5);
761: --
762: pqh_employee_salary.check_grade_ladder_exists
763: (p_business_group_id => p_business_group_id,
764: p_effective_date => p_effective_date,

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

765: p_grd_ldr_exists_flag => l_status);
766:
767: --
768: p_grd_ldr_exists_flag:= l_status;
769: hr_utility.set_location('Leaving:'||l_proc, 10);
770: --
771: --
772: Exception When others then
773: --

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

770: --
771: --
772: Exception When others then
773: --
774: hr_utility.set_location('Exception:'||l_proc, 200);
775: raise;
776: --
777: End check_grade_ladder_exists;
778: