DBA Data[Home] [Help]

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

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

156: );
157: --
158: pay_con_shd.g_api_dml := false; -- Unset the api dml status
159: --
160: hr_utility.set_location(' Leaving:'||l_proc, 10);
161: Exception
162: When hr_api.check_integrity_violated Then
163: -- A check constraint has been violated
164: pay_con_shd.g_api_dml := false; -- Unset the api dml status

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

222: --
223: Cursor C_Sel1 is select pay_us_contribution_history_s.nextval from sys.dual;
224: --
225: Begin
226: hr_utility.set_location('Entering:'||l_proc, 5);
227: --
228: --
229: -- Select the next sequence number
230: --

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

231: Open C_Sel1;
232: Fetch C_Sel1 Into p_rec.contr_history_id;
233: Close C_Sel1;
234: --
235: hr_utility.set_location(' Leaving:'||l_proc, 10);
236: End pre_insert;
237: --
238: -- ----------------------------------------------------------------------------
239: -- |-----------------------------< post_insert >------------------------------|

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

271: --
272: l_proc varchar2(72) := g_package||'post_insert';
273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: --
278: -- Start of API User Hook for post_insert.
279: --

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

339: --
340: -- End of API User Hook for post_insert.
341: --
342: --
343: hr_utility.set_location(' Leaving:'||l_proc, 10);
344: End post_insert;
345: --
346: -- ----------------------------------------------------------------------------
347: -- |---------------------------------< ins >----------------------------------|

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

353: --
354: l_proc varchar2(72) := g_package||'ins';
355: --
356: Begin
357: hr_utility.set_location('Entering:'||l_proc, 5);
358: --
359: -- Call the supporting insert validate operations
360: --
361: pay_con_bus.insert_validate(p_rec);

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

427: l_rec pay_con_shd.g_rec_type;
428: l_proc varchar2(72) := g_package||'ins';
429: --
430: Begin
431: hr_utility.set_location('Entering:'||l_proc, 5);
432: --
433: -- Call conversion function to turn arguments into the
434: -- p_rec structure.
435: --

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

492: --
493: p_contr_history_id := l_rec.contr_history_id;
494: p_object_version_number := l_rec.object_version_number;
495: --
496: hr_utility.set_location(' Leaving:'||l_proc, 10);
497: End ins;
498: --
499: end pay_con_ins;