DBA Data[Home] [Help]

APPS.PAY_PRT_INS dependencies on PAY_PRT_INS

Line 1: Package Body pay_prt_ins as

1: Package Body pay_prt_ins as
2: /* $Header: pyprtrhi.pkb 120.1 2011/03/10 05:48:33 abdash ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_prt_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_prt_ins.g_run_type_id_i := p_run_type_id;

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

Line 336: pay_prt_ins.dt_insert_dml

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

Line 400: pay_prt_ins.g_run_type_id_i;

396: Cursor C_Sel2 is
397: Select null
398: from pay_run_types_f
399: where run_type_id =
400: pay_prt_ins.g_run_type_id_i;
401: --
402: l_proc varchar2(72) := g_package||'pre_insert';
403: l_exists varchar2(1);
404: Begin

Line 407: If (pay_prt_ins.g_run_type_id_i is not null) Then

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

Line 427: pay_prt_ins.g_run_type_id_i;

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

Line 428: pay_prt_ins.g_run_type_id_i := null;

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

Line 692: pay_prt_ins.ins_lck

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

Line 712: pay_prt_ins.pre_insert

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

Line 722: pay_prt_ins.insert_dml

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

Line 732: pay_prt_ins.post_insert

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

Line 849: pay_prt_ins.ins

845: -- Having converted the arguments into the pay_prt_rec
846: -- plsql record structure we call the corresponding record
847: -- business process.
848: --
849: pay_prt_ins.ins
850: (p_effective_date
851: ,l_rec
852: );
853: --

Line 865: end pay_prt_ins;

861: --
862: hr_utility.set_location(' Leaving:'||l_proc, 10);
863: End ins;
864: --
865: end pay_prt_ins;