DBA Data[Home] [Help]

APPS.PAY_BLD_INS dependencies on PAY_BLD_INS

Line 1: Package Body pay_bld_ins as

1: Package Body pay_bld_ins as
2: /* $Header: pybldrhi.pkb 120.0 2005/05/29 03:19 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_bld_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_bld_ins.g_balance_dimension_id_i := p_balance_dimension_id;

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

Line 253: pay_bld_ins.g_balance_dimension_id_i;

249: Cursor C_Sel2 is
250: Select null
251: from pay_balance_dimensions
252: where balance_dimension_id =
253: pay_bld_ins.g_balance_dimension_id_i;
254: --
255: l_proc varchar2(72) := g_package||'pre_insert';
256: l_exists varchar2(1);
257: --

Line 261: If (pay_bld_ins.g_balance_dimension_id_i is not null) Then

257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: --
261: If (pay_bld_ins.g_balance_dimension_id_i is not null) Then
262: --
263: -- Verify registered primary key values not already in use
264: --
265: Open C_Sel2;

Line 281: pay_bld_ins.g_balance_dimension_id_i;

277: --
278: -- Use registered key values and clear globals
279: --
280: p_rec.balance_dimension_id :=
281: pay_bld_ins.g_balance_dimension_id_i;
282: pay_bld_ins.g_balance_dimension_id_i := null;
283: Else
284: --
285: -- No registerd key values, so select the next sequence number

Line 282: pay_bld_ins.g_balance_dimension_id_i := null;

278: -- Use registered key values and clear globals
279: --
280: p_rec.balance_dimension_id :=
281: pay_bld_ins.g_balance_dimension_id_i;
282: pay_bld_ins.g_balance_dimension_id_i := null;
283: Else
284: --
285: -- No registerd key values, so select the next sequence number
286: --

Line 425: pay_bld_ins.pre_insert(p_rec);

421: hr_multi_message.end_validation_set;
422: --
423: -- Call the supporting pre-insert operation
424: --
425: pay_bld_ins.pre_insert(p_rec);
426: --
427: -- Insert the row
428: --
429: pay_bld_ins.insert_dml(p_rec);

Line 429: pay_bld_ins.insert_dml(p_rec);

425: pay_bld_ins.pre_insert(p_rec);
426: --
427: -- Insert the row
428: --
429: pay_bld_ins.insert_dml(p_rec);
430: --
431: -- Call the supporting post-insert operation
432: --
433: pay_bld_ins.post_insert

Line 433: pay_bld_ins.post_insert

429: pay_bld_ins.insert_dml(p_rec);
430: --
431: -- Call the supporting post-insert operation
432: --
433: pay_bld_ins.post_insert
434: (p_rec
435: );
436: --
437: -- Call to raise any errors on multi-message list

Line 505: pay_bld_ins.ins

501: --
502: -- Having converted the arguments into the pay_bld_rec
503: -- plsql record structure we call the corresponding record business process.
504: --
505: pay_bld_ins.ins
506: (l_rec
507: );
508: --
509: -- As the primary key argument(s)

Line 518: end pay_bld_ins;

514: --
515: hr_utility.set_location(' Leaving:'||l_proc, 10);
516: End ins;
517: --
518: end pay_bld_ins;