DBA Data[Home] [Help]

APPS.HR_NMF_INS dependencies on HR_UTILITY

Line 9: g_debug boolean := hr_utility.debug_enabled;

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.
13: --

Line 26: hr_utility.set_location('Entering:'||l_proc, 10);

22: l_proc varchar2(72) := g_package||'set_base_key_value';
23: --
24: Begin
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: --

Line 32: hr_utility.set_location(' Leaving:'||l_proc, 20);

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;
34: End set_base_key_value;
35: --
36: --

Line 82: hr_utility.set_location('Entering:'||l_proc, 5);

78: l_proc varchar2(72) := g_package||'insert_dml';
79: --
80: Begin
81: if g_debug then
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: end if;
84: p_rec.object_version_number := 1; -- Initialise the object version
85: --
86: -- Insert the row into: hr_name_formats

Line 106: hr_utility.set_location(' Leaving:'||l_proc, 10);

102: ,p_rec.object_version_number
103: );
104: --
105: if g_debug then
106: hr_utility.set_location(' Leaving:'||l_proc, 10);
107: end if;
108: Exception
109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated

Line 179: hr_utility.set_location('Entering:'||l_proc, 5);

175: l_exists varchar2(1);
176: --
177: Begin
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: --

Line 217: hr_utility.set_location(' Leaving:'||l_proc, 10);

213: Close C_Sel1;
214: End If;
215: --
216: if g_debug then
217: hr_utility.set_location(' Leaving:'||l_proc, 10);
218: end if;
219: End pre_insert;
220: --
221: -- ----------------------------------------------------------------------------

Line 262: hr_utility.set_location('Entering:'||l_proc, 5);

258: l_proc varchar2(72) := g_package||'post_insert';
259: --
260: Begin
261: if g_debug then
262: hr_utility.set_location('Entering:'||l_proc, 5);
263: end if;
264: begin
265: --
266: hr_nmf_rki.after_insert

Line 293: hr_utility.set_location(' Leaving:'||l_proc, 10);

289: --
290: end;
291: --
292: if g_debug then
293: hr_utility.set_location(' Leaving:'||l_proc, 10);
294: end if;
295: End post_insert;
296: --
297: -- ----------------------------------------------------------------------------

Line 309: hr_utility.set_location('Entering:'||l_proc, 5);

305: l_proc varchar2(72) := g_package||'ins';
306: --
307: Begin
308: if g_debug then
309: hr_utility.set_location('Entering:'||l_proc, 5);
310: end if;
311: --
312: -- Call the supporting insert validate operations
313: --

Line 341: hr_utility.set_location('Leaving:'||l_proc, 20);

337: -- Call to raise any errors on multi-message list
338: hr_multi_message.end_validation_set;
339: --
340: if g_debug then
341: hr_utility.set_location('Leaving:'||l_proc, 20);
342: end if;
343: end ins;
344: --
345: -- ----------------------------------------------------------------------------

Line 363: hr_utility.set_location('Entering:'||l_proc, 5);

359: l_proc varchar2(72) := g_package||'ins';
360: --
361: Begin
362: if g_debug then
363: hr_utility.set_location('Entering:'||l_proc, 5);
364: end if;
365: --
366: -- Call conversion function to turn arguments into the
367: -- p_rec structure.

Line 394: hr_utility.set_location(' Leaving:'||l_proc, 10);

390: p_name_format_id := l_rec.name_format_id;
391: p_object_version_number := l_rec.object_version_number;
392: --
393: if g_debug then
394: hr_utility.set_location(' Leaving:'||l_proc, 10);
395: end if;
396: End ins;
397: --
398: end hr_nmf_ins;