DBA Data[Home] [Help]

APPS.PER_GRA_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_gra_shd.g_api_dml := true; -- Set the api dml status
62: --

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

78: );
79: --
80: per_gra_shd.g_api_dml := false; -- Unset the api dml status
81: --
82: hr_utility.set_location(' Leaving:'||l_proc, 10);
83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: per_gra_shd.g_api_dml := false; -- Unset the api dml status

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

145: --
146: Cursor C_Sel1 is select per_cagr_grades_s.nextval from sys.dual;
147: --
148: Begin
149: hr_utility.set_location('Entering:'||l_proc, 5);
150: --
151: --
152: -- Select the next sequence number
153: --

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

154: Open C_Sel1;
155: Fetch C_Sel1 Into p_rec.cagr_grade_id;
156: Close C_Sel1;
157: --
158: hr_utility.set_location(' Leaving:'||l_proc, 10);
159: End pre_insert;
160: --
161: -- ----------------------------------------------------------------------------
162: -- |-----------------------------< post_insert >------------------------------|

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

195: --
196: l_proc varchar2(72) := g_package||'post_insert';
197: --
198: Begin
199: hr_utility.set_location('Entering:'||l_proc, 5);
200: --
201: --
202: -- Start of API User Hook for post_insert.
203: --

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

225: --
226: -- End of API User Hook for post_insert.
227: --
228: --
229: hr_utility.set_location(' Leaving:'||l_proc, 10);
230: End post_insert;
231: --
232: -- ----------------------------------------------------------------------------
233: -- |---------------------------------< ins >----------------------------------|

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

240: --
241: l_proc varchar2(72) := g_package||'ins';
242: --
243: Begin
244: hr_utility.set_location('Entering:'||l_proc, 5);
245: --
246: -- Call the supporting insert validate operations
247: --
248: per_gra_bus.insert_validate(p_rec => p_rec,

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

261: --
262: post_insert(p_rec => p_rec,
263: p_effective_date =>p_effective_date);
264: --
265: hr_utility.set_location(' Leaving:'||l_proc, 10);
266: --
267: end ins;
268: --
269: -- ----------------------------------------------------------------------------

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

282: l_rec per_gra_shd.g_rec_type;
283: l_proc varchar2(72) := g_package||'ins';
284: --
285: Begin
286: hr_utility.set_location('Entering:'||l_proc, 5);
287: --
288: -- Call conversion function to turn arguments into the
289: -- p_rec structure.
290: --

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

309: --
310: p_cagr_grade_id := l_rec.cagr_grade_id;
311: p_object_version_number := l_rec.object_version_number;
312: --
313: hr_utility.set_location(' Leaving:'||l_proc, 10);
314: End ins;
315: --
316: end per_gra_ins;