DBA Data[Home] [Help]

APPS.PAY_TFU_INS dependencies on PAY_TFU_INS

Line 1: Package Body pay_tfu_ins as

1: Package Body pay_tfu_ins as
2: /* $Header: pytfurhi.pkb 120.0 2005/05/29 09:04 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_tfu_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_tfu_ins.g_template_ff_usage_id_i := p_template_ff_usage_id;

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

Line 177: pay_tfu_ins.g_template_ff_usage_id_i;

173: Cursor C_Sel2 is
174: Select null
175: from pay_template_ff_usages
176: where template_ff_usage_id =
177: pay_tfu_ins.g_template_ff_usage_id_i;
178: --
179: l_proc varchar2(72) := g_package||'pre_insert';
180: l_exists varchar2(1);
181: --

Line 185: If (pay_tfu_ins.g_template_ff_usage_id_i is not null) Then

181: --
182: Begin
183: hr_utility.set_location('Entering:'||l_proc, 5);
184: --
185: If (pay_tfu_ins.g_template_ff_usage_id_i is not null) Then
186: --
187: -- Verify registered primary key values not already in use
188: --
189: Open C_Sel2;

Line 205: pay_tfu_ins.g_template_ff_usage_id_i;

201: --
202: -- Use registered key values and clear globals
203: --
204: p_rec.template_ff_usage_id :=
205: pay_tfu_ins.g_template_ff_usage_id_i;
206: pay_tfu_ins.g_template_ff_usage_id_i := null;
207: Else
208: --
209: -- No registerd key values, so select the next sequence number

Line 206: pay_tfu_ins.g_template_ff_usage_id_i := null;

202: -- Use registered key values and clear globals
203: --
204: p_rec.template_ff_usage_id :=
205: pay_tfu_ins.g_template_ff_usage_id_i;
206: pay_tfu_ins.g_template_ff_usage_id_i := null;
207: Else
208: --
209: -- No registerd key values, so select the next sequence number
210: --

Line 292: pay_tfu_ins.pre_insert(p_rec);

288: hr_multi_message.end_validation_set;
289: --
290: -- Call the supporting pre-insert operation
291: --
292: pay_tfu_ins.pre_insert(p_rec);
293: --
294: -- Insert the row
295: --
296: pay_tfu_ins.insert_dml(p_rec);

Line 296: pay_tfu_ins.insert_dml(p_rec);

292: pay_tfu_ins.pre_insert(p_rec);
293: --
294: -- Insert the row
295: --
296: pay_tfu_ins.insert_dml(p_rec);
297: --
298: -- Call the supporting post-insert operation
299: --
300: pay_tfu_ins.post_insert

Line 300: pay_tfu_ins.post_insert

296: pay_tfu_ins.insert_dml(p_rec);
297: --
298: -- Call the supporting post-insert operation
299: --
300: pay_tfu_ins.post_insert
301: (p_effective_date
302: ,p_rec
303: );
304: --

Line 346: pay_tfu_ins.ins

342: --
343: -- Having converted the arguments into the pay_tfu_rec
344: -- plsql record structure we call the corresponding record business process.
345: --
346: pay_tfu_ins.ins
347: (p_effective_date
348: ,l_rec
349: );
350: --

Line 360: end pay_tfu_ins;

356: --
357: hr_utility.set_location(' Leaving:'||l_proc, 10);
358: End ins;
359: --
360: end pay_tfu_ins;