DBA Data[Home] [Help]

APPS.PAY_PBF_INS dependencies on PAY_PBF_INS

Line 1: Package Body pay_pbf_ins as

1: Package Body pay_pbf_ins as
2: /* $Header: pypbfrhi.pkb 120.4 2011/01/25 09:17:04 asnell ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_pbf_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_pbf_ins.g_balance_feed_id_i := p_balance_feed_id;

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

Line 274: pay_pbf_ins.dt_insert_dml

270: --
271: Begin
272: hr_utility.set_location('Entering:'||l_proc, 5);
273: --
274: pay_pbf_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_pbf_ins.g_balance_feed_id_i;

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

Line 346: If (pay_pbf_ins.g_balance_feed_id_i is not null) Then

342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345: --
346: If (pay_pbf_ins.g_balance_feed_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_pbf_ins.g_balance_feed_id_i;

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

Line 367: pay_pbf_ins.g_balance_feed_id_i := null;

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

Line 588: pay_pbf_ins.ins_lck

584:
585: --
586: -- Call the lock operation
587: --
588: pay_pbf_ins.ins_lck
589: (p_effective_date => l_effective_date
590: ,p_datetrack_mode => l_datetrack_mode
591: ,p_rec => p_rec
592: ,p_validation_start_date => l_validation_start_date

Line 613: pay_pbf_ins.pre_insert

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

Line 623: pay_pbf_ins.insert_dml

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

Line 633: pay_pbf_ins.post_insert

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

Line 695: pay_pbf_ins.ins

691: -- Having converted the arguments into the pay_pbf_rec
692: -- plsql record structure we call the corresponding record
693: -- business process.
694: --
695: pay_pbf_ins.ins
696: (p_effective_date
697: ,p_initial_feed
698: ,l_rec
699: ,l_exist_run_result_warning

Line 714: end pay_pbf_ins;

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