DBA Data[Home] [Help]

APPS.PAY_PBA_INS dependencies on PAY_PBA_INS

Line 1: Package Body pay_pba_ins as

1: Package Body pay_pba_ins as
2: /* $Header: pypbarhi.pkb 120.1 2005/09/05 06:39:03 adkumar noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_pba_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_pba_ins.g_balance_attribute_id_i := p_balance_attribute_id;

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

Line 220: pay_pba_ins.g_balance_attribute_id_i;

216: Cursor C_Sel2 is
217: Select null
218: from pay_balance_attributes
219: where balance_attribute_id =
220: pay_pba_ins.g_balance_attribute_id_i;
221: --
222: l_proc varchar2(72) := g_package||'pre_insert';
223: l_exists varchar2(1);
224: --

Line 228: If (pay_pba_ins.g_balance_attribute_id_i is not null) Then

224: --
225: Begin
226: hr_utility.set_location('Entering:'||l_proc, 5);
227: --
228: If (pay_pba_ins.g_balance_attribute_id_i is not null) Then
229: --
230: -- Verify registered primary key values not already in use
231: --
232: Open C_Sel2;

Line 248: pay_pba_ins.g_balance_attribute_id_i;

244: --
245: -- Use registered key values and clear globals
246: --
247: p_rec.balance_attribute_id :=
248: pay_pba_ins.g_balance_attribute_id_i;
249: pay_pba_ins.g_balance_attribute_id_i := null;
250: Else
251: --
252: -- No registerd key values, so select the next sequence number

Line 249: pay_pba_ins.g_balance_attribute_id_i := null;

245: -- Use registered key values and clear globals
246: --
247: p_rec.balance_attribute_id :=
248: pay_pba_ins.g_balance_attribute_id_i;
249: pay_pba_ins.g_balance_attribute_id_i := null;
250: Else
251: --
252: -- No registerd key values, so select the next sequence number
253: --

Line 362: pay_pba_ins.pre_insert(p_rec);

358: hr_multi_message.end_validation_set;
359: --
360: -- Call the supporting pre-insert operation
361: --
362: pay_pba_ins.pre_insert(p_rec);
363: --
364: -- Insert the row
365: --
366: pay_pba_ins.insert_dml(p_rec);

Line 366: pay_pba_ins.insert_dml(p_rec);

362: pay_pba_ins.pre_insert(p_rec);
363: --
364: -- Insert the row
365: --
366: pay_pba_ins.insert_dml(p_rec);
367: --
368: -- Call the supporting post-insert operation
369: --
370: pay_pba_ins.post_insert

Line 370: pay_pba_ins.post_insert

366: pay_pba_ins.insert_dml(p_rec);
367: --
368: -- Call the supporting post-insert operation
369: --
370: pay_pba_ins.post_insert
371: (p_rec
372: );
373: --
374: -- Call to raise any errors on multi-message list

Line 412: pay_pba_ins.ins

408: --
409: -- Having converted the arguments into the pay_pba_rec
410: -- plsql record structure we call the corresponding record business process.
411: --
412: pay_pba_ins.ins
413: (l_rec
414: );
415: --
416: -- As the primary key argument(s)

Line 424: end pay_pba_ins;

420: --
421: hr_utility.set_location(' Leaving:'||l_proc, 10);
422: End ins;
423: --
424: end pay_pba_ins;