DBA Data[Home] [Help]

APPS.PER_BBA_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: --
62: -- Insert the row into: per_bf_balance_amounts

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

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

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

213: Cursor C_Sel1 is select per_bf_balance_amounts_s.nextval from sys.dual;
214: --
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: Open C_Sel1;
220: Fetch C_Sel1 Into p_rec.balance_amount_id;
221: Close C_Sel1;

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

219: Open C_Sel1;
220: Fetch C_Sel1 Into p_rec.balance_amount_id;
221: Close C_Sel1;
222: --
223: hr_utility.set_location(' Leaving:'||l_proc, 10);
224: End pre_insert;
225: --
226: -- ----------------------------------------------------------------------------
227: -- |-----------------------------< 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: begin
266: --
267: per_bba_rki.after_insert
268: (p_effective_date => p_effective_date,

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

319: ,p_hook_type => 'AI');
320: --
321: end;
322: --
323: hr_utility.set_location(' Leaving:'||l_proc, 10);
324: End post_insert;
325: --
326: -- ----------------------------------------------------------------------------
327: -- |---------------------------------< ins >----------------------------------|

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

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

Line 360: hr_utility.set_location('Leaving:'||l_proc, 20);

356: --
357: post_insert(p_effective_date,
358: p_rec);
359: --
360: hr_utility.set_location('Leaving:'||l_proc, 20);
361: end ins;
362: --
363: -- ----------------------------------------------------------------------------
364: -- |---------------------------------< ins >----------------------------------|

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

413: l_rec per_bba_shd.g_rec_type;
414: l_proc varchar2(72) := g_package||'ins';
415: --
416: Begin
417: hr_utility.set_location('Entering:'||l_proc, 5);
418: --
419: -- Call conversion function to turn arguments into the
420: -- p_rec structure.
421: --

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

478: --
479: p_balance_amount_id := l_rec.balance_amount_id;
480: p_object_version_number := l_rec.object_version_number;
481: --
482: hr_utility.set_location(' Leaving:'||l_proc, 10);
483: End ins;
484: --
485: end per_bba_ins;