DBA Data[Home] [Help]

APPS.PER_RSC_INS dependencies on HR_UTILITY

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

48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: --
56: -- Insert the row into: per_rating_scales

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

120: p_rec.attribute20
121: );
122: --
123: --
124: hr_utility.set_location(' Leaving:'||l_proc, 10);
125: Exception
126: When hr_api.check_integrity_violated Then
127: -- A check constraint has been violated
128: per_rsc_shd.constraint_error

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

183: Cursor C_Sel1 is select per_rating_scales_s.nextval from sys.dual;
184: --
185: --
186: Begin
187: hr_utility.set_location('Entering:'||l_proc, 5);
188: --
189: -- Select the next sequence number
190: --
191: Open C_Sel1;

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

192: Fetch C_Sel1 Into p_rec.rating_scale_id;
193: Close C_Sel1;
194: --
195: --
196: hr_utility.set_location(' Leaving:'||l_proc, 10);
197: End pre_insert;
198: --
199: -- ----------------------------------------------------------------------------
200: -- |-----------------------------< post_insert >------------------------------|

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

232: --
233: l_proc varchar2(72) := g_package||'post_insert';
234: --
235: Begin
236: hr_utility.set_location('Entering:'||l_proc, 5);
237: --
238: -- This is a hook point and the user hook for post_insert is called here.
239: --
240: begin

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

278: );
279: end;
280: -- End of API User Hook for post_insert.
281: --
282: hr_utility.set_location(' Leaving:'||l_proc, 10);
283: End post_insert;
284: --
285: -- ----------------------------------------------------------------------------
286: -- |---------------------------------< ins >----------------------------------|

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

294: --
295: l_proc varchar2(72) := g_package||'ins';
296: --
297: Begin
298: hr_utility.set_location('Entering:'||l_proc, 5);
299: --
300: -- Determine if the business process is to be validated.
301: --
302: If p_validate then

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

327: If p_validate then
328: Raise HR_Api.Validate_Enabled;
329: End If;
330: --
331: hr_utility.set_location(' Leaving:'||l_proc, 10);
332: Exception
333: When HR_Api.Validate_Enabled Then
334: --
335: -- As the Validate_Enabled exception has been raised

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

378: l_rec per_rsc_shd.g_rec_type;
379: l_proc varchar2(72) := g_package||'ins';
380: --
381: Begin
382: hr_utility.set_location('Entering:'||l_proc, 5);
383: --
384: -- Call conversion function to turn arguments into the
385: -- p_rec structure.
386: --

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

429: --
430: p_rating_scale_id := l_rec.rating_scale_id;
431: p_object_version_number := l_rec.object_version_number;
432: --
433: hr_utility.set_location(' Leaving:'||l_proc, 10);
434: End ins;
435: --
436: end per_rsc_ins;