DBA Data[Home] [Help]

APPS.PER_GRS_INS dependencies on HR_UTILITY

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

54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_grs_shd.g_api_dml := true; -- Set the api dml status
62: --

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

120: );
121: --
122: per_grs_shd.g_api_dml := false; -- Unset the api dml status
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_grs_shd.g_api_dml := false; -- Unset the api dml status

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

188: --
189: Cursor C_Sel1 is select per_cagr_grade_structures_s.nextval from sys.dual;
190: --
191: Begin
192: hr_utility.set_location('Entering:'||l_proc, 5);
193: --
194: --
195: -- Select the next sequence number
196: --

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

197: Open C_Sel1;
198: Fetch C_Sel1 Into p_rec.cagr_grade_structure_id;
199: Close C_Sel1;
200: --
201: hr_utility.set_location(' Leaving:'||l_proc, 10);
202: End pre_insert;
203: --
204: -- ----------------------------------------------------------------------------
205: -- |-----------------------------< post_insert >------------------------------|

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

238: --
239: l_proc varchar2(72) := g_package||'post_insert';
240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: --
245: -- Start of API User Hook for post_insert.
246: --

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

289: --
290: -- End of API User Hook for post_insert.
291: --
292: --
293: hr_utility.set_location(' Leaving:'||l_proc, 10);
294: End post_insert;
295: --
296: -- ----------------------------------------------------------------------------
297: -- |---------------------------------< ins >----------------------------------|

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

303: --
304: l_proc varchar2(72) := g_package||'ins';
305: --
306: Begin
307: hr_utility.set_location('Entering:'||l_proc, 5);
308: --
309: -- Call the supporting insert validate operations
310: --
311: per_grs_bus.insert_validate(p_effective_date => p_effective_date,

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

324: --
325: post_insert(p_effective_date => p_effective_date,
326: p_rec => p_rec);
327: --
328: hr_utility.set_location(' Leaving:'||l_proc, 10);
329: --
330: end ins;
331: --
332: -- ----------------------------------------------------------------------------

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

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

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

414: --
415: p_cagr_grade_structure_id := l_rec.cagr_grade_structure_id;
416: p_object_version_number := l_rec.object_version_number;
417: --
418: hr_utility.set_location(' Leaving:'||l_proc, 10);
419: End ins;
420: --
421: end per_grs_ins;