DBA Data[Home] [Help]

APPS.PER_CEO_INS dependencies on HR_UTILITY

Line 24: hr_utility.set_location('Entering:'||l_proc, 10);

20: --
21: l_proc varchar2(72) := g_package||'set_base_key_value';
22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_ceo_ins.g_comp_element_outcome_id_i := p_comp_element_outcome_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_ceo_ins.g_comp_element_outcome_id_i := p_comp_element_outcome_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --
31: --
32: -- ----------------------------------------------------------------------------

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

78: --
79: l_proc varchar2(72) := g_package||'insert_dml';
80: --
81: Begin
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: per_ceo_shd.g_api_dml := true; -- Set the api dml status
86: --

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

188: );
189: --
190: per_ceo_shd.g_api_dml := false; -- Unset the api dml status
191: --
192: hr_utility.set_location(' Leaving:'||l_proc, 10);
193: Exception
194: When hr_api.check_integrity_violated Then
195: -- A check constraint has been violated
196: per_ceo_shd.g_api_dml := false; -- Unset the api dml status

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

265: l_proc varchar2(72) := g_package||'pre_insert';
266: l_exists varchar2(1);
267: --
268: Begin
269: hr_utility.set_location('Entering:'||l_proc, 5);
270: --
271: If (per_ceo_ins.g_comp_element_outcome_id_i is not null) Then
272: --
273: -- Verify registered primary key values not already in use

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

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

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

344: --
345: l_proc varchar2(72) := g_package||'post_insert';
346: --
347: Begin
348: hr_utility.set_location('Entering:'||l_proc, 5);
349: begin
350: --
351: per_ceo_rki.after_insert
352: (p_effective_date => p_effective_date

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

457: ,p_hook_type => 'AI');
458: --
459: end;
460: --
461: hr_utility.set_location(' Leaving:'||l_proc, 10);
462: End post_insert;
463: --
464: -- ----------------------------------------------------------------------------
465: -- |---------------------------------< ins >----------------------------------|

Line 475: hr_utility.set_location('Entering:'||l_proc, 10);

471: --
472: l_proc varchar2(72) := g_package||'ins';
473: --
474: Begin
475: hr_utility.set_location('Entering:'||l_proc, 10);
476: --
477: -- Call the supporting insert validate operations
478: --
479: hr_utility.set_location(l_proc, 11);

Line 479: hr_utility.set_location(l_proc, 11);

475: hr_utility.set_location('Entering:'||l_proc, 10);
476: --
477: -- Call the supporting insert validate operations
478: --
479: hr_utility.set_location(l_proc, 11);
480: per_ceo_bus.insert_validate
481: (p_effective_date
482: ,p_rec
483: );

Line 484: hr_utility.set_location(l_proc, 12);

480: per_ceo_bus.insert_validate
481: (p_effective_date
482: ,p_rec
483: );
484: hr_utility.set_location(l_proc, 12);
485: --
486: -- Call to raise any errors on multi-message list
487: hr_multi_message.end_validation_set;
488: --

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

503: --
504: -- Call to raise any errors on multi-message list
505: hr_multi_message.end_validation_set;
506: --
507: hr_utility.set_location('Leaving:'||l_proc, 20);
508: end ins;
509: --
510: -- ----------------------------------------------------------------------------
511: -- |---------------------------------< ins >----------------------------------|

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

565: l_rec per_ceo_shd.g_rec_type;
566: l_proc varchar2(72) := g_package||'ins';
567: --
568: Begin
569: hr_utility.set_location('Entering:'||l_proc, 5);
570: --
571: -- Call conversion function to turn arguments into the
572: -- p_rec structure.
573: --

Line 629: hr_utility.set_location(l_proc, 6);

625: --
626: -- Having converted the arguments into the per_ceo_rec
627: -- plsql record structure we call the corresponding record business process.
628: --
629: hr_utility.set_location(l_proc, 6);
630:
631: per_ceo_ins.ins
632: (p_effective_date
633: ,l_rec

Line 642: hr_utility.set_location(' Leaving:'||l_proc, 100);

638: --
639: p_comp_element_outcome_id := l_rec.comp_element_outcome_id;
640: p_object_version_number := l_rec.object_version_number;
641: --
642: hr_utility.set_location(' Leaving:'||l_proc, 100);
643: End ins;
644: --
645: end per_ceo_ins;