DBA Data[Home] [Help]

APPS.FF_ARC_INS dependencies on HR_UTILITY

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

60: l_last_updated_by ff_archive_items.last_updated_by%TYPE;
61: l_last_update_login ff_archive_items.last_update_login%TYPE;
62: --
63: Begin
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: p_rec.object_version_number := 1; -- Initialise the object version
66: --
67: ff_arc_shd.g_api_dml := true; -- Set the api dml status
68: --

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

104: );
105: --
106: ff_arc_shd.g_api_dml := false; -- Unset the api dml status
107: --
108: hr_utility.set_location(' Leaving:'||l_proc, 10);
109: Exception
110: When hr_api.check_integrity_violated Then
111: -- A check constraint has been violated
112: ff_arc_shd.g_api_dml := false; -- Unset the api dml status

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

170: --
171: Cursor C_Sel1 is select ff_archive_items_s.nextval from sys.dual;
172: --
173: Begin
174: hr_utility.set_location('Entering:'||l_proc, 5);
175: --
176: --
177: -- Select the next sequence number
178: --

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

179: Open C_Sel1;
180: Fetch C_Sel1 Into p_rec.archive_item_id;
181: Close C_Sel1;
182: --
183: hr_utility.set_location(' Leaving:'||l_proc, 10);
184: End pre_insert;
185: --
186: -- ----------------------------------------------------------------------------
187: -- |-----------------------------< post_insert >------------------------------|

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

219: --
220: l_proc varchar2(72) := g_package||'post_insert';
221: --
222: Begin
223: hr_utility.set_location('Entering:'||l_proc, 5);
224: --
225: hr_utility.set_location(' Leaving:'||l_proc, 10);
226: End post_insert;
227: --

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

221: --
222: Begin
223: hr_utility.set_location('Entering:'||l_proc, 5);
224: --
225: hr_utility.set_location(' Leaving:'||l_proc, 10);
226: End post_insert;
227: --
228: -- ----------------------------------------------------------------------------
229: -- |---------------------------------< ins >----------------------------------|

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

235: --
236: l_proc varchar2(72) := g_package||'ins';
237: --
238: Begin
239: hr_utility.set_location('Entering:'||l_proc, 5);
240: --
241: -- Call the supporting insert validate operations
242: --
243: ff_arc_bus.insert_validate(p_rec);

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

271: l_rec ff_arc_shd.g_rec_type;
272: l_proc varchar2(72) := g_package||'ins';
273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: -- Call conversion function to turn arguments into the
278: -- p_rec structure.
279: --

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

298: --
299: p_archive_item_id := l_rec.archive_item_id;
300: p_object_version_number := l_rec.object_version_number;
301: --
302: hr_utility.set_location(' Leaving:'||l_proc, 10);
303: End ins;
304: --
305: end ff_arc_ins;