DBA Data[Home] [Help]

APPS.PER_DPF_INS dependencies on HR_UTILITY

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

54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_dpf_shd.g_api_dml := true; -- Set the api dml status
62: --

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

178: );
179: --
180: per_dpf_shd.g_api_dml := false; -- Unset the api dml status
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: Exception
184: When hr_api.check_integrity_violated Then
185: -- A check constraint has been violated
186: per_dpf_shd.g_api_dml := false; -- Unset the api dml status

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

244: --
245: Cursor C_Sel1 is select per_deployment_factors_s.nextval from sys.dual;
246: --
247: Begin
248: hr_utility.set_location('Entering:'||l_proc, 5);
249: --
250: --
251: -- Select the next sequence number
252: --

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

253: Open C_Sel1;
254: Fetch C_Sel1 Into p_rec.deployment_factor_id;
255: Close C_Sel1;
256: --
257: hr_utility.set_location(' Leaving:'||l_proc, 10);
258: End pre_insert;
259: --
260: -- ----------------------------------------------------------------------------
261: -- |-----------------------------< post_insert >------------------------------|

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

293: --
294: l_proc varchar2(72) := g_package||'post_insert';
295: --
296: Begin
297: hr_utility.set_location('Entering:'||l_proc, 5);
298: --
299: -- Start of API User Hook for post_insert.
300: Begin
301: per_dpf_rki.after_insert

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

364: p_hook_type => 'AI'
365: );
366: end;
367: -- End of API User Hook for post_insert.
368: hr_utility.set_location(' Leaving:'||l_proc, 10);
369: End post_insert;
370: --
371: -- ----------------------------------------------------------------------------
372: -- |---------------------------------< ins >----------------------------------|

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

379: --
380: l_proc varchar2(72) := g_package||'ins';
381: --
382: Begin
383: hr_utility.set_location('Entering:'||l_proc, 5);
384: --
385: -- Call the supporting insert validate operations
386: --
387: per_dpf_bus.insert_validate(p_rec,p_effective_date);

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

464: l_rec per_dpf_shd.g_rec_type;
465: l_proc varchar2(72) := g_package||'ins';
466: --
467: Begin
468: hr_utility.set_location('Entering:'||l_proc, 5);
469: --
470: -- Call conversion function to turn arguments into the
471: -- p_rec structure.
472: --

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

540: --
541: p_deployment_factor_id := l_rec.deployment_factor_id;
542: p_object_version_number := l_rec.object_version_number;
543: --
544: hr_utility.set_location(' Leaving:'||l_proc, 10);
545: End ins;
546: --
547: end per_dpf_ins;