DBA Data[Home] [Help]

APPS.PAY_PUT_INS dependencies on PAY_PUT_INS

Line 1: Package Body pay_put_ins as

1: Package Body pay_put_ins as
2: /* $Header: pyputrhi.pkb 115.0 2003/09/23 08:07 tvankayl noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_put_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_put_ins.g_user_table_id_i := p_user_table_id;

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

Line 229: pay_put_ins.g_user_table_id_i;

225: Cursor C_Sel2 is
226: Select null
227: from pay_user_tables
228: where user_table_id =
229: pay_put_ins.g_user_table_id_i;
230: --
231: l_proc varchar2(72) := g_package||'pre_insert';
232: l_exists varchar2(1);
233: --

Line 237: If (pay_put_ins.g_user_table_id_i is not null) Then

233: --
234: Begin
235: hr_utility.set_location('Entering:'||l_proc, 5);
236: --
237: If (pay_put_ins.g_user_table_id_i is not null) Then
238: --
239: -- Verify registered primary key values not already in use
240: --
241: Open C_Sel2;

Line 257: pay_put_ins.g_user_table_id_i;

253: --
254: -- Use registered key values and clear globals
255: --
256: p_rec.user_table_id :=
257: pay_put_ins.g_user_table_id_i;
258: pay_put_ins.g_user_table_id_i := null;
259: Else
260: --
261: -- No registerd key values, so select the next sequence number

Line 258: pay_put_ins.g_user_table_id_i := null;

254: -- Use registered key values and clear globals
255: --
256: p_rec.user_table_id :=
257: pay_put_ins.g_user_table_id_i;
258: pay_put_ins.g_user_table_id_i := null;
259: Else
260: --
261: -- No registerd key values, so select the next sequence number
262: --

Line 382: pay_put_ins.pre_insert(p_rec);

378: hr_multi_message.end_validation_set;
379: --
380: -- Call the supporting pre-insert operation
381: --
382: pay_put_ins.pre_insert(p_rec);
383: --
384: -- Insert the row
385: --
386: pay_put_ins.insert_dml(p_rec);

Line 386: pay_put_ins.insert_dml(p_rec);

382: pay_put_ins.pre_insert(p_rec);
383: --
384: -- Insert the row
385: --
386: pay_put_ins.insert_dml(p_rec);
387: --
388: -- Call the supporting post-insert operation
389: --
390: pay_put_ins.post_insert

Line 390: pay_put_ins.post_insert

386: pay_put_ins.insert_dml(p_rec);
387: --
388: -- Call the supporting post-insert operation
389: --
390: pay_put_ins.post_insert
391: (p_effective_date
392: ,p_rec
393: );
394: --

Line 440: pay_put_ins.ins

436: --
437: -- Having converted the arguments into the pay_put_rec
438: -- plsql record structure we call the corresponding record business process.
439: --
440: pay_put_ins.ins
441: (p_effective_date
442: ,l_rec
443: );
444: --

Line 454: end pay_put_ins;

450: --
451: hr_utility.set_location(' Leaving:'||l_proc, 10);
452: End ins;
453: --
454: end pay_put_ins;