DBA Data[Home] [Help]

APPS.PER_SHA_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_std_holiday_absences

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

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

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

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

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

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

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

228: --
229: l_proc varchar2(72) := g_package||'post_insert';
230: --
231: Begin
232: hr_utility.set_location('Entering:'||l_proc, 5);
233: --
234: -- Start of API User Hook for post_insert.
235: begin
236: per_sha_rki.after_insert

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

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

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

285: --
286: l_proc varchar2(72) := g_package||'ins';
287: --
288: Begin
289: hr_utility.set_location('Entering:'||l_proc, 5);
290: --
291: -- Call the supporting insert validate operations
292: --
293: per_sha_bus.insert_validate(p_rec);

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

344: l_rec per_sha_shd.g_rec_type;
345: l_proc varchar2(72) := g_package||'ins';
346: --
347: Begin
348: hr_utility.set_location('Entering:'||l_proc, 5);
349: --
350: -- Call conversion function to turn arguments into the
351: -- p_rec structure.
352: --

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

394: --
395: p_std_holiday_absences_id := l_rec.std_holiday_absences_id;
396: p_object_version_number := l_rec.object_version_number;
397: --
398: hr_utility.set_location(' Leaving:'||l_proc, 10);
399: End ins;
400: --
401: end per_sha_ins;