DBA Data[Home] [Help]

APPS.PAY_PYR_INS dependencies on PAY_PYR_INS

Line 1: Package Body pay_pyr_ins as

1: Package Body pay_pyr_ins as
2: /* $Header: pypyrrhi.pkb 115.3 2003/09/15 04:18:59 adhunter noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package VARCHAR2(33) := ' pay_pyr_ins.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package VARCHAR2(33) := ' pay_pyr_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_pyr_ins.g_rate_id_i := p_rate_id;

22: --
23: BEGIN
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: pay_pyr_ins.g_rate_id_i := p_rate_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: END set_base_key_value;
30: --

Line 235: pay_pyr_ins.g_rate_id_i;

231: CURSOR C_Sel2 IS
232: Select NULL
233: FROM pay_rates
234: WHERE rate_id =
235: pay_pyr_ins.g_rate_id_i;
236: --
237: l_proc VARCHAR2(72) := g_package||'pre_insert';
238: l_exists VARCHAR2(1);
239: --

Line 243: IF (pay_pyr_ins.g_rate_id_i IS not NULL) THEN

239: --
240: BEGIN
241: hr_utility.set_location('Entering:'||l_proc, 5);
242: --
243: IF (pay_pyr_ins.g_rate_id_i IS not NULL) THEN
244: --
245: -- Verify registered primary key values not already IN use
246: --
247: OPEN C_Sel2;

Line 263: pay_pyr_ins.g_rate_id_i;

259: --
260: -- Use registered key values AND clear globals
261: --
262: p_rec.rate_id :=
263: pay_pyr_ins.g_rate_id_i;
264: pay_pyr_ins.g_rate_id_i := NULL;
265: ELSE
266: --
267: -- No registerd key values, so SELECT the next sequence NUMBER

Line 264: pay_pyr_ins.g_rate_id_i := NULL;

260: -- Use registered key values AND clear globals
261: --
262: p_rec.rate_id :=
263: pay_pyr_ins.g_rate_id_i;
264: pay_pyr_ins.g_rate_id_i := NULL;
265: ELSE
266: --
267: -- No registerd key values, so SELECT the next sequence NUMBER
268: --

Line 435: pay_pyr_ins.pre_insert(p_rec);

431: hr_multi_message.end_validation_set;
432: --
433: -- Call the supporting pre-insert operation
434: --
435: pay_pyr_ins.pre_insert(p_rec);
436: --
437: -- Insert the row
438: --
439: pay_pyr_ins.insert_dml(p_rec);

Line 439: pay_pyr_ins.insert_dml(p_rec);

435: pay_pyr_ins.pre_insert(p_rec);
436: --
437: -- Insert the row
438: --
439: pay_pyr_ins.insert_dml(p_rec);
440: --
441: -- Call the supporting post-insert operation
442: --
443: pay_pyr_ins.post_insert

Line 443: pay_pyr_ins.post_insert

439: pay_pyr_ins.insert_dml(p_rec);
440: --
441: -- Call the supporting post-insert operation
442: --
443: pay_pyr_ins.post_insert
444: (p_effective_date
445: ,p_rec
446: );
447: --

Line 543: pay_pyr_ins.ins

539: --
540: -- Having converted the arguments INTO the pay_pyr_rec
541: -- plsql record structure we call the corresponding record business process.
542: --
543: pay_pyr_ins.ins
544: (p_effective_date
545: ,l_rec
546: );
547: --

Line 557: END pay_pyr_ins;

553: --
554: hr_utility.set_location(' Leaving:'||l_proc, 10);
555: END ins;
556: --
557: END pay_pyr_ins;