DBA Data[Home] [Help]

APPS.PAY_PUR_INS dependencies on PAY_PUR_INS

Line 1: Package Body pay_pur_ins as

1: Package Body pay_pur_ins as
2: /* $Header: pypurrhi.pkb 120.1.12010000.2 2009/12/23 09:46:10 asnell ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_pur_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_pur_ins.g_user_row_id_i := p_user_row_id;

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

Line 274: pay_pur_ins.dt_insert_dml

270: --
271: Begin
272: hr_utility.set_location('Entering:'||l_proc, 5);
273: --
274: pay_pur_ins.dt_insert_dml
275: (p_rec => p_rec
276: ,p_effective_date => p_effective_date
277: ,p_datetrack_mode => p_datetrack_mode
278: ,p_validation_start_date => p_validation_start_date

Line 338: pay_pur_ins.g_user_row_id_i;

334: Cursor C_Sel2 is
335: Select null
336: from pay_user_rows_f
337: where user_row_id =
338: pay_pur_ins.g_user_row_id_i;
339: --
340: l_proc varchar2(72) := g_package||'pre_insert';
341: l_exists varchar2(1);
342: --

Line 346: If (pay_pur_ins.g_user_row_id_i is not null) Then

342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345: --
346: If (pay_pur_ins.g_user_row_id_i is not null) Then
347: --
348: -- Verify registered primary key values not already in use
349: --
350: Open C_Sel2;

Line 366: pay_pur_ins.g_user_row_id_i;

362: --
363: -- Use registered key values and clear globals
364: --
365: p_rec.user_row_id :=
366: pay_pur_ins.g_user_row_id_i;
367: pay_pur_ins.g_user_row_id_i := null;
368: Else
369: --
370: -- No registerd key values, so select the next sequence number

Line 367: pay_pur_ins.g_user_row_id_i := null;

363: -- Use registered key values and clear globals
364: --
365: p_rec.user_row_id :=
366: pay_pur_ins.g_user_row_id_i;
367: pay_pur_ins.g_user_row_id_i := null;
368: Else
369: --
370: -- No registerd key values, so select the next sequence number
371: --

Line 578: pay_pur_ins.ins_lck

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

Line 603: pay_pur_ins.pre_insert

599: hr_multi_message.end_validation_set;
600: --
601: -- Call the supporting pre-insert operation
602: --
603: pay_pur_ins.pre_insert
604: (p_rec => p_rec
605: ,p_effective_date => p_effective_date
606: ,p_datetrack_mode => l_datetrack_mode
607: ,p_validation_start_date => l_validation_start_date

Line 613: pay_pur_ins.insert_dml

609: );
610: --
611: -- Insert the row
612: --
613: pay_pur_ins.insert_dml
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_pur_ins.post_insert

619: );
620: --
621: -- Call the supporting post-insert operation
622: --
623: pay_pur_ins.post_insert
624: (p_rec => p_rec
625: ,p_effective_date => p_effective_date
626: ,p_datetrack_mode => l_datetrack_mode
627: ,p_disable_units_check => p_disable_units_check

Line 685: pay_pur_ins.ins

681: -- Having converted the arguments into the pay_pur_rec
682: -- plsql record structure we call the corresponding record
683: -- business process.
684: --
685: pay_pur_ins.ins
686: (p_effective_date
687: ,l_rec
688: ,p_disable_units_check
689: ,p_disable_range_overlap_check

Line 703: end pay_pur_ins;

699: --
700: hr_utility.set_location(' Leaving:'||l_proc, 10);
701: End ins;
702: --
703: end pay_pur_ins;