DBA Data[Home] [Help]

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

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

63: where component_id = p_rec.component_id;
64: --
65: per_ppc_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 162: hr_utility.set_location('Entering:'||l_proc, 5);

158: is --
159: l_proc varchar2(72) := g_package||'post_delete';
160: --
161: Begin
162: hr_utility.set_location('Entering:'||l_proc, 5);
163: --
164: -- Call to the user hook for post_delete.
165:
166: begin

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

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

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

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

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

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

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

287: l_rec per_ppc_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_validation_strength, p_validate);
306: --
307: hr_utility.set_location(' Leaving:'||l_proc, 10);
308: End del;
309: --
310: end per_ppc_del;