DBA Data[Home] [Help]

APPS.PQP_ATD_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: pqp_atd_shd.g_api_dml := true; -- Set the api dml status
62: --

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

172: );
173: --
174: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status
175: --
176: hr_utility.set_location(' Leaving:'||l_proc, 10);
177: Exception
178: When hr_api.check_integrity_violated Then
179: -- A check constraint has been violated
180: pqp_atd_shd.g_api_dml := false; -- Unset the api dml status

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

238: --
239: Cursor C_Sel1 is select pqp_alien_transaction_data_s.nextval from sys.dual;
240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: --
245: -- Select the next sequence number
246: --

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

247: Open C_Sel1;
248: Fetch C_Sel1 Into p_rec.alien_transaction_id;
249: Close C_Sel1;
250: --
251: hr_utility.set_location(' Leaving:'||l_proc, 10);
252: End pre_insert;
253: --
254: -- ----------------------------------------------------------------------------
255: -- |-----------------------------< post_insert >------------------------------|

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

288: --
289: l_proc varchar2(72) := g_package||'post_insert';
290: --
291: Begin
292: hr_utility.set_location('Entering:'||l_proc, 5);
293: --
294: --
295: -- Start of API User Hook for post_insert.
296: --

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

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

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

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

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

475: l_rec pqp_atd_shd.g_rec_type;
476: l_proc varchar2(72) := g_package||'ins';
477: --
478: Begin
479: hr_utility.set_location('Entering:'||l_proc, 5);
480: --
481: -- Call conversion function to turn arguments into the
482: -- p_rec structure.
483: --

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

549: --
550: p_alien_transaction_id := l_rec.alien_transaction_id;
551: p_object_version_number := l_rec.object_version_number;
552: --
553: hr_utility.set_location(' Leaving:'||l_proc, 10);
554: End ins;
555: --
556: end pqp_atd_ins;