DBA Data[Home] [Help]

APPS.BEN_XDD_INS dependencies on HR_UTILITY

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

108: --
109: l_proc varchar2(72) := g_package||'insert_dml';
110: --
111: Begin
112: hr_utility.set_location('Entering:'||l_proc, 5);
113: p_rec.object_version_number := 1; -- Initialise the object version
114: --
115: ben_xdd_shd.g_api_dml := true; -- Set the api dml status
116: --

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

148: );
149: --
150: ben_xdd_shd.g_api_dml := false; -- Unset the api dml status
151: --
152: hr_utility.set_location(' Leaving:'||l_proc, 10);
153: Exception
154: When hr_api.check_integrity_violated Then
155: -- A check constraint has been violated
156: ben_xdd_shd.g_api_dml := false; -- Unset the api dml status

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

214: --
215: Cursor C_Sel1 is select ben_ext_data_elmt_decd_s.nextval from sys.dual;
216: --
217: Begin
218: hr_utility.set_location('Entering:'||l_proc, 5);
219: --
220: --
221: -- Select the next sequence number
222: --

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

223: Open C_Sel1;
224: Fetch C_Sel1 Into p_rec.ext_data_elmt_decd_id;
225: Close C_Sel1;
226: --
227: hr_utility.set_location(' Leaving:'||l_proc, 10);
228: End pre_insert;
229: --
230: -- ----------------------------------------------------------------------------
231: -- |-----------------------------< post_insert >------------------------------|

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

263: --
264: l_proc varchar2(72) := g_package||'post_insert';
265: --
266: Begin
267: hr_utility.set_location('Entering:'||l_proc, 5);
268: --
269: --
270: -- Start of API User Hook for post_insert.
271: --

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

300: --
301: -- End of API User Hook for post_insert.
302: --
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: End post_insert;
306: --
307: -- ----------------------------------------------------------------------------
308: -- |---------------------------------< ins >----------------------------------|

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

314: --
315: l_proc varchar2(72) := g_package||'ins';
316: --
317: Begin
318: hr_utility.set_location('Entering:'||l_proc, 5);
319: --
320: -- Call the supporting insert validate operations
321: --
322: ben_xdd_bus.insert_validate(p_rec);

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

357: l_rec ben_xdd_shd.g_rec_type;
358: l_proc varchar2(72) := g_package||'ins';
359: --
360: Begin
361: hr_utility.set_location('Entering:'||l_proc, 5);
362: --
363: -- Call conversion function to turn arguments into the
364: -- p_rec structure.
365: --

Line 366: hr_utility.set_location(' value ' || p_val , 101);

362: --
363: -- Call conversion function to turn arguments into the
364: -- p_rec structure.
365: --
366: hr_utility.set_location(' value ' || p_val , 101);
367: hr_utility.set_location('d value ' || p_dcd_val , 101);
368:
369: l_rec :=
370: ben_xdd_shd.convert_args

Line 367: hr_utility.set_location('d value ' || p_dcd_val , 101);

363: -- Call conversion function to turn arguments into the
364: -- p_rec structure.
365: --
366: hr_utility.set_location(' value ' || p_val , 101);
367: hr_utility.set_location('d value ' || p_dcd_val , 101);
368:
369: l_rec :=
370: ben_xdd_shd.convert_args
371: (

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

394: --
395: p_ext_data_elmt_decd_id := l_rec.ext_data_elmt_decd_id;
396: p_object_version_number := l_rec.object_version_number;
397: --
398: hr_utility.set_location(' Leaving:'||l_proc, 10);
399: End ins;
400: --
401: end ben_xdd_ins;