DBA Data[Home] [Help]

APPS.PER_CEI_INS dependencies on HR_UTILITY

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

62: l_last_update_login per_cagr_entitlement_items.last_update_login%TYPE;
63: --
64: Begin
65: --
66: hr_utility.set_location('Entering:'||l_proc, 5);
67: --
68: p_rec.object_version_number := 1; -- Initialise the object version
69: --
70: -- Set the who columns

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

133: );
134: --
135: --
136: --
137: hr_utility.set_location(' Leaving:'||l_proc, 10);
138: Exception
139: When hr_api.check_integrity_violated Then
140: -- A check constraint has been violated
141: --

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

201: --
202: Cursor C_Sel1 is select per_cagr_entitlement_items_s.nextval from sys.dual;
203: --
204: Begin
205: hr_utility.set_location('Entering:'||l_proc, 5);
206: --
207: --
208: -- Select the next sequence number
209: --

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

210: Open C_Sel1;
211: Fetch C_Sel1 Into p_rec.cagr_entitlement_item_id;
212: Close C_Sel1;
213: --
214: hr_utility.set_location(' Leaving:'||l_proc, 10);
215: --
216: End pre_insert;
217: --
218: -- ----------------------------------------------------------------------------

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

255: l_proc varchar2(72) := g_package||'post_insert';
256: --
257: Begin
258: --
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: --
261: begin
262: --
263: per_cei_rki.after_insert

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

293: ,p_hook_type => 'AI');
294: --
295: end;
296: --
297: hr_utility.set_location(' Leaving:'||l_proc, 10);
298: End post_insert;
299: --
300: -- ----------------------------------------------------------------------------
301: -- |---------------------------------< ins >----------------------------------|

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

307: --
308: l_proc varchar2(72) := g_package||'ins';
309: --
310: Begin
311: hr_utility.set_location('Entering:'||l_proc, 5);
312: --
313: -- Call the supporting insert validate operations
314: --
315: per_cei_bus.insert_validate

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

331: (p_effective_date
332: ,p_rec
333: );
334: --
335: hr_utility.set_location('Leaving:'||l_proc, 20);
336: end ins;
337: --
338: -- ----------------------------------------------------------------------------
339: -- |---------------------------------< ins >----------------------------------|

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

366: l_rec per_cei_shd.g_rec_type;
367: l_proc varchar2(72) := g_package||'ins';
368: --
369: Begin
370: hr_utility.set_location('Entering:'||l_proc, 5);
371: --
372: -- Call conversion function to turn arguments into the
373: -- p_rec structure.
374: --

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

408: p_cagr_entitlement_item_id := l_rec.cagr_entitlement_item_id;
409: p_object_version_number := l_rec.object_version_number;
410: --
411: --
412: hr_utility.set_location(' Leaving:'||l_proc, 10);
413: End ins;
414: --
415: end per_cei_ins;