DBA Data[Home] [Help]

APPS.PAY_RAN_INS dependencies on PAY_RAN_INS

Line 1: Package Body pay_ran_ins as

1: Package Body pay_ran_ins as
2: /* $Header: pyranrhi.pkb 120.0.12000000.2 2007/02/10 10:03:01 vetsrini noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_ran_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_ran_ins.g_range_id_i := p_range_id;

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

Line 195: pay_ran_ins.g_range_id_i;

191: Cursor C_Sel2 is
192: Select null
193: from pay_ranges_f
194: where range_id =
195: pay_ran_ins.g_range_id_i;
196: --
197: l_proc varchar2(72) := g_package||'pre_insert';
198: l_exists varchar2(1);
199: --

Line 203: If (pay_ran_ins.g_range_id_i is not null) Then

199: --
200: Begin
201: hr_utility.set_location('Entering:'||l_proc, 5);
202: --
203: If (pay_ran_ins.g_range_id_i is not null) Then
204: --
205: -- Verify registered primary key values not already in use
206: --
207: Open C_Sel2;

Line 223: pay_ran_ins.g_range_id_i;

219: --
220: -- Use registered key values and clear globals
221: --
222: p_rec.range_id :=
223: pay_ran_ins.g_range_id_i;
224: pay_ran_ins.g_range_id_i := null;
225: Else
226: --
227: -- No registerd key values, so select the next sequence number

Line 224: pay_ran_ins.g_range_id_i := null;

220: -- Use registered key values and clear globals
221: --
222: p_rec.range_id :=
223: pay_ran_ins.g_range_id_i;
224: pay_ran_ins.g_range_id_i := null;
225: Else
226: --
227: -- No registerd key values, so select the next sequence number
228: --

Line 337: pay_ran_ins.pre_insert(p_rec);

333: hr_multi_message.end_validation_set;
334: --
335: -- Call the supporting pre-insert operation
336: --
337: pay_ran_ins.pre_insert(p_rec);
338: --
339: -- Insert the row
340: --
341: pay_ran_ins.insert_dml(p_rec);

Line 341: pay_ran_ins.insert_dml(p_rec);

337: pay_ran_ins.pre_insert(p_rec);
338: --
339: -- Insert the row
340: --
341: pay_ran_ins.insert_dml(p_rec);
342: --
343: -- Call the supporting post-insert operation
344: --
345:

Line 348: pay_ran_ins.post_insert

344: --
345:
346: -- Commented Because the User Hook is not provided now
347: /*
348: pay_ran_ins.post_insert
349: (p_rec
350: );
351: */
352:

Line 412: pay_ran_ins.ins

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

Line 425: end pay_ran_ins;

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