DBA Data[Home] [Help]

APPS.PAY_PAY_INS dependencies on PAY_PAY_INS

Line 1: Package Body pay_pay_ins as

1: Package Body pay_pay_ins as
2: /* $Header: pypayrhi.pkb 120.0.12000000.3 2007/03/08 09:23:27 mshingan noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_pay_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_pay_ins.g_payroll_id_i := p_payroll_id;

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

Line 436: pay_pay_ins.dt_insert_dml

432: --
433: Begin
434: hr_utility.set_location('Entering:'||l_proc, 5);
435: --
436: pay_pay_ins.dt_insert_dml
437: (p_rec => p_rec
438: ,p_effective_date => p_effective_date
439: ,p_datetrack_mode => p_datetrack_mode
440: ,p_validation_start_date => p_validation_start_date

Line 500: pay_pay_ins.g_payroll_id_i;

496: Cursor C_Sel2 is
497: Select null
498: from pay_all_payrolls_f
499: where payroll_id =
500: pay_pay_ins.g_payroll_id_i;
501: --
502: l_proc varchar2(72) := g_package||'pre_insert';
503: l_exists varchar2(1);
504: --

Line 508: If (pay_pay_ins.g_payroll_id_i is not null) Then

504: --
505: Begin
506: hr_utility.set_location('Entering:'||l_proc, 5);
507: --
508: If (pay_pay_ins.g_payroll_id_i is not null) Then
509: --
510: -- Verify registered primary key values not already in use
511: --
512: Open C_Sel2;

Line 529: p_rec.payroll_id := pay_pay_ins.g_payroll_id_i;

525: Close C_Sel2;
526: --
527: -- Use registered key values and clear globals
528: --
529: p_rec.payroll_id := pay_pay_ins.g_payroll_id_i;
530: pay_pay_ins.g_payroll_id_i := null;
531: Else
532: --
533: -- No registerd key values, so select the next sequence number

Line 530: pay_pay_ins.g_payroll_id_i := null;

526: --
527: -- Use registered key values and clear globals
528: --
529: p_rec.payroll_id := pay_pay_ins.g_payroll_id_i;
530: pay_pay_ins.g_payroll_id_i := null;
531: Else
532: --
533: -- No registerd key values, so select the next sequence number
534: --

Line 963: pay_pay_ins.ins_lck

959:
960: --
961: -- Call the lock operation
962: --
963: pay_pay_ins.ins_lck
964: (p_effective_date => p_effective_date
965: ,p_datetrack_mode => l_datetrack_mode
966: ,p_rec => p_rec
967: ,p_validation_start_date => l_validation_start_date

Line 986: pay_pay_ins.pre_insert

982: hr_multi_message.end_validation_set;
983: --
984: -- Call the supporting pre-insert operation
985: --
986: pay_pay_ins.pre_insert
987: (p_rec => p_rec
988: ,p_effective_date => p_effective_date
989: ,p_datetrack_mode => l_datetrack_mode
990: ,p_validation_start_date => l_validation_start_date

Line 996: pay_pay_ins.insert_dml

992: );
993: --
994: -- Insert the row
995: --
996: pay_pay_ins.insert_dml
997: (p_rec => p_rec
998: ,p_effective_date => p_effective_date
999: ,p_datetrack_mode => l_datetrack_mode
1000: ,p_validation_start_date => l_validation_start_date

Line 1006: pay_pay_ins.post_insert

1002: );
1003: --
1004: -- Call the supporting post-insert operation
1005: --
1006: pay_pay_ins.post_insert
1007: (p_rec => p_rec
1008: ,p_effective_date => p_effective_date
1009: ,p_datetrack_mode => l_datetrack_mode
1010: ,p_validation_start_date => l_validation_start_date

Line 1211: pay_pay_ins.ins

1207: -- Having converted the arguments into the pay_pay_rec
1208: -- plsql record structure we call the corresponding record
1209: -- business process.
1210: --
1211: pay_pay_ins.ins
1212: (p_effective_date
1213: ,l_rec
1214: );
1215: --

Line 1227: end pay_pay_ins;

1223: --
1224: hr_utility.set_location(' Leaving:'||l_proc, 10);
1225: End ins;
1226: --
1227: end pay_pay_ins;