DBA Data[Home] [Help]

APPS.HR_NMF_INS dependencies on HR_NMF_INS

Line 1: Package Body hr_nmf_ins as

1: Package Body hr_nmf_ins as
2: /* $Header: hrnmfrhi.pkb 120.0 2005/05/31 01:34 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hr_nmf_ins.'; -- Global package name
9: g_debug boolean := hr_utility.debug_enabled;
10: --
11: -- The following global variables are only to be used by
12: -- the set_base_key_value and pre_insert procedures.

Line 29: hr_nmf_ins.g_name_format_id_i := p_name_format_id;

25: if g_debug then
26: hr_utility.set_location('Entering:'||l_proc, 10);
27: end if;
28: --
29: hr_nmf_ins.g_name_format_id_i := p_name_format_id;
30: --
31: if g_debug then
32: hr_utility.set_location(' Leaving:'||l_proc, 20);
33: end if;

Line 172: hr_nmf_ins.g_name_format_id_i;

168: Cursor C_Sel2 is
169: Select null
170: from hr_name_formats
171: where name_format_id =
172: hr_nmf_ins.g_name_format_id_i;
173: --
174: l_proc varchar2(72) := g_package||'pre_insert';
175: l_exists varchar2(1);
176: --

Line 182: If (hr_nmf_ins.g_name_format_id_i is not null) Then

178: if g_debug then
179: hr_utility.set_location('Entering:'||l_proc, 5);
180: end if;
181: --
182: If (hr_nmf_ins.g_name_format_id_i is not null) Then
183: --
184: -- Verify registered primary key values not already in use
185: --
186: Open C_Sel2;

Line 202: hr_nmf_ins.g_name_format_id_i;

198: --
199: -- Use registered key values and clear globals
200: --
201: p_rec.name_format_id :=
202: hr_nmf_ins.g_name_format_id_i;
203: hr_nmf_ins.g_name_format_id_i := null;
204: Else
205: --
206: -- No registerd key values, so select the next sequence number

Line 203: hr_nmf_ins.g_name_format_id_i := null;

199: -- Use registered key values and clear globals
200: --
201: p_rec.name_format_id :=
202: hr_nmf_ins.g_name_format_id_i;
203: hr_nmf_ins.g_name_format_id_i := null;
204: Else
205: --
206: -- No registerd key values, so select the next sequence number
207: --

Line 324: hr_nmf_ins.pre_insert(p_rec);

320: hr_multi_message.end_validation_set;
321: --
322: -- Call the supporting pre-insert operation
323: --
324: hr_nmf_ins.pre_insert(p_rec);
325: --
326: -- Insert the row
327: --
328: hr_nmf_ins.insert_dml(p_rec);

Line 328: hr_nmf_ins.insert_dml(p_rec);

324: hr_nmf_ins.pre_insert(p_rec);
325: --
326: -- Insert the row
327: --
328: hr_nmf_ins.insert_dml(p_rec);
329: --
330: -- Call the supporting post-insert operation
331: --
332: hr_nmf_ins.post_insert

Line 332: hr_nmf_ins.post_insert

328: hr_nmf_ins.insert_dml(p_rec);
329: --
330: -- Call the supporting post-insert operation
331: --
332: hr_nmf_ins.post_insert
333: (p_effective_date
334: ,p_rec
335: );
336: --

Line 382: hr_nmf_ins.ins

378: --
379: -- Having converted the arguments into the hr_nmf_rec
380: -- plsql record structure we call the corresponding record business process.
381: --
382: hr_nmf_ins.ins
383: (p_effective_date
384: ,l_rec
385: );
386: --

Line 398: end hr_nmf_ins;

394: hr_utility.set_location(' Leaving:'||l_proc, 10);
395: end if;
396: End ins;
397: --
398: end hr_nmf_ins;