DBA Data[Home] [Help]

APPS.HR_QSA_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: --
59: -- Delete the hr_quest_answers row.
60: --

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

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

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

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

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

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

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

151: --
152: l_proc varchar2(72) := g_package||'post_delete';
153: --
154: Begin
155: hr_utility.set_location('Entering:'||l_proc, 5);
156: --
157: begin
158: hr_qsa_rkd.after_delete
159: (p_questionnaire_answer_id => p_rec.questionnaire_answer_id

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

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

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

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

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

225: l_rec hr_qsa_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_qsa_del;