DBA Data[Home] [Help]

APPS.PAY_PPD_INS dependencies on PAY_PPD_INS

Line 1: Package Body pay_ppd_ins as

1: Package Body pay_ppd_ins as
2: /* $Header: pyppdrhi.pkb 120.2 2005/12/29 01:38 nprasath noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_ppd_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_ppd_ins.g_paye_details_id_i := p_paye_details_id;

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

Line 240: pay_ppd_ins.dt_insert_dml

236: --
237: Begin
238: hr_utility.set_location('Entering:'||l_proc, 5);
239: --
240: pay_ppd_ins.dt_insert_dml
241: (p_rec => p_rec
242: ,p_effective_date => p_effective_date
243: ,p_datetrack_mode => p_datetrack_mode
244: ,p_validation_start_date => p_validation_start_date

Line 304: pay_ppd_ins.g_paye_details_id_i;

300: Cursor C_Sel2 is
301: Select null
302: from pay_pl_paye_details_f
303: where paye_details_id =
304: pay_ppd_ins.g_paye_details_id_i;
305: --
306: l_proc varchar2(72) := g_package||'pre_insert';
307: l_exists varchar2(1);
308: --

Line 312: If (pay_ppd_ins.g_paye_details_id_i is not null) Then

308: --
309: Begin
310: hr_utility.set_location('Entering:'||l_proc, 5);
311: --
312: If (pay_ppd_ins.g_paye_details_id_i is not null) Then
313: --
314: -- Verify registered primary key values not already in use
315: --
316: Open C_Sel2;

Line 332: pay_ppd_ins.g_paye_details_id_i;

328: --
329: -- Use registered key values and clear globals
330: --
331: p_rec.paye_details_id :=
332: pay_ppd_ins.g_paye_details_id_i;
333: pay_ppd_ins.g_paye_details_id_i := null;
334: Else
335: --
336: -- No registerd key values, so select the next sequence number

Line 333: pay_ppd_ins.g_paye_details_id_i := null;

329: -- Use registered key values and clear globals
330: --
331: p_rec.paye_details_id :=
332: pay_ppd_ins.g_paye_details_id_i;
333: pay_ppd_ins.g_paye_details_id_i := null;
334: Else
335: --
336: -- No registerd key values, so select the next sequence number
337: --

Line 577: pay_ppd_ins.ins_lck

573: hr_utility.set_location('Entering:'||l_proc, 5);
574: --
575: -- Call the lock operation
576: --
577: pay_ppd_ins.ins_lck
578: (p_effective_date => p_effective_date
579: ,p_datetrack_mode => l_datetrack_mode
580: ,p_rec => p_rec
581: ,p_validation_start_date => l_validation_start_date

Line 600: pay_ppd_ins.pre_insert

596: hr_multi_message.end_validation_set;
597: --
598: -- Call the supporting pre-insert operation
599: --
600: pay_ppd_ins.pre_insert
601: (p_rec => p_rec
602: ,p_effective_date => p_effective_date
603: ,p_datetrack_mode => l_datetrack_mode
604: ,p_validation_start_date => l_validation_start_date

Line 611: pay_ppd_ins.insert_dml

607: --
608: -- Insert the row
609: --
610:
611: pay_ppd_ins.insert_dml
612: (p_rec => p_rec
613: ,p_effective_date => p_effective_date
614: ,p_datetrack_mode => l_datetrack_mode
615: ,p_validation_start_date => l_validation_start_date

Line 621: pay_ppd_ins.post_insert

617: );
618: --
619: -- Call the supporting post-insert operation
620: --
621: pay_ppd_ins.post_insert
622: (p_rec => p_rec
623: ,p_effective_date => p_effective_date
624: ,p_datetrack_mode => l_datetrack_mode
625: ,p_validation_start_date => l_validation_start_date

Line 692: pay_ppd_ins.ins

688: -- plsql record structure we call the corresponding record
689: -- business process.
690: --
691:
692: pay_ppd_ins.ins
693: (p_effective_date
694: ,l_rec
695: );
696: --

Line 708: end pay_ppd_ins;

704: --
705: hr_utility.set_location(' Leaving:'||l_proc, 10);
706: End ins;
707: --
708: end pay_ppd_ins;