DBA Data[Home] [Help]

APPS.PER_ASR_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_assessment_groups
56: --

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

112: p_rec.attribute20,
113: p_rec.object_version_number
114: );
115: --
116: hr_utility.set_location(' Leaving:'||l_proc, 10);
117: Exception
118: When hr_api.check_integrity_violated Then
119: -- A check constraint has been violated
120: per_asr_shd.constraint_error

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

174: --
175: Cursor C_Sel1 is select per_assessment_groups_s.nextval from sys.dual;
176: --
177: Begin
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: --
181: -- Select the next sequence number
182: --

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

183: Open C_Sel1;
184: Fetch C_Sel1 Into p_rec.assessment_group_id;
185: Close C_Sel1;
186: --
187: hr_utility.set_location(' Leaving:'||l_proc, 10);
188: End pre_insert;
189: --
190: -- ----------------------------------------------------------------------------
191: -- |-----------------------------< post_insert >------------------------------|

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

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

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

265: );
266: end;
267: -- End of API User Hook for post_insert.
268: --
269: hr_utility.set_location(' Leaving:'||l_proc, 10);
270: End post_insert;
271: --
272: -- ----------------------------------------------------------------------------
273: -- |---------------------------------< ins >----------------------------------|

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

281: --
282: l_proc varchar2(72) := g_package||'ins';
283: --
284: Begin
285: hr_utility.set_location('Entering:'||l_proc, 5);
286: --
287: -- Determine if the business process is to be validated.
288: --
289: If p_validate then

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

315: If p_validate then
316: Raise HR_Api.Validate_Enabled;
317: End If;
318: --
319: hr_utility.set_location(' Leaving:'||l_proc, 10);
320: Exception
321: When HR_Api.Validate_Enabled Then
322: --
323: -- As the Validate_Enabled exception has been raised

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

365: l_rec per_asr_shd.g_rec_type;
366: l_proc varchar2(72) := g_package||'ins';
367: --
368: Begin
369: hr_utility.set_location('Entering:'||l_proc, 5);
370: --
371: -- Call conversion function to turn arguments into the
372: -- p_rec structure.
373: --

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

415: --
416: p_assessment_group_id := l_rec.assessment_group_id;
417: p_object_version_number := l_rec.object_version_number;
418: --
419: hr_utility.set_location(' Leaving:'||l_proc, 10);
420: End ins;
421: --
422: end per_asr_ins;