DBA Data[Home] [Help]

APPS.BEN_BEI_INS dependencies on BEN_BEI_SHD

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

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

Line 90: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

86: p_rec.business_group_id,
87: p_rec.object_version_number
88: );
89: --
90: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
91: --
92: hr_utility.set_location(' Leaving:'||l_proc, 10);
93: Exception
94: When hr_api.check_integrity_violated Then

Line 96: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

92: hr_utility.set_location(' Leaving:'||l_proc, 10);
93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
97: ben_bei_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated

Line 97: ben_bei_shd.constraint_error

93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
97: ben_bei_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated
101: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

Line 101: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

97: ben_bei_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated
101: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
102: ben_bei_shd.constraint_error
103: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
104: When hr_api.unique_integrity_violated Then
105: -- Unique integrity has been violated

Line 102: ben_bei_shd.constraint_error

98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated
101: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
102: ben_bei_shd.constraint_error
103: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
104: When hr_api.unique_integrity_violated Then
105: -- Unique integrity has been violated
106: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

Line 106: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

102: ben_bei_shd.constraint_error
103: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
104: When hr_api.unique_integrity_violated Then
105: -- Unique integrity has been violated
106: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
107: ben_bei_shd.constraint_error
108: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
109: When Others Then
110: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

Line 107: ben_bei_shd.constraint_error

103: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
104: When hr_api.unique_integrity_violated Then
105: -- Unique integrity has been violated
106: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
107: ben_bei_shd.constraint_error
108: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
109: When Others Then
110: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
111: Raise;

Line 110: ben_bei_shd.g_api_dml := false; -- Unset the api dml status

106: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
107: ben_bei_shd.constraint_error
108: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
109: When Others Then
110: ben_bei_shd.g_api_dml := false; -- Unset the api dml status
111: Raise;
112: End insert_dml;
113: --
114: -- ----------------------------------------------------------------------------

Line 151: Procedure pre_insert(p_rec in out nocopy ben_bei_shd.g_rec_type) is

147: -- Internal Row Handler Use Only.
148: --
149: -- {End Of Comments}
150: -- ----------------------------------------------------------------------------
151: Procedure pre_insert(p_rec in out nocopy ben_bei_shd.g_rec_type) is
152: --
153: l_proc varchar2(72) := g_package||'pre_insert';
154: --
155: Cursor C_Sel1 is select ben_batch_elig_info_s.nextval from sys.dual;

Line 203: p_rec in ben_bei_shd.g_rec_type) is

199: --
200: -- {End Of Comments}
201: -- ----------------------------------------------------------------------------
202: Procedure post_insert(p_effective_date in date,
203: p_rec in ben_bei_shd.g_rec_type) is
204: --
205: l_proc varchar2(72) := g_package||'post_insert';
206: --
207: Begin

Line 250: p_rec in out nocopy ben_bei_shd.g_rec_type

246: -- ----------------------------------------------------------------------------
247: Procedure ins
248: (
249: p_effective_date in date,
250: p_rec in out nocopy ben_bei_shd.g_rec_type
251: ) is
252: --
253: l_proc varchar2(72) := g_package||'ins';
254: --

Line 294: l_rec ben_bei_shd.g_rec_type;

290: p_business_group_id in number,
291: p_object_version_number out nocopy number
292: ) is
293: --
294: l_rec ben_bei_shd.g_rec_type;
295: l_proc varchar2(72) := g_package||'ins';
296: --
297: Begin
298: hr_utility.set_location('Entering:'||l_proc, 5);

Line 304: ben_bei_shd.convert_args

300: -- Call conversion function to turn arguments into the
301: -- p_rec structure.
302: --
303: l_rec :=
304: ben_bei_shd.convert_args
305: (
306: null,
307: p_benefit_action_id,
308: p_person_id,