DBA Data[Home] [Help]

APPS.PAY_PRF_INS dependencies on PAY_PRF_INS

Line 1: Package Body pay_prf_ins as

1: Package Body pay_prf_ins as
2: /* $Header: pyprfrhi.pkb 120.0 2005/05/29 07:49 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_prf_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_prf_ins.g_range_table_id_i := p_range_table_id;

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

Line 361: pay_prf_ins.g_range_table_id_i;

357: Cursor C_Sel2 is
358: Select null
359: from pay_range_tables_f
360: where range_table_id =
361: pay_prf_ins.g_range_table_id_i;
362: --
363: l_proc varchar2(72) := g_package||'pre_insert';
364: l_exists varchar2(1);
365: --

Line 369: If (pay_prf_ins.g_range_table_id_i is not null) Then

365: --
366: Begin
367: hr_utility.set_location('Entering:'||l_proc, 5);
368: --
369: If (pay_prf_ins.g_range_table_id_i is not null) Then
370: --
371: -- Verify registered primary key values not already in use
372: --
373: Open C_Sel2;

Line 389: pay_prf_ins.g_range_table_id_i;

385: --
386: -- Use registered key values and clear globals
387: --
388: p_rec.range_table_id :=
389: pay_prf_ins.g_range_table_id_i;
390: pay_prf_ins.g_range_table_id_i := null;
391: Else
392: --
393: -- No registerd key values, so select the next sequence number

Line 390: pay_prf_ins.g_range_table_id_i := null;

386: -- Use registered key values and clear globals
387: --
388: p_rec.range_table_id :=
389: pay_prf_ins.g_range_table_id_i;
390: pay_prf_ins.g_range_table_id_i := null;
391: Else
392: --
393: -- No registerd key values, so select the next sequence number
394: --

Line 642: pay_prf_ins.pre_insert(p_rec);

638: hr_multi_message.end_validation_set;
639: --
640: -- Call the supporting pre-insert operation
641: --
642: pay_prf_ins.pre_insert(p_rec);
643: --
644: -- Insert the row
645: --
646: pay_prf_ins.insert_dml(p_rec);

Line 646: pay_prf_ins.insert_dml(p_rec);

642: pay_prf_ins.pre_insert(p_rec);
643: --
644: -- Insert the row
645: --
646: pay_prf_ins.insert_dml(p_rec);
647: --
648: -- Call the supporting post-insert operation
649: --
650:

Line 653: pay_prf_ins.post_insert

649: --
650:
651: -- Commented Because not User Hook support is not provided.
652: /*
653: pay_prf_ins.post_insert
654: (p_rec
655: );
656: */
657:

Line 835: pay_prf_ins.ins

831: --
832: -- Having converted the arguments into the pay_prf_rec
833: -- plsql record structure we call the corresponding record business process.
834: --
835: pay_prf_ins.ins
836: (l_rec
837: );
838: --
839: -- As the primary key argument(s)

Line 848: end pay_prf_ins;

844: --
845: hr_utility.set_location(' Leaving:'||l_proc, 10);
846: End ins;
847: --
848: end pay_prf_ins;