DBA Data[Home] [Help]

APPS.PER_RTL_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: -- Insert the row into: per_rating_levels
56: --

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

116: p_rec.attribute19,
117: p_rec.attribute20
118: );
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: Exception
122: When hr_api.check_integrity_violated Then
123: -- A check constraint has been violated
124: per_rtl_shd.constraint_error

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

178: --
179: Cursor C_Sel1 is select per_rating_levels_s.nextval from sys.dual;
180: --
181: Begin
182: hr_utility.set_location('Entering:'||l_proc, 5);
183: --
184: --
185: -- Select the next sequence number
186: --

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

187: Open C_Sel1;
188: Fetch C_Sel1 Into p_rec.rating_level_id;
189: Close C_Sel1;
190: --
191: hr_utility.set_location(' Leaving:'||l_proc, 10);
192: End pre_insert;
193: --
194: -- ----------------------------------------------------------------------------
195: -- |-----------------------------< post_insert >------------------------------|

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

227: --
228: l_proc varchar2(72) := g_package||'post_insert';
229: --
230: Begin
231: hr_utility.set_location('Entering:'||l_proc, 5);
232: --
233: -- This is a hook point and the user hook for post_insert is called here.
234: --
235: begin

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

272: );
273: end;
274: -- End of API User Hook for post_insert.
275: --
276: hr_utility.set_location(' Leaving:'||l_proc, 10);
277: End post_insert;
278: --
279: -- ----------------------------------------------------------------------------
280: -- |---------------------------------< ins >----------------------------------|

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

288: --
289: l_proc varchar2(72) := g_package||'ins';
290: --
291: Begin
292: hr_utility.set_location('Entering:'||l_proc, 5);
293: --
294: -- Determine if the business process is to be validated.
295: --
296: If p_validate then

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

321: If p_validate then
322: Raise HR_Api.Validate_Enabled;
323: End If;
324: --
325: hr_utility.set_location(' Leaving:'||l_proc, 10);
326: Exception
327: When HR_Api.Validate_Enabled Then
328: --
329: -- As the Validate_Enabled exception has been raised

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

373: l_rec per_rtl_shd.g_rec_type;
374: l_proc varchar2(72) := g_package||'ins';
375: --
376: Begin
377: hr_utility.set_location('Entering:'||l_proc, 5);
378: --
379: -- Call conversion function to turn arguments into the
380: -- p_rec structure.
381: --

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

423: --
424: p_rating_level_id := l_rec.rating_level_id;
425: p_object_version_number := l_rec.object_version_number;
426: --
427: hr_utility.set_location(' Leaving:'||l_proc, 10);
428: End ins;
429: --
430: end per_rtl_ins;