DBA Data[Home] [Help]

APPS.GHR_PDI_INS dependencies on HR_UTILITY

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

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

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

164: );
165: --
166: --ghr_pdi_shd.g_api_dml := false; -- Unset the api dml status
167: --
168: hr_utility.set_location(' Leaving:'||l_proc, 10);
169: Exception
170: When hr_api.check_integrity_violated Then
171: -- A check constraint has been violated
172: --ghr_pdi_shd.g_api_dml := false; -- Unset the api dml status

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

230: --
231: Cursor C_Sel1 is select ghr_position_descriptions_s.nextval from sys.dual;
232: --
233: Begin
234: hr_utility.set_location('Entering:'||l_proc, 5);
235: --
236: --
237: -- Select the next sequence number
238: --

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

239: Open C_Sel1;
240: Fetch C_Sel1 Into p_rec.position_description_id;
241: Close C_Sel1;
242: --
243: hr_utility.set_location(' Leaving:'||l_proc, 10);
244: End pre_insert;
245: --
246: -- ----------------------------------------------------------------------------
247: -- |-----------------------------< post_insert >------------------------------|

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

279: --
280: l_proc varchar2(72) := g_package||'post_insert';
281: --
282: Begin
283: hr_utility.set_location('Entering:'||l_proc, 5);
284: --
285: --
286: -- This is a hook point and the user hook for post_insert is called here.
287: --

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

345: );
346: end;
347: -- End of API User Hook for post_insert.
348: --
349: hr_utility.set_location(' Leaving:'||l_proc, 10);
350: End post_insert;
351: --
352: -- ----------------------------------------------------------------------------
353: -- |---------------------------------< ins >----------------------------------|

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

359: --
360: l_proc varchar2(72) := g_package||'ins';
361: --
362: Begin
363: hr_utility.set_location('Entering:'||l_proc, 5);
364: --
365: -- Call the supporting insert validate operations
366: --
367: ghr_pdi_bus.insert_validate(p_rec);

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

437: l_rec ghr_pdi_shd.g_rec_type;
438: l_proc varchar2(72) := g_package||'ins';
439: --
440: Begin
441: hr_utility.set_location('Entering:'||l_proc, 5);
442: --
443: -- Call conversion function to turn arguments into the
444: -- p_rec structure.
445: --

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

506: --
507: p_position_description_id := l_rec.position_description_id;
508: p_object_version_number := l_rec.object_version_number;
509: --
510: hr_utility.set_location(' Leaving:'||l_proc, 10);
511: End ins;
512: --
513: end ghr_pdi_ins;