DBA Data[Home] [Help]

APPS.PAY_ETP_INS_ND dependencies on PAY_ETP_INS_ND

Line 1: Package Body pay_etp_ins_nd as

1: Package Body pay_etp_ins_nd as
2: /* $Header: pyetpmhi.pkb 120.3.12010000.3 2008/08/06 07:12:57 ubhat ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_etp_ins_nd.'; -- 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_etp_ins_nd.g_element_type_id_i := p_element_type_id;

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

Line 434: pay_etp_ins_nd.dt_insert_dml

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

Line 498: pay_etp_ins_nd.g_element_type_id_i;

494: Cursor C_Sel2 is
495: Select null
496: from pay_element_types_f
497: where element_type_id =
498: pay_etp_ins_nd.g_element_type_id_i;
499: --
500: l_proc varchar2(72) := g_package||'pre_insert';
501: l_exists varchar2(1);
502: --

Line 506: If (pay_etp_ins_nd.g_element_type_id_i is not null) Then

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

Line 526: pay_etp_ins_nd.g_element_type_id_i;

522: --
523: -- Use registered key values and clear globals
524: --
525: p_rec.element_type_id :=
526: pay_etp_ins_nd.g_element_type_id_i;
527: pay_etp_ins_nd.g_element_type_id_i := null;
528: Else
529: --
530: -- No registerd key values, so select the next sequence number

Line 527: pay_etp_ins_nd.g_element_type_id_i := null;

523: -- Use registered key values and clear globals
524: --
525: p_rec.element_type_id :=
526: pay_etp_ins_nd.g_element_type_id_i;
527: pay_etp_ins_nd.g_element_type_id_i := null;
528: Else
529: --
530: -- No registerd key values, so select the next sequence number
531: --

Line 907: pay_etp_ins_nd.ins_lck

903: hr_utility.set_location('Entering:'||l_proc, 5);
904: --
905: -- Call the lock operation
906: --
907: pay_etp_ins_nd.ins_lck
908: (p_effective_date => p_effective_date
909: ,p_datetrack_mode => l_datetrack_mode
910: ,p_rec => p_rec
911: ,p_validation_start_date => l_validation_start_date

Line 933: pay_etp_ins_nd.pre_insert

929: hr_multi_message.end_validation_set;
930: --
931: -- Call the supporting pre-insert operation
932: --
933: pay_etp_ins_nd.pre_insert
934: (p_rec => p_rec
935: ,p_effective_date => p_effective_date
936: ,p_datetrack_mode => l_datetrack_mode
937: ,p_validation_start_date => l_validation_start_date

Line 943: pay_etp_ins_nd.insert_dml

939: );
940: --
941: -- Insert the row
942: --
943: pay_etp_ins_nd.insert_dml
944: (p_rec => p_rec
945: ,p_effective_date => p_effective_date
946: ,p_datetrack_mode => l_datetrack_mode
947: ,p_validation_start_date => l_validation_start_date

Line 953: pay_etp_ins_nd.post_insert

949: );
950: --
951: -- Call the supporting post-insert operation
952: --
953: pay_etp_ins_nd.post_insert
954: (p_rec => p_rec
955: ,p_effective_date => p_effective_date
956: ,p_datetrack_mode => l_datetrack_mode
957: ,p_validation_start_date => l_validation_start_date

Line 1175: pay_etp_ins_nd.ins

1171: -- Having converted the arguments into the pay_etp_rec
1172: -- plsql record structure we call the corresponding record
1173: -- business process.
1174: --
1175: pay_etp_ins_nd.ins
1176: (p_effective_date
1177: ,l_rec
1178: ,l_processing_priority_warning
1179: );

Line 1193: end pay_etp_ins_nd;

1189: --
1190: hr_utility.set_location(' Leaving:'||l_proc, 10);
1191: End ins;
1192: --
1193: end pay_etp_ins_nd;