DBA Data[Home] [Help]

APPS.HR_QSV_DEL dependencies on HR_UTILITY

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

52: --
53: l_proc varchar2(72) := g_package||'delete_dml';
54: --
55: Begin
56: hr_utility.set_location('Entering:'||l_proc, 5);
57: --
58: -- Delete the hr_quest_answer_values row.
59: --
60: delete from hr_quest_answer_values

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

59: --
60: delete from hr_quest_answer_values
61: where quest_answer_val_id = p_rec.quest_answer_val_id;
62: --
63: hr_utility.set_location(' Leaving:'||l_proc, 10);
64: --
65: Exception
66: When hr_api.child_integrity_violated then
67: -- Child integrity has been violated

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

107: --
108: l_proc varchar2(72) := g_package||'pre_delete';
109: --
110: Begin
111: hr_utility.set_location('Entering:'||l_proc, 5);
112: --
113: hr_utility.set_location(' Leaving:'||l_proc, 10);
114: End pre_delete;
115: --

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

109: --
110: Begin
111: hr_utility.set_location('Entering:'||l_proc, 5);
112: --
113: hr_utility.set_location(' Leaving:'||l_proc, 10);
114: End pre_delete;
115: --
116: -- ----------------------------------------------------------------------------
117: -- |-----------------------------< post_delete >------------------------------|

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

149: --
150: l_proc varchar2(72) := g_package||'post_delete';
151: --
152: Begin
153: hr_utility.set_location('Entering:'||l_proc, 5);
154: --
155: begin
156: hr_qsv_rkd.after_delete
157: (p_quest_answer_val_id => p_rec.quest_answer_val_id

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

171: ,p_hook_type => 'AD'
172: );
173: end;
174: --
175: hr_utility.set_location(' Leaving:'||l_proc, 10);
176: End post_delete;
177: --
178: -- ----------------------------------------------------------------------------
179: -- |---------------------------------< del >----------------------------------|

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

185: --
186: l_proc varchar2(72) := g_package||'del';
187: --
188: Begin
189: hr_utility.set_location('Entering:'||l_proc, 5);
190: --
191: -- We must lock the row which we need to delete.
192: --
193: hr_qsv_shd.lck

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

225: l_rec hr_qsv_shd.g_rec_type;
226: l_proc varchar2(72) := g_package||'del';
227: --
228: Begin
229: hr_utility.set_location('Entering:'||l_proc, 5);
230: --
231: -- As the delete procedure accepts a plsql record structure we do need to
232: -- convert the arguments into the record structure.
233: -- We don't need to call the supplied conversion argument routine as we

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

241: -- business process
242: --
243: del(l_rec);
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 10);
246: End del;
247: --
248: end hr_qsv_del;