DBA Data[Home] [Help]

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

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

82: );
83: --
84: ben_act_shd.g_api_dml := false; -- Unset the api dml status
85: --
86: hr_utility.set_location(' Leaving:'||l_proc, 10);
87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated
90: ben_act_shd.g_api_dml := false; -- Unset the api dml status

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

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

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

157: Open C_Sel1;
158: Fetch C_Sel1 Into p_rec.person_action_id;
159: Close C_Sel1;
160: --
161: hr_utility.set_location(' Leaving:'||l_proc, 10);
162: End pre_insert;
163: --
164: -- ----------------------------------------------------------------------------
165: -- |-----------------------------< post_insert >------------------------------|

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

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

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

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

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

243: --
244: l_proc varchar2(72) := g_package||'ins';
245: --
246: Begin
247: hr_utility.set_location('Entering:'||l_proc, 5);
248: --
249: -- Call the supporting insert validate operations
250: --
251: ben_act_bus.insert_validate(p_rec

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

282: l_rec ben_act_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 315: hr_utility.set_location(' Leaving:'||l_proc, 10);

311: --
312: p_person_action_id := l_rec.person_action_id;
313: p_object_version_number := l_rec.object_version_number;
314: --
315: hr_utility.set_location(' Leaving:'||l_proc, 10);
316: End ins;
317: --
318: end ben_act_ins;