DBA Data[Home] [Help]

APPS.PAY_EVC_INS dependencies on PAY_EVC_INS

Line 1: Package Body pay_evc_ins as

1: Package Body pay_evc_ins as
2: /* $Header: pyevcrhi.pkb 115.6 2003/05/27 17:21:31 jford noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_evc_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_evc_ins.g_event_value_change_id_i := p_event_value_change_id;

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

Line 282: pay_evc_ins.dt_insert_dml

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

Line 346: pay_evc_ins.g_event_value_change_id_i;

342: Cursor C_Sel2 is
343: Select null
344: from pay_event_value_changes_f
345: where event_value_change_id =
346: pay_evc_ins.g_event_value_change_id_i;
347: --
348: l_proc varchar2(72) := g_package||'pre_insert';
349: l_exists varchar2(1);
350: --

Line 354: If (pay_evc_ins.g_event_value_change_id_i is not null) Then

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

Line 374: pay_evc_ins.g_event_value_change_id_i;

370: --
371: -- Use registered key values and clear globals
372: --
373: p_rec.event_value_change_id :=
374: pay_evc_ins.g_event_value_change_id_i;
375: pay_evc_ins.g_event_value_change_id_i := null;
376: Else
377: --
378: -- No registerd key values, so select the next sequence number

Line 375: pay_evc_ins.g_event_value_change_id_i := null;

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

Line 589: pay_evc_ins.ins_lck

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

Line 612: pay_evc_ins.pre_insert

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

Line 622: pay_evc_ins.insert_dml

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

Line 632: pay_evc_ins.post_insert

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

Line 698: pay_evc_ins.ins

694: -- Having converted the arguments into the pay_evc_rec
695: -- plsql record structure we call the corresponding record
696: -- business process.
697: --
698: pay_evc_ins.ins
699: (p_effective_date
700: ,l_rec
701: );
702: --

Line 714: end pay_evc_ins;

710: --
711: hr_utility.set_location(' Leaving:'||l_proc, 10);
712: End ins;
713: --
714: end pay_evc_ins;