DBA Data[Home] [Help]

APPS.PAY_SET_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: pay_shadow_element_types

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

229: p_rec.object_version_number
230: );
231: --
232: --
233: hr_utility.set_location(' Leaving:'||l_proc, 10);
234: Exception
235: When hr_api.check_integrity_violated Then
236: -- A check constraint has been violated
237: pay_set_shd.constraint_error

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

291: --
292: Cursor C_Sel1 is select pay_shadow_element_types_s.nextval from sys.dual;
293: --
294: Begin
295: hr_utility.set_location('Entering:'||l_proc, 5);
296: --
297: --
298: -- Select the next sequence number
299: --

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

300: Open C_Sel1;
301: Fetch C_Sel1 Into p_rec.element_type_id;
302: Close C_Sel1;
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: End pre_insert;
306: --
307: -- ----------------------------------------------------------------------------
308: -- |-----------------------------< post_insert >------------------------------|

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

340: --
341: l_proc varchar2(72) := g_package||'post_insert';
342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345: --
346: hr_utility.set_location(' Leaving:'||l_proc, 10);
347: End post_insert;
348: --

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

342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345: --
346: hr_utility.set_location(' Leaving:'||l_proc, 10);
347: End post_insert;
348: --
349: -- ----------------------------------------------------------------------------
350: -- |---------------------------------< ins >----------------------------------|

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

356: --
357: l_proc varchar2(72) := g_package||'ins';
358: --
359: Begin
360: hr_utility.set_location('Entering:'||l_proc, 5);
361: --
362: -- Call the supporting insert validate operations
363: --
364: pay_set_bus.insert_validate(p_effective_date, p_rec);

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

470: l_rec pay_set_shd.g_rec_type;
471: l_proc varchar2(72) := g_package||'ins';
472: --
473: Begin
474: hr_utility.set_location('Entering:'||l_proc, 5);
475: --
476: -- Call conversion function to turn arguments into the
477: -- p_rec structure.
478: --

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

574: --
575: p_element_type_id := l_rec.element_type_id;
576: p_object_version_number := l_rec.object_version_number;
577: --
578: hr_utility.set_location(' Leaving:'||l_proc, 10);
579: End ins;
580: --
581: end pay_set_ins;