DBA Data[Home] [Help]

APPS.PAY_BAD_INS dependencies on PAY_BAD_INS

Line 1: Package Body pay_bad_ins as

1: Package Body pay_bad_ins as
2: /* $Header: pybadrhi.pkb 115.3 2003/05/28 18:43:28 rthirlby noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_bad_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_bad_ins.g_attribute_id_i := p_attribute_id;

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

Line 224: pay_bad_ins.g_attribute_id_i;

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

Line 232: If (pay_bad_ins.g_attribute_id_i is not null) Then

228: --
229: Begin
230: hr_utility.set_location('Entering:'||l_proc, 5);
231: --
232: If (pay_bad_ins.g_attribute_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_bad_ins.g_attribute_id_i;

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

Line 253: pay_bad_ins.g_attribute_id_i := null;

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

Line 372: pay_bad_ins.pre_insert(p_rec);

368: hr_multi_message.end_validation_set;
369: --
370: -- Call the supporting pre-insert operation
371: --
372: pay_bad_ins.pre_insert(p_rec);
373: --
374: -- Insert the row
375: --
376: pay_bad_ins.insert_dml(p_rec);

Line 376: pay_bad_ins.insert_dml(p_rec);

372: pay_bad_ins.pre_insert(p_rec);
373: --
374: -- Insert the row
375: --
376: pay_bad_ins.insert_dml(p_rec);
377: --
378: -- Call the supporting post-insert operation
379: --
380: pay_bad_ins.post_insert

Line 380: pay_bad_ins.post_insert

376: pay_bad_ins.insert_dml(p_rec);
377: --
378: -- Call the supporting post-insert operation
379: --
380: pay_bad_ins.post_insert
381: (p_effective_date
382: ,p_rec
383: );
384: --

Line 426: pay_bad_ins.ins

422: --
423: -- Having converted the arguments into the pay_bad_rec
424: -- plsql record structure we call the corresponding record business process.
425: --
426: pay_bad_ins.ins
427: (p_effective_date
428: ,l_rec
429: );
430: --

Line 439: end pay_bad_ins;

435: --
436: hr_utility.set_location(' Leaving:'||l_proc, 10);
437: End ins;
438: --
439: end pay_bad_ins;