DBA Data[Home] [Help]

APPS.PER_SSL_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 per_salary_survey_lines row.
59: --
60: delete from per_salary_survey_lines

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

59: --
60: delete from per_salary_survey_lines
61: where salary_survey_line_id = p_rec.salary_survey_line_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: per_ssl_rkd.after_delete
157: (p_salary_survey_line_id

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

325: ,p_hook_type => 'AD'
326: );
327: end;
328: --
329: hr_utility.set_location(' Leaving:'||l_proc, 10);
330: --
331: End post_delete;
332: --
333: -- ----------------------------------------------------------------------------

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

340: --
341: l_proc varchar2(72) := g_package||'del';
342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345: --
346: -- We must lock the row which we need to delete.
347: --
348: per_ssl_shd.lck

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

380: l_rec per_ssl_shd.g_rec_type;
381: l_proc varchar2(72) := g_package||'del';
382: --
383: Begin
384: hr_utility.set_location('Entering:'||l_proc, 5);
385: --
386: -- As the delete Procedure accepts a plsql record structure we do need to
387: -- convert the arguments into the record structure.
388: -- We don't need to call the supplied conversion argument routine as we

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

396: -- business process
397: --
398: del(l_rec);
399: --
400: hr_utility.set_location(' Leaving:'||l_proc, 10);
401: End del;
402: --
403: End per_ssl_del;