DBA Data[Home] [Help]

APPS.PAY_PMA_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: --
60: p_rec.object_version_number := 1; -- Initialise the object version
61: --
62: pay_pma_shd.g_api_dml := true; -- Set the api dml status

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

145: );
146: --
147: pay_pma_shd.g_api_dml := false; -- Unset the api dml status
148: --
149: hr_utility.set_location(' Leaving:'||l_proc, 10);
150: Exception
151: When hr_api.check_integrity_violated Then
152: -- A check constraint has been violated
153: pay_pma_shd.g_api_dml := false; -- Unset the api dml status

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

211: --
212: Cursor C_Sel1 is select pay_wci_rates_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.source_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 264: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

322: --
323: -- End of API User Hook for post_insert.
324: --
325: --
326: hr_utility.set_location(' Leaving:'||l_proc, 10);
327: End post_insert;
328: --
329: -- ----------------------------------------------------------------------------
330: -- |---------------------------------< ins >----------------------------------|

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

336: --
337: l_proc varchar2(72) := g_package||'ins';
338: --
339: Begin
340: hr_utility.set_location('Entering:'||l_proc, 5);
341: --
342: -- Call the supporting insert validate operations
343: --
344: pay_pma_bus.insert_validate(p_rec);

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

404: l_rec pay_pma_shd.g_rec_type;
405: l_proc varchar2(72) := g_package||'ins';
406: --
407: Begin
408: hr_utility.set_location('Entering:'||l_proc, 5);
409: --
410: -- Call conversion function to turn arguments into the
411: -- p_rec structure.
412: --

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

463: --
464: p_source_id := l_rec.source_id;
465: p_object_version_number := l_rec.object_version_number;
466: --
467: hr_utility.set_location(' Leaving:'||l_proc, 10);
468: End ins;
469: --
470: end pay_pma_ins;