DBA Data[Home] [Help]

APPS.BEN_EPE_INS dependencies on BEN_EPE_SHD

Line 53: Procedure insert_dml(p_rec in out nocopy ben_epe_shd.g_rec_type) is

49: -- Internal Row Handler Use Only.
50: --
51: -- {End Of Comments}
52: -- ----------------------------------------------------------------------------
53: Procedure insert_dml(p_rec in out nocopy ben_epe_shd.g_rec_type) is
54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin

Line 61: ben_epe_shd.g_api_dml := true; -- Set the api dml status

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_epe_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: ben_elig_per_elctbl_chc
64: --
65: insert into ben_elig_per_elctbl_chc

Line 272: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

268: p_rec.program_update_date,
269: p_rec.object_version_number
270: );
271: --
272: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
273: --
274: hr_utility.set_location(' Leaving:'||l_proc, 10);
275: Exception
276: When hr_api.check_integrity_violated Then

Line 278: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

274: hr_utility.set_location(' Leaving:'||l_proc, 10);
275: Exception
276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
279: ben_epe_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.parent_integrity_violated Then
282: -- Parent integrity has been violated

Line 279: ben_epe_shd.constraint_error

275: Exception
276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
279: ben_epe_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.parent_integrity_violated Then
282: -- Parent integrity has been violated
283: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

Line 283: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

279: ben_epe_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.parent_integrity_violated Then
282: -- Parent integrity has been violated
283: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
284: ben_epe_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When hr_api.unique_integrity_violated Then
287: -- Unique integrity has been violated

Line 284: ben_epe_shd.constraint_error

280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.parent_integrity_violated Then
282: -- Parent integrity has been violated
283: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
284: ben_epe_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When hr_api.unique_integrity_violated Then
287: -- Unique integrity has been violated
288: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

Line 288: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

284: ben_epe_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When hr_api.unique_integrity_violated Then
287: -- Unique integrity has been violated
288: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
289: ben_epe_shd.constraint_error
290: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
291: When Others Then
292: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

Line 289: ben_epe_shd.constraint_error

285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When hr_api.unique_integrity_violated Then
287: -- Unique integrity has been violated
288: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
289: ben_epe_shd.constraint_error
290: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
291: When Others Then
292: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
293: Raise;

Line 292: ben_epe_shd.g_api_dml := false; -- Unset the api dml status

288: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
289: ben_epe_shd.constraint_error
290: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
291: When Others Then
292: ben_epe_shd.g_api_dml := false; -- Unset the api dml status
293: Raise;
294: End insert_dml;
295: --
296: -- ----------------------------------------------------------------------------

Line 333: Procedure pre_insert(p_rec in out nocopy ben_epe_shd.g_rec_type) is

329: -- Internal Row Handler Use Only.
330: --
331: -- {End Of Comments}
332: -- ----------------------------------------------------------------------------
333: Procedure pre_insert(p_rec in out nocopy ben_epe_shd.g_rec_type) is
334: --
335: l_proc varchar2(72) := g_package||'pre_insert';
336: --
337: --

Line 384: Procedure post_insert(p_rec in ben_epe_shd.g_rec_type) is

380: -- Internal Row Handler Use Only.
381: --
382: -- {End Of Comments}
383: -- ----------------------------------------------------------------------------
384: Procedure post_insert(p_rec in ben_epe_shd.g_rec_type) is
385: --
386: l_proc varchar2(72) := g_package||'post_insert';
387: --
388: Begin

Line 400: p_rec in out nocopy ben_epe_shd.g_rec_type

396: -- ----------------------------------------------------------------------------
397: Procedure ins
398: (
399: p_effective_date in date,
400: p_rec in out nocopy ben_epe_shd.g_rec_type
401: ) is
402: --
403: l_proc varchar2(72) := g_package||'ins';
404: --

Line 534: l_rec ben_epe_shd.g_rec_type;

530: p_program_update_date in date default null,
531: p_object_version_number out nocopy number
532: ) is
533: --
534: l_rec ben_epe_shd.g_rec_type;
535: l_proc varchar2(72) := g_package||'ins';
536: --
537: Begin
538: hr_utility.set_location('Entering:'||l_proc, 5);

Line 544: ben_epe_shd.convert_args

540: -- Call conversion function to turn arguments into the
541: -- p_rec structure.
542: --
543: l_rec :=
544: ben_epe_shd.convert_args
545: (
546: null,
547: -- p_enrt_typ_cycl_cd,
548: p_enrt_cvg_strt_dt_cd,