DBA Data[Home] [Help]

APPS.PAY_PBC_INS dependencies on PAY_PBC_INS

Line 1: Package Body pay_pbc_ins as

1: Package Body pay_pbc_ins as
2: /* $Header: pypbcrhi.pkb 120.0 2005/05/29 07:19:45 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_pbc_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_pbc_ins.g_balance_category_id_i := p_balance_category_id;

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

Line 334: pay_pbc_ins.dt_insert_dml

330: --
331: Begin
332: hr_utility.set_location('Entering:'||l_proc, 5);
333: --
334: pay_pbc_ins.dt_insert_dml
335: (p_rec => p_rec
336: ,p_effective_date => p_effective_date
337: ,p_datetrack_mode => p_datetrack_mode
338: ,p_validation_start_date => p_validation_start_date

Line 398: pay_pbc_ins.g_balance_category_id_i;

394: Cursor C_Sel2 is
395: Select null
396: from pay_balance_categories_f
397: where balance_category_id =
398: pay_pbc_ins.g_balance_category_id_i;
399: --
400: l_proc varchar2(72) := g_package||'pre_insert';
401: l_exists varchar2(1);
402: --

Line 406: If (pay_pbc_ins.g_balance_category_id_i is not null) Then

402: --
403: Begin
404: hr_utility.set_location('Entering:'||l_proc, 5);
405: --
406: If (pay_pbc_ins.g_balance_category_id_i is not null) Then
407: --
408: -- Verify registered primary key values not already in use
409: --
410: Open C_Sel2;

Line 426: pay_pbc_ins.g_balance_category_id_i;

422: --
423: -- Use registered key values and clear globals
424: --
425: p_rec.balance_category_id :=
426: pay_pbc_ins.g_balance_category_id_i;
427: pay_pbc_ins.g_balance_category_id_i := null;
428: Else
429: --
430: -- No registerd key values, so select the next sequence number

Line 427: pay_pbc_ins.g_balance_category_id_i := null;

423: -- Use registered key values and clear globals
424: --
425: p_rec.balance_category_id :=
426: pay_pbc_ins.g_balance_category_id_i;
427: pay_pbc_ins.g_balance_category_id_i := null;
428: Else
429: --
430: -- No registerd key values, so select the next sequence number
431: --

Line 690: pay_pbc_ins.ins_lck

686: hr_utility.set_location('Entering:'||l_proc, 5);
687: --
688: -- Call the lock operation
689: --
690: pay_pbc_ins.ins_lck
691: (p_effective_date => p_effective_date
692: ,p_datetrack_mode => l_datetrack_mode
693: ,p_rec => p_rec
694: ,p_validation_start_date => l_validation_start_date

Line 713: pay_pbc_ins.pre_insert

709: hr_multi_message.end_validation_set;
710: --
711: -- Call the supporting pre-insert operation
712: --
713: pay_pbc_ins.pre_insert
714: (p_rec => p_rec
715: ,p_effective_date => p_effective_date
716: ,p_datetrack_mode => l_datetrack_mode
717: ,p_validation_start_date => l_validation_start_date

Line 723: pay_pbc_ins.insert_dml

719: );
720: --
721: -- Insert the row
722: --
723: pay_pbc_ins.insert_dml
724: (p_rec => p_rec
725: ,p_effective_date => p_effective_date
726: ,p_datetrack_mode => l_datetrack_mode
727: ,p_validation_start_date => l_validation_start_date

Line 733: pay_pbc_ins.post_insert

729: );
730: --
731: -- Call the supporting post-insert operation
732: --
733: pay_pbc_ins.post_insert
734: (p_rec => p_rec
735: ,p_effective_date => p_effective_date
736: ,p_datetrack_mode => l_datetrack_mode
737: ,p_validation_start_date => l_validation_start_date

Line 851: pay_pbc_ins.ins

847: -- Having converted the arguments into the pay_pbc_rec
848: -- plsql record structure we call the corresponding record
849: -- business process.
850: --
851: pay_pbc_ins.ins
852: (p_effective_date
853: ,l_rec
854: );
855: --

Line 867: end pay_pbc_ins;

863: --
864: hr_utility.set_location(' Leaving:'||l_proc, 10);
865: End ins;
866: --
867: end pay_pbc_ins;