DBA Data[Home] [Help]

APPS.PAY_PEV_INS dependencies on HR_UTILITY

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

56: --
57: l_proc varchar2(72) := g_package||'insert_dml';
58: --
59: Begin
60: hr_utility.set_location('Entering:'||l_proc, 5);
61: p_rec.object_version_number := 1; -- Initialise the object version
62: --
63: pay_pev_shd.g_api_dml := true; -- Set the api dml status
64: --

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

98: );
99: --
100: pay_pev_shd.g_api_dml := false; -- Unset the api dml status
101: --
102: hr_utility.set_location(' Leaving:'||l_proc, 10);
103: Exception
104: When hr_api.check_integrity_violated Then
105: -- A check constraint has been violated
106: pay_pev_shd.g_api_dml := false; -- Unset the api dml status

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

166: --
167: Cursor C_Sel1 is select pay_process_events_s.nextval from sys.dual;
168: --
169: Begin
170: hr_utility.set_location('Entering:'||l_proc, 5);
171: --
172: --
173: -- Select the next sequence number
174: --

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

175: Open C_Sel1;
176: Fetch C_Sel1 Into p_rec.process_event_id;
177: Close C_Sel1;
178: --
179: hr_utility.set_location(' Leaving:'||l_proc, 10);
180: End pre_insert;
181: --
182: -- ----------------------------------------------------------------------------
183: -- |-----------------------------< post_insert >------------------------------|

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

217: --
218: l_proc varchar2(72) := g_package||'post_insert';
219: --
220: Begin
221: hr_utility.set_location('Entering:'||l_proc, 5);
222: begin
223: --
224: pay_pev_rki.after_insert
225: (p_process_event_id

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

261: ,p_hook_type => 'AI');
262: --
263: end;
264: --
265: hr_utility.set_location(' Leaving:'||l_proc, 10);
266: End post_insert;
267: --
268: -- ----------------------------------------------------------------------------
269: -- |---------------------------------< ins >----------------------------------|

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

274: --
275: l_proc varchar2(72) := g_package||'ins';
276: --
277: Begin
278: hr_utility.set_location('Entering:'||l_proc, 5);
279: --
280: -- Call the supporting insert validate operations
281: --
282: pay_pev_bus.insert_validate

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

296: pay_pev_ins.post_insert
297: (p_rec
298: );
299: --
300: hr_utility.set_location('Leaving:'||l_proc, 20);
301: end ins;
302: --
303: -- ----------------------------------------------------------------------------
304: -- |---------------------------------< ins >----------------------------------|

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

323: l_rec pay_pev_shd.g_rec_type;
324: l_proc varchar2(72) := g_package||'ins';
325: --
326: Begin
327: hr_utility.set_location('Entering:'||l_proc, 5);
328: --
329: -- Call conversion function to turn arguments into the
330: -- p_rec structure.
331: --

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

359: --
360: p_process_event_id := l_rec.process_event_id;
361: p_object_version_number := l_rec.object_version_number;
362: --
363: hr_utility.set_location(' Leaving:'||l_proc, 10);
364: End ins;
365: --
366: end pay_pev_ins;