DBA Data[Home] [Help]

APPS.HR_QUEST_PERFORM_WEB dependencies on HR_UTILITY

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

21:
22: --
23: BEGIN
24: --
25: hr_utility.set_location(' Entering:' || l_proc,5);
26:
27: hr_qsv_del.del(p_quest_answer_val_id => p_quest_answer_val_id
28: ,p_object_version_number=> p_object_version_number);
29:

Line 30: hr_utility.set_location(' Leaving:' || l_proc,50);

26:
27: hr_qsv_del.del(p_quest_answer_val_id => p_quest_answer_val_id
28: ,p_object_version_number=> p_object_version_number);
29:
30: hr_utility.set_location(' Leaving:' || l_proc,50);
31:
32: EXCEPTION
33: WHEN OTHERS THEN
34: hr_utility.set_location('Exception while deleting the answer values',40);

Line 34: hr_utility.set_location('Exception while deleting the answer values',40);

30: hr_utility.set_location(' Leaving:' || l_proc,50);
31:
32: EXCEPTION
33: WHEN OTHERS THEN
34: hr_utility.set_location('Exception while deleting the answer values',40);
35: RAISE;
36:
37: --
38: END Delete_Quest_Answer_Values;

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

60: from hr_quest_answer_values
61: where questionnaire_answer_id = p_questionnaire_answer_id;
62:
63: begin
64: hr_utility.set_location(' Entering:' || l_proc,5);
65:
66:
67: For R_C_Quest_Answer_Values in C_Quest_Answer_Values
68: LOOP

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

72: );
73: END LOOP;
74:
75: hr_qsa_del.del(p_questionnaire_answer_id => p_questionnaire_answer_id);
76: hr_utility.set_location(' Entering:' || l_proc,5);
77:
78: --
79: EXCEPTION
80: WHEN OTHERS THEN

Line 81: hr_utility.set_location('Exception while deleting the answer ',40);

77:
78: --
79: EXCEPTION
80: WHEN OTHERS THEN
81: hr_utility.set_location('Exception while deleting the answer ',40);
82: RAISE;
83:
84: end;
85: