DBA Data[Home] [Help]

APPS.PAY_EVQ_INS dependencies on PAY_EVQ_INS

Line 1: Package Body pay_evq_ins as

1: Package Body pay_evq_ins as
2: /* $Header: pyevqrhi.pkb 120.0 2005/05/29 04:49:50 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_evq_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_evq_ins.g_event_qualifier_id_i := p_event_qualifier_id;

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

Line 284: pay_evq_ins.dt_insert_dml

280: --
281: Begin
282: hr_utility.set_location('Entering:'||l_proc, 5);
283: --
284: pay_evq_ins.dt_insert_dml
285: (p_rec => p_rec
286: ,p_effective_date => p_effective_date
287: ,p_datetrack_mode => p_datetrack_mode
288: ,p_validation_start_date => p_validation_start_date

Line 348: pay_evq_ins.g_event_qualifier_id_i;

344: Cursor C_Sel2 is
345: Select null
346: from pay_event_qualifiers_f
347: where event_qualifier_id =
348: pay_evq_ins.g_event_qualifier_id_i;
349: --
350: l_proc varchar2(72) := g_package||'pre_insert';
351: l_exists varchar2(1);
352: --

Line 356: If (pay_evq_ins.g_event_qualifier_id_i is not null) Then

352: --
353: Begin
354: hr_utility.set_location('Entering:'||l_proc, 5);
355: --
356: If (pay_evq_ins.g_event_qualifier_id_i is not null) Then
357: --
358: -- Verify registered primary key values not already in use
359: --
360: Open C_Sel2;

Line 376: pay_evq_ins.g_event_qualifier_id_i;

372: --
373: -- Use registered key values and clear globals
374: --
375: p_rec.event_qualifier_id :=
376: pay_evq_ins.g_event_qualifier_id_i;
377: pay_evq_ins.g_event_qualifier_id_i := null;
378: Else
379: --
380: -- No registerd key values, so select the next sequence number

Line 377: pay_evq_ins.g_event_qualifier_id_i := null;

373: -- Use registered key values and clear globals
374: --
375: p_rec.event_qualifier_id :=
376: pay_evq_ins.g_event_qualifier_id_i;
377: pay_evq_ins.g_event_qualifier_id_i := null;
378: Else
379: --
380: -- No registerd key values, so select the next sequence number
381: --

Line 590: pay_evq_ins.ins_lck

586: hr_utility.set_location('Entering:'||l_proc, 5);
587: --
588: -- Call the lock operation
589: --
590: pay_evq_ins.ins_lck
591: (p_effective_date => p_effective_date
592: ,p_datetrack_mode => l_datetrack_mode
593: ,p_rec => p_rec
594: ,p_validation_start_date => l_validation_start_date

Line 613: pay_evq_ins.pre_insert

609: hr_multi_message.end_validation_set;
610: --
611: -- Call the supporting pre-insert operation
612: --
613: pay_evq_ins.pre_insert
614: (p_rec => p_rec
615: ,p_effective_date => p_effective_date
616: ,p_datetrack_mode => l_datetrack_mode
617: ,p_validation_start_date => l_validation_start_date

Line 623: pay_evq_ins.insert_dml

619: );
620: --
621: -- Insert the row
622: --
623: pay_evq_ins.insert_dml
624: (p_rec => p_rec
625: ,p_effective_date => p_effective_date
626: ,p_datetrack_mode => l_datetrack_mode
627: ,p_validation_start_date => l_validation_start_date

Line 633: pay_evq_ins.post_insert

629: );
630: --
631: -- Call the supporting post-insert operation
632: --
633: pay_evq_ins.post_insert
634: (p_rec => p_rec
635: ,p_effective_date => p_effective_date
636: ,p_datetrack_mode => l_datetrack_mode
637: ,p_validation_start_date => l_validation_start_date

Line 701: pay_evq_ins.ins

697: -- Having converted the arguments into the pay_evq_rec
698: -- plsql record structure we call the corresponding record
699: -- business process.
700: --
701: pay_evq_ins.ins
702: (p_effective_date
703: ,l_rec
704: );
705: --

Line 717: end pay_evq_ins;

713: --
714: hr_utility.set_location(' Leaving:'||l_proc, 10);
715: End ins;
716: --
717: end pay_evq_ins;