DBA Data[Home] [Help]

APPS.PQH_PLG_INS dependencies on HR_UTILITY

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

51: --
52: l_proc varchar2(72) := g_package||'insert_dml';
53: --
54: Begin
55: hr_utility.set_location('Entering:'||l_proc, 5);
56: p_rec.object_version_number := 1; -- Initialise the object version
57: --
58: --
59: -- Insert the row into: pqh_process_log

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

149: p_rec.object_version_number
150: );
151: --
152: --
153: hr_utility.set_location(' Leaving:'||l_proc, 10);
154: Exception
155: When hr_api.check_integrity_violated Then
156: -- A check constraint has been violated
157: pqh_plg_shd.constraint_error

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

211: --
212: Cursor C_Sel1 is select pqh_process_log_s.nextval from sys.dual;
213: --
214: Begin
215: hr_utility.set_location('Entering:'||l_proc, 5);
216: --
217: --
218: -- Select the next sequence number
219: --

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

220: Open C_Sel1;
221: Fetch C_Sel1 Into p_rec.process_log_id;
222: Close C_Sel1;
223: --
224: hr_utility.set_location(' Leaving:'||l_proc, 10);
225: End pre_insert;
226: --
227: -- ----------------------------------------------------------------------------
228: -- |-----------------------------< post_insert >------------------------------|

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

261: --
262: l_proc varchar2(72) := g_package||'post_insert';
263: --
264: Begin
265: hr_utility.set_location('Entering:'||l_proc, 5);
266: --
267: --
268: -- Start of API User Hook for post_insert.
269: --

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

329: --
330: -- End of API User Hook for post_insert.
331: --
332: --
333: hr_utility.set_location(' Leaving:'||l_proc, 10);
334: End post_insert;
335: --
336: -- ----------------------------------------------------------------------------
337: -- |---------------------------------< ins >----------------------------------|

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

344: --
345: l_proc varchar2(72) := g_package||'ins';
346: --
347: Begin
348: hr_utility.set_location('Entering:'||l_proc, 5);
349: --
350: -- Call the supporting insert validate operations
351: --
352: pqh_plg_bus.insert_validate(p_rec

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

420: l_rec pqh_plg_shd.g_rec_type;
421: l_proc varchar2(72) := g_package||'ins';
422: --
423: Begin
424: hr_utility.set_location('Entering:'||l_proc, 5);
425: --
426: -- Call conversion function to turn arguments into the
427: -- p_rec structure.
428: --

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

485: --
486: p_process_log_id := l_rec.process_log_id;
487: p_object_version_number := l_rec.object_version_number;
488: --
489: hr_utility.set_location(' Leaving:'||l_proc, 10);
490: End ins;
491: --
492: end pqh_plg_ins;