DBA Data[Home] [Help]

APPS.PER_JBR_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: per_jbr_shd.g_api_dml := true; -- Set the api dml status
59: --
60: -- Delete the per_job_requirements row.

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

63: where job_requirement_id = p_rec.job_requirement_id;
64: --
65: per_jbr_shd.g_api_dml := false; -- Unset the api dml status
66: --
67: hr_utility.set_location(' Leaving:'||l_proc, 10);
68: --
69: Exception
70: When hr_api.child_integrity_violated then
71: -- Child integrity has been violated

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

113: --
114: l_proc varchar2(72) := g_package||'pre_delete';
115: --
116: Begin
117: hr_utility.set_location('Entering:'||l_proc, 5);
118: --
119: hr_utility.set_location(' Leaving:'||l_proc, 10);
120: End pre_delete;
121: --

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

115: --
116: Begin
117: hr_utility.set_location('Entering:'||l_proc, 5);
118: --
119: hr_utility.set_location(' Leaving:'||l_proc, 10);
120: End pre_delete;
121: --
122: -- ----------------------------------------------------------------------------
123: -- |-----------------------------< post_delete >------------------------------|

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

155: --
156: l_proc varchar2(72) := g_package||'post_delete';
157: --
158: Begin
159: hr_utility.set_location('Entering:'||l_proc, 5);
160: --
161: -- Start of API User Hook for post_delete.
162: --
163: begin

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

207: );
208: end;
209: -- End of API User Hook for post_delete.
210: --
211: hr_utility.set_location(' Leaving:'||l_proc, 10);
212: End post_delete;
213: --
214: -- ----------------------------------------------------------------------------
215: -- |---------------------------------< del >----------------------------------|

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

222: --
223: l_proc varchar2(72) := g_package||'del';
224: --
225: Begin
226: hr_utility.set_location('Entering:'||l_proc, 5);
227: --
228: -- Determine if the business process is to be validated.
229: --
230: If p_validate then

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

263: If p_validate then
264: Raise HR_Api.Validate_Enabled;
265: End If;
266: --
267: hr_utility.set_location(' Leaving:'||l_proc, 10);
268: Exception
269: When HR_Api.Validate_Enabled Then
270: --
271: -- As the Validate_Enabled exception has been raised

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

287: l_rec per_jbr_shd.g_rec_type;
288: l_proc varchar2(72) := g_package||'del';
289: --
290: Begin
291: hr_utility.set_location('Entering:'||l_proc, 5);
292: --
293: -- As the delete procedure accepts a plsql record structure we do need to
294: -- convert the arguments into the record structure.
295: -- We don't need to call the supplied conversion argument routine as we

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

303: -- business process
304: --
305: del(l_rec, p_validate);
306: --
307: hr_utility.set_location(' Leaving:'||l_proc, 10);
308: End del;
309: --
310: end per_jbr_del;