DBA Data[Home] [Help]

APPS.BEN_XRD_INS dependencies on BEN_XRD_SHD

Line 53: Procedure insert_dml(p_rec in out nocopy ben_xrd_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_xrd_shd.g_rec_type) is
54: --
55: l_proc varchar2(72) := g_package||'insert_dml';
56: --
57: Begin

Line 61: ben_xrd_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_xrd_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: ben_ext_rslt_dtl
64: --
65: insert into ben_ext_rslt_dtl

Line 708: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

704: p_rec.object_version_number,
705: p_rec.ext_rcd_in_file_id
706: );
707: --
708: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
709: --
710: hr_utility.set_location(' Leaving:'||l_proc, 10);
711: Exception
712: When hr_api.check_integrity_violated Then

Line 714: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

710: hr_utility.set_location(' Leaving:'||l_proc, 10);
711: Exception
712: When hr_api.check_integrity_violated Then
713: -- A check constraint has been violated
714: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
715: ben_xrd_shd.constraint_error
716: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
717: When hr_api.parent_integrity_violated Then
718: -- Parent integrity has been violated

Line 715: ben_xrd_shd.constraint_error

711: Exception
712: When hr_api.check_integrity_violated Then
713: -- A check constraint has been violated
714: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
715: ben_xrd_shd.constraint_error
716: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
717: When hr_api.parent_integrity_violated Then
718: -- Parent integrity has been violated
719: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

Line 719: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

715: ben_xrd_shd.constraint_error
716: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
717: When hr_api.parent_integrity_violated Then
718: -- Parent integrity has been violated
719: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
720: ben_xrd_shd.constraint_error
721: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
722: When hr_api.unique_integrity_violated Then
723: -- Unique integrity has been violated

Line 720: ben_xrd_shd.constraint_error

716: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
717: When hr_api.parent_integrity_violated Then
718: -- Parent integrity has been violated
719: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
720: ben_xrd_shd.constraint_error
721: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
722: When hr_api.unique_integrity_violated Then
723: -- Unique integrity has been violated
724: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

Line 724: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

720: ben_xrd_shd.constraint_error
721: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
722: When hr_api.unique_integrity_violated Then
723: -- Unique integrity has been violated
724: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
725: ben_xrd_shd.constraint_error
726: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
727: When Others Then
728: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

Line 725: ben_xrd_shd.constraint_error

721: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
722: When hr_api.unique_integrity_violated Then
723: -- Unique integrity has been violated
724: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
725: ben_xrd_shd.constraint_error
726: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
727: When Others Then
728: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
729: Raise;

Line 728: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status

724: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
725: ben_xrd_shd.constraint_error
726: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
727: When Others Then
728: ben_xrd_shd.g_api_dml := false; -- Unset the api dml status
729: Raise;
730: End insert_dml;
731: --
732: -- ----------------------------------------------------------------------------

Line 769: Procedure pre_insert(p_rec in out nocopy ben_xrd_shd.g_rec_type) is

765: -- Internal Row Handler Use Only.
766: --
767: -- {End Of Comments}
768: -- ----------------------------------------------------------------------------
769: Procedure pre_insert(p_rec in out nocopy ben_xrd_shd.g_rec_type) is
770: --
771: l_proc varchar2(72) := g_package||'pre_insert';
772: --
773: Cursor C_Sel1 is select ben_ext_rslt_dtl_s.nextval from sys.dual;

Line 820: Procedure post_insert(p_rec in ben_xrd_shd.g_rec_type) is

816: -- Internal Row Handler Use Only.
817: --
818: -- {End Of Comments}
819: -- ----------------------------------------------------------------------------
820: Procedure post_insert(p_rec in ben_xrd_shd.g_rec_type) is
821: --
822: l_proc varchar2(72) := g_package||'post_insert';
823: --
824: Begin

Line 1176: p_rec in out nocopy ben_xrd_shd.g_rec_type

1172: -- |---------------------------------< ins >----------------------------------|
1173: -- ----------------------------------------------------------------------------
1174: Procedure ins
1175: (
1176: p_rec in out nocopy ben_xrd_shd.g_rec_type
1177: ) is
1178: --
1179: l_proc varchar2(72) := g_package||'ins';
1180: --

Line 1527: l_rec ben_xrd_shd.g_rec_type;

1523: p_object_version_number out nocopy number ,
1524: p_ext_rcd_in_file_id in number default null
1525: ) is
1526: --
1527: l_rec ben_xrd_shd.g_rec_type;
1528: l_proc varchar2(72) := g_package||'ins';
1529: --
1530: Begin
1531: hr_utility.set_location('Entering:'||l_proc, 5);

Line 1537: ben_xrd_shd.convert_args

1533: -- Call conversion function to turn arguments into the
1534: -- p_rec structure.
1535: --
1536: l_rec :=
1537: ben_xrd_shd.convert_args
1538: (
1539: null,
1540: p_prmy_sort_val,
1541: p_scnd_sort_val,