DBA Data[Home] [Help]

APPS.BEN_BLI_INS dependencies on BEN_BLI_SHD

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

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

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

106: p_rec.business_group_id,
107: p_rec.object_version_number
108: );
109: --
110: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
111: --
112: hr_utility.set_location(' Leaving:'||l_proc, 10);
113: Exception
114: When hr_api.check_integrity_violated Then

Line 116: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

112: hr_utility.set_location(' Leaving:'||l_proc, 10);
113: Exception
114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
117: ben_bli_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated

Line 117: ben_bli_shd.constraint_error

113: Exception
114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
117: ben_bli_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

Line 121: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

117: ben_bli_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
122: ben_bli_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated

Line 122: ben_bli_shd.constraint_error

118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When hr_api.parent_integrity_violated Then
120: -- Parent integrity has been violated
121: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
122: ben_bli_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

Line 126: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

122: ben_bli_shd.constraint_error
123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
127: ben_bli_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

Line 127: ben_bli_shd.constraint_error

123: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
124: When hr_api.unique_integrity_violated Then
125: -- Unique integrity has been violated
126: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
127: ben_bli_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
131: Raise;

Line 130: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

126: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
127: ben_bli_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When Others Then
130: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
131: Raise;
132: End insert_dml;
133: --
134: -- ----------------------------------------------------------------------------

Line 171: Procedure pre_insert(p_rec in out nocopy ben_bli_shd.g_rec_type) is

167: -- Internal Row Handler Use Only.
168: --
169: -- {End Of Comments}
170: -- ----------------------------------------------------------------------------
171: Procedure pre_insert(p_rec in out nocopy ben_bli_shd.g_rec_type) is
172: --
173: l_proc varchar2(72) := g_package||'pre_insert';
174: --
175: Cursor C_Sel1 is select ben_batch_ler_info_s.nextval from sys.dual;

Line 223: p_effective_date in date,p_rec in ben_bli_shd.g_rec_type) is

219: --
220: -- {End Of Comments}
221: -- ----------------------------------------------------------------------------
222: Procedure post_insert(
223: p_effective_date in date,p_rec in ben_bli_shd.g_rec_type) is
224: --
225: l_proc varchar2(72) := g_package||'post_insert';
226: --
227: Begin

Line 280: p_rec in out nocopy ben_bli_shd.g_rec_type

276: -- ----------------------------------------------------------------------------
277: Procedure ins
278: (
279: p_effective_date in date,
280: p_rec in out nocopy ben_bli_shd.g_rec_type
281: ) is
282: --
283: l_proc varchar2(72) := g_package||'ins';
284: --

Line 334: l_rec ben_bli_shd.g_rec_type;

330: p_business_group_id in number,
331: p_object_version_number out nocopy number
332: ) is
333: --
334: l_rec ben_bli_shd.g_rec_type;
335: l_proc varchar2(72) := g_package||'ins';
336: --
337: Begin
338: hr_utility.set_location('Entering:'||l_proc, 5);

Line 344: ben_bli_shd.convert_args

340: -- Call conversion function to turn arguments into the
341: -- p_rec structure.
342: --
343: l_rec :=
344: ben_bli_shd.convert_args
345: (
346: null,
347: p_benefit_action_id,
348: p_person_id,