DBA Data[Home] [Help]

APPS.PAY_CAL_INS dependencies on PAY_CAL_INS

Line 1: Package Body pay_cal_ins as

1: Package Body pay_cal_ins as
2: /* $Header: pycalrhi.pkb 120.1.12020000.2 2012/07/04 21:43:33 amnaraya ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_cal_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_cal_ins.g_cost_allocation_id_i := p_cost_allocation_id;

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

Line 233: pay_cal_ins.dt_insert_dml

229: --
230: Begin
231: hr_utility.set_location('Entering:'||l_proc, 5);
232: --
233: pay_cal_ins.dt_insert_dml
234: (p_rec => p_rec
235: ,p_effective_date => p_effective_date
236: ,p_datetrack_mode => p_datetrack_mode
237: ,p_validation_start_date => p_validation_start_date

Line 297: pay_cal_ins.g_cost_allocation_id_i;

293: Cursor C_Sel2 is
294: Select null
295: from pay_cost_allocations_f
296: where cost_allocation_id =
297: pay_cal_ins.g_cost_allocation_id_i;
298: --
299: l_proc varchar2(72) := g_package||'pre_insert';
300: l_exists varchar2(1);
301: --

Line 305: If (pay_cal_ins.g_cost_allocation_id_i is not null) Then

301: --
302: Begin
303: hr_utility.set_location('Entering:'||l_proc, 5);
304: --
305: If (pay_cal_ins.g_cost_allocation_id_i is not null) Then
306: --
307: -- Verify registered primary key values not already in use
308: --
309: Open C_Sel2;

Line 325: pay_cal_ins.g_cost_allocation_id_i;

321: --
322: -- Use registered key values and clear globals
323: --
324: p_rec.cost_allocation_id :=
325: pay_cal_ins.g_cost_allocation_id_i;
326: pay_cal_ins.g_cost_allocation_id_i := null;
327: Else
328: --
329: -- No registerd key values, so select the next sequence number

Line 326: pay_cal_ins.g_cost_allocation_id_i := null;

322: -- Use registered key values and clear globals
323: --
324: p_rec.cost_allocation_id :=
325: pay_cal_ins.g_cost_allocation_id_i;
326: pay_cal_ins.g_cost_allocation_id_i := null;
327: Else
328: --
329: -- No registerd key values, so select the next sequence number
330: --

Line 528: pay_cal_ins.ins_lck

524: hr_utility.set_location('Entering:'||l_proc, 5);
525: --
526: -- Call the lock operation
527: --
528: pay_cal_ins.ins_lck
529: (p_effective_date => p_effective_date
530: ,p_datetrack_mode => l_datetrack_mode
531: ,p_rec => p_rec
532: ,p_validation_start_date => l_validation_start_date

Line 551: pay_cal_ins.pre_insert

547: hr_multi_message.end_validation_set;
548: --
549: -- Call the supporting pre-insert operation
550: --
551: pay_cal_ins.pre_insert
552: (p_rec => p_rec
553: ,p_effective_date => p_effective_date
554: ,p_datetrack_mode => l_datetrack_mode
555: ,p_validation_start_date => l_validation_start_date

Line 561: pay_cal_ins.insert_dml

557: );
558: --
559: -- Insert the row
560: --
561: pay_cal_ins.insert_dml
562: (p_rec => p_rec
563: ,p_effective_date => p_effective_date
564: ,p_datetrack_mode => l_datetrack_mode
565: ,p_validation_start_date => l_validation_start_date

Line 571: pay_cal_ins.post_insert

567: );
568: --
569: -- Call the supporting post-insert operation
570: --
571: pay_cal_ins.post_insert
572: (p_rec => p_rec
573: ,p_effective_date => p_effective_date
574: ,p_datetrack_mode => l_datetrack_mode
575: ,p_validation_start_date => l_validation_start_date

Line 633: pay_cal_ins.ins

629: -- Having converted the arguments into the pay_cal_rec
630: -- plsql record structure we call the corresponding record
631: -- business process.
632: --
633: pay_cal_ins.ins
634: (p_effective_date
635: ,l_rec
636: );
637: --

Line 649: end pay_cal_ins;

645: --
646: hr_utility.set_location(' Leaving:'||l_proc, 10);
647: End ins;
648: --
649: end pay_cal_ins;