DBA Data[Home] [Help]

APPS.PER_KAD_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: per_kad_shd.g_api_dml := true; -- Set the api dml status
62: --

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

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

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

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

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

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

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

285: --
286: -- End of Fix for WWBUG 1408379
287: --
288: Begin
289: hr_utility.set_location('Entering:'||l_proc, 5);
290: --
291: -- Fix for WWBUG 1408379
292: --
293: l_new.person_id := p_rec.person_id;

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

305: p_effective_date => l_new.date_from);
306: --
307: -- End of Fix for WWBUG 1408379
308: --
309: hr_utility.set_location(' Leaving:'||l_proc, 10);
310: End post_insert;
311: --
312: -- ----------------------------------------------------------------------------
313: -- |---------------------------------< ins >----------------------------------|

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

320: --
321: l_proc varchar2(72) := g_package||'ins';
322: --
323: Begin
324: hr_utility.set_location('Entering:'||l_proc, 5);
325: --
326: -- Determine if the business process is to be validated.
327: --
328: If p_validate then

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

355: If p_validate then
356: Raise HR_Api.Validate_Enabled;
357: End If;
358: --
359: hr_utility.set_location(' Leaving:'||l_proc, 10);
360: Exception
361: When HR_Api.Validate_Enabled Then
362: --
363: -- As the Validate_Enabled exception has been raised

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

424: l_rec per_kad_shd.g_rec_type;
425: l_proc varchar2(72) := g_package||'ins';
426: --
427: Begin
428: hr_utility.set_location('Entering:'||l_proc, 5);
429: --
430: -- Call conversion function to turn arguments into the
431: -- p_rec structure.
432: --

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

495: --
496: p_address_id := l_rec.address_id;
497: p_object_version_number := l_rec.object_version_number;
498: --
499: hr_utility.set_location(' Leaving:'||l_proc, 10);
500: End ins;
501: --
502: end per_kad_ins;