DBA Data[Home] [Help]

APPS.PAY_IVL_INS dependencies on PAY_IVL_INS

Line 1: Package Body pay_ivl_ins as

1: Package Body pay_ivl_ins as
2: /* $Header: pyivlrhi.pkb 120.0 2005/05/29 06:04:43 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_ivl_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: pay_ivl_ins.g_input_value_id_i := p_input_value_id;

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

Line 296: pay_ivl_ins.dt_insert_dml

292: --
293: Begin
294: hr_utility.set_location('Entering:'||l_proc, 5);
295: --
296: pay_ivl_ins.dt_insert_dml
297: (p_rec => p_rec
298: ,p_effective_date => p_effective_date
299: ,p_datetrack_mode => p_datetrack_mode
300: ,p_validation_start_date => p_validation_start_date

Line 360: pay_ivl_ins.g_input_value_id_i;

356: Cursor C_Sel2 is
357: Select null
358: from pay_input_values_f
359: where input_value_id =
360: pay_ivl_ins.g_input_value_id_i;
361: --
362: l_proc varchar2(72) := g_package||'pre_insert';
363: l_exists varchar2(1);
364: --

Line 368: If (pay_ivl_ins.g_input_value_id_i is not null) Then

364: --
365: Begin
366: hr_utility.set_location('Entering:'||l_proc, 5);
367: --
368: If (pay_ivl_ins.g_input_value_id_i is not null) Then
369: --
370: -- Verify registered primary key values not already in use
371: --
372: Open C_Sel2;

Line 388: pay_ivl_ins.g_input_value_id_i;

384: --
385: -- Use registered key values and clear globals
386: --
387: p_rec.input_value_id :=
388: pay_ivl_ins.g_input_value_id_i;
389: pay_ivl_ins.g_input_value_id_i := null;
390: Else
391: --
392: -- No registerd key values, so select the next sequence number

Line 389: pay_ivl_ins.g_input_value_id_i := null;

385: -- Use registered key values and clear globals
386: --
387: p_rec.input_value_id :=
388: pay_ivl_ins.g_input_value_id_i;
389: pay_ivl_ins.g_input_value_id_i := null;
390: Else
391: --
392: -- No registerd key values, so select the next sequence number
393: --

Line 636: pay_ivl_ins.ins_lck

632: hr_utility.set_location('Entering:'||l_proc, 5);
633: --
634: -- Call the lock operation
635: --
636: pay_ivl_ins.ins_lck
637: (p_effective_date => p_effective_date
638: ,p_datetrack_mode => l_datetrack_mode
639: ,p_rec => p_rec
640: ,p_validation_start_date => l_validation_start_date

Line 665: pay_ivl_ins.pre_insert

661: hr_multi_message.end_validation_set;
662: --
663: -- Call the supporting pre-insert operation
664: --
665: pay_ivl_ins.pre_insert
666: (p_rec => p_rec
667: ,p_effective_date => p_effective_date
668: ,p_datetrack_mode => l_datetrack_mode
669: ,p_validation_start_date => l_validation_start_date

Line 681: pay_ivl_ins.insert_dml

677: end if;
678: --
679: -- Insert the row
680: --
681: pay_ivl_ins.insert_dml
682: (p_rec => p_rec
683: ,p_effective_date => p_effective_date
684: ,p_datetrack_mode => l_datetrack_mode
685: ,p_validation_start_date => l_validation_start_date

Line 691: pay_ivl_ins.post_insert

687: );
688: --
689: -- Call the supporting post-insert operation
690: --
691: pay_ivl_ins.post_insert
692: (p_rec => p_rec
693: ,p_effective_date => p_effective_date
694: ,p_datetrack_mode => l_datetrack_mode
695: ,p_validation_start_date => l_validation_start_date

Line 824: pay_ivl_ins.ins

820: -- Having converted the arguments into the pay_ivl_rec
821: -- plsql record structure we call the corresponding record
822: -- business process.
823: --
824: pay_ivl_ins.ins
825: (p_effective_date
826: ,l_rec
827: ,p_default_val_warning
828: ,p_min_max_warning

Line 855: end pay_ivl_ins;

851: --
852: hr_utility.set_location(' Leaving:'||l_proc, 10);
853: End ins;
854: --
855: end pay_ivl_ins;