DBA Data[Home] [Help]

APPS.PER_PML_INS dependencies on PER_PML_INS

Line 1: Package Body per_pml_ins as

1: Package Body per_pml_ins as
2: /* $Header: pepmlrhi.pkb 120.9.12020000.1 2012/06/29 01:50:07 appldev ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' per_pml_ins.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pml_ins.'; -- Global package name
9: --
10: -- The following global variables are only to be used by
11: -- the set_base_key_value and pre_insert procedures.
12: --

Line 26: per_pml_ins.g_objective_id_i := p_objective_id;

22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: per_pml_ins.g_objective_id_i := p_objective_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --

Line 269: per_pml_ins.g_objective_id_i;

265: Cursor C_Sel2 is
266: Select null
267: from per_objectives_library
268: where objective_id =
269: per_pml_ins.g_objective_id_i;
270: --
271: l_proc varchar2(72) := g_package||'pre_insert';
272: l_exists varchar2(1);
273: --

Line 277: If (per_pml_ins.g_objective_id_i is not null) Then

273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: If (per_pml_ins.g_objective_id_i is not null) Then
278: --
279: -- Verify registered primary key values not already in use
280: --
281: Open C_Sel2;

Line 297: per_pml_ins.g_objective_id_i;

293: --
294: -- Use registered key values and clear globals
295: --
296: p_rec.objective_id :=
297: per_pml_ins.g_objective_id_i;
298: per_pml_ins.g_objective_id_i := null;
299: Else
300: --
301: -- No registerd key values, so select the next sequence number

Line 298: per_pml_ins.g_objective_id_i := null;

294: -- Use registered key values and clear globals
295: --
296: p_rec.objective_id :=
297: per_pml_ins.g_objective_id_i;
298: per_pml_ins.g_objective_id_i := null;
299: Else
300: --
301: -- No registerd key values, so select the next sequence number
302: --

Line 520: per_pml_ins.pre_insert(p_rec);

516: hr_multi_message.end_validation_set;
517: --
518: -- Call the supporting pre-insert operation
519: --
520: per_pml_ins.pre_insert(p_rec);
521: --
522: -- Insert the row
523: --
524: per_pml_ins.insert_dml(p_rec);

Line 524: per_pml_ins.insert_dml(p_rec);

520: per_pml_ins.pre_insert(p_rec);
521: --
522: -- Insert the row
523: --
524: per_pml_ins.insert_dml(p_rec);
525: --
526: -- Call the supporting post-insert operation
527: --
528: per_pml_ins.post_insert

Line 528: per_pml_ins.post_insert

524: per_pml_ins.insert_dml(p_rec);
525: --
526: -- Call the supporting post-insert operation
527: --
528: per_pml_ins.post_insert
529: (p_effective_date => p_effective_date
530: ,p_rec => p_rec
531: ,p_duplicate_name_warning => p_duplicate_name_warning
532: ,p_weighting_over_100_warning => p_weighting_over_100_warning

Line 677: per_pml_ins.ins

673: --
674: -- Having converted the arguments into the per_pml_rec
675: -- plsql record structure we call the corresponding record business process.
676: --
677: per_pml_ins.ins
678: (p_effective_date
679: ,l_rec
680: ,l_duplicate_name_warning
681: ,l_weighting_over_100_warning

Line 698: end per_pml_ins;

694: --
695: hr_utility.set_location(' Leaving:'||l_proc, 10);
696: End ins;
697: --
698: end per_pml_ins;