DBA Data[Home] [Help]

APPS.PER_CAG_INS dependencies on HR_UTILITY

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

56: --
57: l_proc varchar2(72) := g_package||'insert_dml';
58: --
59: Begin
60: hr_utility.set_location('Entering:'||l_proc, 5);
61: p_rec.object_version_number := 1; -- Initialise the object version
62: --
63: --
64: -- Insert the row into: per_collective_agreements

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

186: p_rec.attribute20
187: );
188: --
189: --
190: hr_utility.set_location(' Leaving:'||l_proc, 10);
191: Exception
192: When hr_api.check_integrity_violated Then
193: -- A check constraint has been violated
194: per_cag_shd.constraint_error

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

248: --
249: Cursor C_Sel1 is select per_collective_agreements_s.nextval from sys.dual;
250: --
251: Begin
252: hr_utility.set_location('Entering:'||l_proc, 5);
253: --
254: --
255: -- Select the next sequence number
256: --

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

257: Open C_Sel1;
258: Fetch C_Sel1 Into p_rec.collective_agreement_id;
259: Close C_Sel1;
260: --
261: hr_utility.set_location(' Leaving:'||l_proc, 10);
262: End pre_insert;
263: --
264: -- ----------------------------------------------------------------------------
265: -- |-----------------------------< post_insert >------------------------------|

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

297: --
298: l_proc varchar2(72) := g_package||'post_insert';
299: --
300: Begin
301: hr_utility.set_location('Entering:'||l_proc, 5);
302: --
303: --
304: --
305: -- Start of API User Hook for post_insert.

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

380: --
381: -- End of API User Hook for post_insert.
382: --
383: --
384: hr_utility.set_location(' Leaving:'||l_proc, 10);
385: End post_insert;
386: --
387: -- ----------------------------------------------------------------------------
388: -- |---------------------------------< ins >----------------------------------|

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

394: --
395: l_proc varchar2(72) := g_package||'ins';
396: --
397: Begin
398: hr_utility.set_location('Entering:'||l_proc, 5);
399: --
400: -- Call the supporting insert validate operations
401: --
402: per_cag_bus.insert_validate(p_rec);

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

483: l_rec per_cag_shd.g_rec_type;
484: l_proc varchar2(72) := g_package||'ins';
485: --
486: Begin
487: hr_utility.set_location('Entering:'||l_proc, 5);
488: --
489: -- Call conversion function to turn arguments into the
490: -- p_rec structure.
491: --

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

563: --
564: p_collective_agreement_id := l_rec.collective_agreement_id;
565: p_object_version_number := l_rec.object_version_number;
566: --
567: hr_utility.set_location(' Leaving:'||l_proc, 10);
568: End ins;
569: --
570: end per_cag_ins;