DBA Data[Home] [Help]

APPS.PER_SHT_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_shared_types
56: --

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

134: p_rec.object_version_number,
135: p_rec.lookup_type
136: );
137: --
138: hr_utility.set_location(' Leaving:'||l_proc, 10);
139: Exception
140: When hr_api.check_integrity_violated Then
141: -- A check constraint has been violated
142: per_sht_shd.constraint_error

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

196: --
197: Cursor C_Sel1 is select per_shared_types_s.nextval from sys.dual;
198: --
199: Begin
200: hr_utility.set_location('Entering:'||l_proc, 5);
201: --
202: --
203: -- Select the next sequence number
204: --

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

205: Open C_Sel1;
206: Fetch C_Sel1 Into p_rec.shared_type_id;
207: Close C_Sel1;
208: --
209: hr_utility.set_location(' Leaving:'||l_proc, 10);
210: End pre_insert;
211: --
212: -- ----------------------------------------------------------------------------
213: -- |-----------------------------< post_insert >------------------------------|

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

246: --
247: l_proc varchar2(72) := g_package||'post_insert';
248: --
249: Begin
250: hr_utility.set_location('Entering:'||l_proc, 5);
251: --
252: --
253: -- Start of API User Hook for post_insert.
254: --

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

309: --
310: -- End of API User Hook for post_insert.
311: --
312: --
313: hr_utility.set_location(' Leaving:'||l_proc, 10);
314: End post_insert;
315: --
316: -- ----------------------------------------------------------------------------
317: -- |---------------------------------< ins >----------------------------------|

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

324: --
325: l_proc varchar2(72) := g_package||'ins';
326: --
327: Begin
328: hr_utility.set_location('Entering:'||l_proc, 5);
329: --
330: -- Call the supporting insert validate operations
331: --
332: per_sht_bus.insert_validate(p_rec

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

395: l_rec per_sht_shd.g_rec_type;
396: l_proc varchar2(72) := g_package||'ins';
397: --
398: Begin
399: hr_utility.set_location('Entering:'||l_proc, 5);
400: --
401: -- Call conversion function to turn arguments into the
402: -- p_rec structure.
403: --

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

455: --
456: p_shared_type_id := l_rec.shared_type_id;
457: p_object_version_number := l_rec.object_version_number;
458: --
459: hr_utility.set_location(' Leaving:'||l_proc, 10);
460: End ins;
461: --
462: end per_sht_ins;