DBA Data[Home] [Help]

APPS.HR_LEI_INS dependencies on HR_UTILITY

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

60: --
61: l_proc varchar2(72) := g_package||'insert_dml';
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: -- hr_lei_shd.g_api_dml := true; -- Set the api dml status
68: --

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

194: );
195: --
196: -- hr_lei_shd.g_api_dml := false; -- Unset the api dml status
197: --
198: hr_utility.set_location(' Leaving:'||l_proc, 10);
199: Exception
200: When hr_api.check_integrity_violated Then
201: -- A check constraint has been violated
202: -- hr_lei_shd.g_api_dml := false; -- Unset the api dml status

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

260: --
261: Cursor C_Sel1 is select hr_location_extra_info_s.nextval from sys.dual;
262: --
263: Begin
264: hr_utility.set_location('Entering:'||l_proc, 5);
265: --
266: --
267: -- Select the next sequence number
268: --

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

269: Open C_Sel1;
270: Fetch C_Sel1 Into p_rec.location_extra_info_id;
271: Close C_Sel1;
272: --
273: hr_utility.set_location(' Leaving:'||l_proc, 10);
274: End pre_insert;
275: --
276: -- ----------------------------------------------------------------------------
277: -- |-----------------------------< post_insert >------------------------------|

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

309: --
310: l_proc varchar2(72) := g_package||'post_insert';
311: --
312: Begin
313: hr_utility.set_location('Entering:'||l_proc, 5);
314: --
315: -- This is a hook point and the user hook for post_insert is called here.
316: --
317: begin

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

384: );
385: end;
386: -- End of API User Hook for post_insert.
387: --
388: hr_utility.set_location(' Leaving:'||l_proc, 10);
389: End post_insert;
390: --
391: -- ----------------------------------------------------------------------------
392: -- |---------------------------------< ins >----------------------------------|

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

399: --
400: l_proc varchar2(72) := g_package||'ins';
401: --
402: Begin
403: hr_utility.set_location('Entering:'||l_proc, 5);
404: --
405: -- Determine if the business process is to be validated.
406: --
407: If p_validate then

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

432: If p_validate then
433: Raise HR_Api.Validate_Enabled;
434: End If;
435: --
436: hr_utility.set_location(' Leaving:'||l_proc, 10);
437: Exception
438: When HR_Api.Validate_Enabled Then
439: --
440: -- As the Validate_Enabled exception has been raised

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

514: l_rec hr_lei_shd.g_rec_type;
515: l_proc varchar2(72) := g_package||'ins';
516: --
517: Begin
518: hr_utility.set_location('Entering:'||l_proc, 5);
519: --
520: -- Call conversion function to turn arguments into the
521: -- p_rec structure.
522: --

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

595: --
596: p_location_extra_info_id := l_rec.location_extra_info_id;
597: p_object_version_number := l_rec.object_version_number;
598: --
599: hr_utility.set_location(' Leaving:'||l_proc, 10);
600: End ins;
601: --
602: end hr_lei_ins;