DBA Data[Home] [Help]

APPS.PAY_RCU_INS dependencies on PAY_RCU_INS

Line 1: Package Body pay_rcu_ins as

1: Package Body pay_rcu_ins as
2: /* $Header: pyrcurhi.pkb 120.1.12020000.2 2012/09/23 07:50:52 jkvallab ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_rcu_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_rcu_ins.g_retro_component_usage_id_i := p_retro_component_usage_id;

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

Line 235: pay_rcu_ins.g_retro_component_usage_id_i;

231: Cursor C_Sel2 is
232: Select null
233: from pay_retro_component_usages
234: where retro_component_usage_id =
235: pay_rcu_ins.g_retro_component_usage_id_i;
236: --
237: l_proc varchar2(72) := g_package||'pre_insert';
238: l_exists varchar2(1);
239: --

Line 243: If (pay_rcu_ins.g_retro_component_usage_id_i is not null) Then

239: --
240: Begin
241: hr_utility.set_location('Entering:'||l_proc, 5);
242: --
243: If (pay_rcu_ins.g_retro_component_usage_id_i is not null) Then
244: --
245: -- Verify registered primary key values not already in use
246: --
247: Open C_Sel2;

Line 263: pay_rcu_ins.g_retro_component_usage_id_i;

259: --
260: -- Use registered key values and clear globals
261: --
262: p_rec.retro_component_usage_id :=
263: pay_rcu_ins.g_retro_component_usage_id_i;
264: pay_rcu_ins.g_retro_component_usage_id_i := null;
265: Else
266: --
267: -- No registerd key values, so select the next sequence number

Line 264: pay_rcu_ins.g_retro_component_usage_id_i := null;

260: -- Use registered key values and clear globals
261: --
262: p_rec.retro_component_usage_id :=
263: pay_rcu_ins.g_retro_component_usage_id_i;
264: pay_rcu_ins.g_retro_component_usage_id_i := null;
265: Else
266: --
267: -- No registerd key values, so select the next sequence number
268: --

Line 393: pay_rcu_ins.pre_insert(p_rec);

389: hr_multi_message.end_validation_set;
390: --
391: -- Call the supporting pre-insert operation
392: --
393: pay_rcu_ins.pre_insert(p_rec);
394: --
395: -- Insert the row
396: --
397: pay_rcu_ins.insert_dml(p_rec);

Line 397: pay_rcu_ins.insert_dml(p_rec);

393: pay_rcu_ins.pre_insert(p_rec);
394: --
395: -- Insert the row
396: --
397: pay_rcu_ins.insert_dml(p_rec);
398: --
399: -- Call the supporting post-insert operation
400: --
401: pay_rcu_ins.post_insert

Line 401: pay_rcu_ins.post_insert

397: pay_rcu_ins.insert_dml(p_rec);
398: --
399: -- Call the supporting post-insert operation
400: --
401: pay_rcu_ins.post_insert
402: (p_effective_date
403: ,p_rec
404: );
405: --

Line 457: pay_rcu_ins.ins

453: --
454: -- Having converted the arguments into the pay_rcu_rec
455: -- plsql record structure we call the corresponding record business process.
456: --
457: pay_rcu_ins.ins
458: (p_effective_date
459: ,l_rec
460: );
461: --

Line 471: end pay_rcu_ins;

467: --
468: hr_utility.set_location(' Leaving:'||l_proc, 10);
469: End ins;
470: --
471: end pay_rcu_ins;