DBA Data[Home] [Help]

APPS.PAY_PBD_INS dependencies on PAY_PBD_INS

Line 1: Package Body pay_pbd_ins as

1: Package Body pay_pbd_ins as
2: /* $Header: pypbdrhi.pkb 115.1 2002/12/11 15:12:08 exjones noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_pbd_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_pbd_ins.g_bal_attribute_default_id_i := p_bal_attribute_default_id;

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

Line 224: pay_pbd_ins.g_bal_attribute_default_id_i;

220: Cursor C_Sel2 is
221: Select null
222: from pay_bal_attribute_defaults
223: where bal_attribute_default_id =
224: pay_pbd_ins.g_bal_attribute_default_id_i;
225: --
226: l_proc varchar2(72) := g_package||'pre_insert';
227: l_exists varchar2(1);
228: --

Line 232: If (pay_pbd_ins.g_bal_attribute_default_id_i is not null) Then

228: --
229: Begin
230: hr_utility.set_location('Entering:'||l_proc, 5);
231: --
232: If (pay_pbd_ins.g_bal_attribute_default_id_i is not null) Then
233: --
234: -- Verify registered primary key values not already in use
235: --
236: Open C_Sel2;

Line 252: pay_pbd_ins.g_bal_attribute_default_id_i;

248: --
249: -- Use registered key values and clear globals
250: --
251: p_rec.bal_attribute_default_id :=
252: pay_pbd_ins.g_bal_attribute_default_id_i;
253: pay_pbd_ins.g_bal_attribute_default_id_i := null;
254: Else
255: --
256: -- No registerd key values, so select the next sequence number

Line 253: pay_pbd_ins.g_bal_attribute_default_id_i := null;

249: -- Use registered key values and clear globals
250: --
251: p_rec.bal_attribute_default_id :=
252: pay_pbd_ins.g_bal_attribute_default_id_i;
253: pay_pbd_ins.g_bal_attribute_default_id_i := null;
254: Else
255: --
256: -- No registerd key values, so select the next sequence number
257: --

Line 368: pay_pbd_ins.pre_insert(p_rec);

364: hr_multi_message.end_validation_set;
365: --
366: -- Call the supporting pre-insert operation
367: --
368: pay_pbd_ins.pre_insert(p_rec);
369: --
370: -- Insert the row
371: --
372: pay_pbd_ins.insert_dml(p_rec);

Line 372: pay_pbd_ins.insert_dml(p_rec);

368: pay_pbd_ins.pre_insert(p_rec);
369: --
370: -- Insert the row
371: --
372: pay_pbd_ins.insert_dml(p_rec);
373: --
374: -- Call the supporting post-insert operation
375: --
376: pay_pbd_ins.post_insert

Line 376: pay_pbd_ins.post_insert

372: pay_pbd_ins.insert_dml(p_rec);
373: --
374: -- Call the supporting post-insert operation
375: --
376: pay_pbd_ins.post_insert
377: (p_rec
378: );
379: --
380: -- Call to raise any errors on multi-message list

Line 420: pay_pbd_ins.ins

416: --
417: -- Having converted the arguments into the pay_pbd_rec
418: -- plsql record structure we call the corresponding record business process.
419: --
420: pay_pbd_ins.ins
421: (l_rec
422: );
423: --
424: -- As the primary key argument(s)

Line 432: end pay_pbd_ins;

428: --
429: hr_utility.set_location(' Leaving:'||l_proc, 10);
430: End ins;
431: --
432: end pay_pbd_ins;