DBA Data[Home] [Help]

APPS.BEN_CLF_INS dependencies on BEN_CLF_SHD

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

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

Line 180: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

176: p_rec.object_version_number,
177: p_rec.sttd_sal_prdcty_cd
178: );
179: --
180: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: Exception
184: When hr_api.check_integrity_violated Then

Line 186: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: Exception
184: When hr_api.check_integrity_violated Then
185: -- A check constraint has been violated
186: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
187: ben_clf_shd.constraint_error
188: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
189: When hr_api.parent_integrity_violated Then
190: -- Parent integrity has been violated

Line 187: ben_clf_shd.constraint_error

183: Exception
184: When hr_api.check_integrity_violated Then
185: -- A check constraint has been violated
186: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
187: ben_clf_shd.constraint_error
188: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
189: When hr_api.parent_integrity_violated Then
190: -- Parent integrity has been violated
191: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

Line 191: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

187: ben_clf_shd.constraint_error
188: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
189: When hr_api.parent_integrity_violated Then
190: -- Parent integrity has been violated
191: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
192: ben_clf_shd.constraint_error
193: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
194: When hr_api.unique_integrity_violated Then
195: -- Unique integrity has been violated

Line 192: ben_clf_shd.constraint_error

188: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
189: When hr_api.parent_integrity_violated Then
190: -- Parent integrity has been violated
191: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
192: ben_clf_shd.constraint_error
193: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
194: When hr_api.unique_integrity_violated Then
195: -- Unique integrity has been violated
196: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

Line 196: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

192: ben_clf_shd.constraint_error
193: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
194: When hr_api.unique_integrity_violated Then
195: -- Unique integrity has been violated
196: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
197: ben_clf_shd.constraint_error
198: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
199: When Others Then
200: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

Line 197: ben_clf_shd.constraint_error

193: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
194: When hr_api.unique_integrity_violated Then
195: -- Unique integrity has been violated
196: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
197: ben_clf_shd.constraint_error
198: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
199: When Others Then
200: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
201: Raise;

Line 200: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

196: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
197: ben_clf_shd.constraint_error
198: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
199: When Others Then
200: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
201: Raise;
202: End insert_dml;
203: --
204: -- ----------------------------------------------------------------------------

Line 241: Procedure pre_insert(p_rec in out nocopy ben_clf_shd.g_rec_type) is

237: -- Internal Row Handler Use Only.
238: --
239: -- {End Of Comments}
240: -- ----------------------------------------------------------------------------
241: Procedure pre_insert(p_rec in out nocopy ben_clf_shd.g_rec_type) is
242: --
243: l_proc varchar2(72) := g_package||'pre_insert';
244: --
245: Cursor C_Sel1 is select ben_comp_lvl_fctr_s.nextval from sys.dual;

Line 293: p_effective_date in date,p_rec in ben_clf_shd.g_rec_type) is

289: --
290: -- {End Of Comments}
291: -- ----------------------------------------------------------------------------
292: Procedure post_insert(
293: p_effective_date in date,p_rec in ben_clf_shd.g_rec_type) is
294: --
295: l_proc varchar2(72) := g_package||'post_insert';
296: --
297: Begin

Line 387: p_rec in out nocopy ben_clf_shd.g_rec_type

383: -- ----------------------------------------------------------------------------
384: Procedure ins
385: (
386: p_effective_date in date,
387: p_rec in out nocopy ben_clf_shd.g_rec_type
388: ) is
389: --
390: l_proc varchar2(72) := g_package||'ins';
391: --

Line 478: l_rec ben_clf_shd.g_rec_type;

474: p_sttd_sal_prdcty_cd in varchar2 default null
475:
476: ) is
477: --
478: l_rec ben_clf_shd.g_rec_type;
479: l_proc varchar2(72) := g_package||'ins';
480: --
481: Begin
482: hr_utility.set_location('Entering:'||l_proc, 5);

Line 488: ben_clf_shd.convert_args

484: -- Call conversion function to turn arguments into the
485: -- p_rec structure.
486: --
487: l_rec :=
488: ben_clf_shd.convert_args
489: (
490: null,
491: p_business_group_id,
492: p_name,