DBA Data[Home] [Help]

APPS.FF_FFN_INS dependencies on FF_FFN_INS

Line 1: Package Body ff_ffn_ins as

1: Package Body ff_ffn_ins as
2: /* $Header: ffffnrhi.pkb 120.1 2005/10/05 01:50 adkumar noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' ff_ffn_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: ff_ffn_ins.g_function_id_i := p_function_id;

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

Line 233: ff_ffn_ins.g_function_id_i;

229: Cursor C_Sel2 is
230: Select null
231: from ff_functions
232: where function_id =
233: ff_ffn_ins.g_function_id_i;
234: --
235: l_proc varchar2(72) := g_package||'pre_insert';
236: l_exists varchar2(1);
237: --

Line 241: If (ff_ffn_ins.g_function_id_i is not null) Then

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

Line 261: ff_ffn_ins.g_function_id_i;

257: --
258: -- Use registered key values and clear globals
259: --
260: p_rec.function_id :=
261: ff_ffn_ins.g_function_id_i;
262: ff_ffn_ins.g_function_id_i := null;
263: Else
264: --
265: -- No registerd key values, so select the next sequence number

Line 262: ff_ffn_ins.g_function_id_i := null;

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

Line 379: ff_ffn_ins.pre_insert(p_rec);

375: hr_multi_message.end_validation_set;
376: --
377: -- Call the supporting pre-insert operation
378: --
379: ff_ffn_ins.pre_insert(p_rec);
380: --
381: -- Insert the row
382: --
383: ff_ffn_ins.insert_dml(p_rec);

Line 383: ff_ffn_ins.insert_dml(p_rec);

379: ff_ffn_ins.pre_insert(p_rec);
380: --
381: -- Insert the row
382: --
383: ff_ffn_ins.insert_dml(p_rec);
384: --
385: -- Call the supporting post-insert operation
386: --
387: ff_ffn_ins.post_insert

Line 387: ff_ffn_ins.post_insert

383: ff_ffn_ins.insert_dml(p_rec);
384: --
385: -- Call the supporting post-insert operation
386: --
387: ff_ffn_ins.post_insert
388: (p_effective_date
389: ,p_rec
390: );
391: --

Line 441: ff_ffn_ins.ins

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

Line 455: end ff_ffn_ins;

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