DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

196: --
197: l_proc varchar2(72) := g_package||'post_insert';
198: --
199: Begin
200: hr_utility.set_location('Entering:'||l_proc, 5);
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: End post_insert;
204: --

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

198: --
199: Begin
200: hr_utility.set_location('Entering:'||l_proc, 5);
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: End post_insert;
204: --
205: -- ----------------------------------------------------------------------------
206: -- |---------------------------------< ins >----------------------------------|

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

213: --
214: l_proc varchar2(72) := g_package||'ins';
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: -- Call the supporting insert validate operations
220: --
221: ben_ran_bus.insert_validate(p_rec

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

252: l_rec ben_ran_shd.g_rec_type;
253: l_proc varchar2(72) := g_package||'ins';
254: --
255: Begin
256: hr_utility.set_location('Entering:'||l_proc, 5);
257: --
258: -- Call conversion function to turn arguments into the
259: -- p_rec structure.
260: --

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

280: --
281: p_range_id := l_rec.range_id;
282: p_object_version_number := l_rec.object_version_number;
283: --
284: hr_utility.set_location(' Leaving:'||l_proc, 10);
285: End ins;
286: --
287: end ben_ran_ins;