DBA Data[Home] [Help]

APPS.FF_FFN_DEL dependencies on HR_UTILITY

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

88: --
89: l_proc varchar2(72) := g_package||'delete_dml';
90: --
91: Begin
92: hr_utility.set_location('Entering:'||l_proc, 5);
93: --
94: ff_ffn_shd.g_api_dml := true; -- Set the api dml status
95: --
96: -- Delete the ff_functions row.

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

99: where function_id = p_rec.function_id;
100: --
101: ff_ffn_shd.g_api_dml := false; -- Unset the api dml status
102: --
103: hr_utility.set_location(' Leaving:'||l_proc, 10);
104: --
105: Exception
106: When hr_api.child_integrity_violated then
107: -- Child integrity has been violated

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

149: --
150: l_proc varchar2(72) := g_package||'pre_delete';
151: --
152: Begin
153: hr_utility.set_location('Entering:'||l_proc, 5);
154: --
155: hr_utility.set_location(' Leaving:'||l_proc, 10);
156: End pre_delete;
157: --

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

151: --
152: Begin
153: hr_utility.set_location('Entering:'||l_proc, 5);
154: --
155: hr_utility.set_location(' Leaving:'||l_proc, 10);
156: End pre_delete;
157: --
158: -- ----------------------------------------------------------------------------
159: -- |-----------------------------< post_delete >------------------------------|

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

191: --
192: l_proc varchar2(72) := g_package||'post_delete';
193: --
194: Begin
195: hr_utility.set_location('Entering:'||l_proc, 5);
196: begin
197: --
198: -- Delete ownerships if applicable
199: delete_app_ownerships

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

232: ,p_hook_type => 'AD');
233: --
234: end;
235: --
236: hr_utility.set_location(' Leaving:'||l_proc, 10);
237: End post_delete;
238: --
239: -- ----------------------------------------------------------------------------
240: -- |---------------------------------< del >----------------------------------|

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

260: where function_id = p_rec.function_id
261: for update nowait;
262: --
263: Begin
264: hr_utility.set_location('Entering:'||l_proc, 5);
265:
266: --
267: -- Cascade delete the child entities for FF_FUNCTION_CONTEXT_USAGES
268: --

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

325: l_rec ff_ffn_shd.g_rec_type;
326: l_proc varchar2(72) := g_package||'del';
327: --
328: Begin
329: hr_utility.set_location('Entering:'||l_proc, 5);
330: --
331: -- As the delete procedure accepts a plsql record structure we do need to
332: -- convert the arguments into the record structure.
333: -- We don't need to call the supplied conversion argument routine as we

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

341: -- business process
342: --
343: ff_ffn_del.del(l_rec);
344: --
345: hr_utility.set_location(' Leaving:'||l_proc, 10);
346: End del;
347: --
348: end ff_ffn_del;