DBA Data[Home] [Help]

APPS.PER_POS_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_pos_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_pos_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_pos_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 hr_all_positions_f_s.nextval from sys.dual;
230: --
231: Begin
232: hr_utility.set_location('Entering:'||l_proc, 5);
233: -- if position_id is null the genrate sequence
234: --
235: --
236: -- Select the next sequence number

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

241: Close C_Sel1;
242: end if;
243: --
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 10);
246: End pre_insert;
247: --
248: -- ----------------------------------------------------------------------------
249: -- |-----------------------------< post_insert >------------------------------|

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

281: --
282: l_proc varchar2(72) := g_package||'post_insert';
283: --
284: Begin
285: hr_utility.set_location('Entering:'||l_proc, 5);
286: --
287: -- Start of API User Hook for post_insert.
288: begin
289: per_pos_rki.after_insert

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

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

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

357: --
358: l_proc varchar2(72) := g_package||'ins';
359: --
360: Begin
361: hr_utility.set_location('Entering:'||l_proc, 5);
362: per_pos_shd.G_DT_INS:=TRUE;
363: --
364: -- Determine if the business process is to be validated.
365: --

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

393: End If;
394: --
395: per_pos_shd.G_DT_INS:=FALSE;
396: --
397: hr_utility.set_location(' Leaving:'||l_proc, 10);
398: Exception
399: When HR_Api.Validate_Enabled Then
400: --
401: -- As the Validate_Enabled exception has been raised

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

463: l_rec per_pos_shd.g_rec_type;
464: l_proc varchar2(72) := g_package||'ins';
465: --
466: Begin
467: hr_utility.set_location('Entering:'||l_proc, 5);
468: --
469: -- Call conversion function to turn arguments into the
470: -- p_rec structure.
471: --

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

530: --
531: p_position_id := l_rec.position_id;
532: p_object_version_number := l_rec.object_version_number;
533: --
534: hr_utility.set_location(' Leaving:'||l_proc, 10);
535: End ins;
536: --
537: end per_pos_ins;