DBA Data[Home] [Help]

APPS.BEN_HWF_INS dependencies on BEN_HWF_SHD

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

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

Line 170: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status

166: p_rec.hwf_attribute30,
167: p_rec.object_version_number
168: );
169: --
170: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
171: --
172: hr_utility.set_location(' Leaving:'||l_proc, 10);
173: Exception
174: When hr_api.check_integrity_violated Then

Line 176: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status

172: hr_utility.set_location(' Leaving:'||l_proc, 10);
173: Exception
174: When hr_api.check_integrity_violated Then
175: -- A check constraint has been violated
176: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
177: ben_hwf_shd.constraint_error
178: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
179: When hr_api.parent_integrity_violated Then
180: -- Parent integrity has been violated

Line 177: ben_hwf_shd.constraint_error

173: Exception
174: When hr_api.check_integrity_violated Then
175: -- A check constraint has been violated
176: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
177: ben_hwf_shd.constraint_error
178: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
179: When hr_api.parent_integrity_violated Then
180: -- Parent integrity has been violated
181: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status

Line 181: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status

177: ben_hwf_shd.constraint_error
178: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
179: When hr_api.parent_integrity_violated Then
180: -- Parent integrity has been violated
181: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
182: ben_hwf_shd.constraint_error
183: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
184: When hr_api.unique_integrity_violated Then
185: -- Unique integrity has been violated

Line 182: ben_hwf_shd.constraint_error

178: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
179: When hr_api.parent_integrity_violated Then
180: -- Parent integrity has been violated
181: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
182: ben_hwf_shd.constraint_error
183: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
184: When hr_api.unique_integrity_violated Then
185: -- Unique integrity has been violated
186: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status

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

182: ben_hwf_shd.constraint_error
183: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
184: When hr_api.unique_integrity_violated Then
185: -- Unique integrity has been violated
186: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
187: ben_hwf_shd.constraint_error
188: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
189: When Others Then
190: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status

Line 187: ben_hwf_shd.constraint_error

183: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
184: When hr_api.unique_integrity_violated Then
185: -- Unique integrity has been violated
186: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
187: ben_hwf_shd.constraint_error
188: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
189: When Others Then
190: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
191: Raise;

Line 190: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status

186: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
187: ben_hwf_shd.constraint_error
188: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
189: When Others Then
190: ben_hwf_shd.g_api_dml := false; -- Unset the api dml status
191: Raise;
192: End insert_dml;
193: --
194: -- ----------------------------------------------------------------------------

Line 231: Procedure pre_insert(p_rec in out nocopy ben_hwf_shd.g_rec_type) is

227: -- Internal Row Handler Use Only.
228: --
229: -- {End Of Comments}
230: -- ----------------------------------------------------------------------------
231: Procedure pre_insert(p_rec in out nocopy ben_hwf_shd.g_rec_type) is
232: --
233: l_proc varchar2(72) := g_package||'pre_insert';
234: --
235: Cursor C_Sel1 is select ben_hrs_wkd_in_perd_fctr_s.nextval from sys.dual;

Line 283: p_effective_date in date,p_rec in ben_hwf_shd.g_rec_type) is

279: --
280: -- {End Of Comments}
281: -- ----------------------------------------------------------------------------
282: Procedure post_insert(
283: p_effective_date in date,p_rec in ben_hwf_shd.g_rec_type) is
284: --
285: l_proc varchar2(72) := g_package||'post_insert';
286: --
287: Begin

Line 372: p_rec in out nocopy ben_hwf_shd.g_rec_type

368: -- ----------------------------------------------------------------------------
369: Procedure ins
370: (
371: p_effective_date in date,
372: p_rec in out nocopy ben_hwf_shd.g_rec_type
373: ) is
374: --
375: l_proc varchar2(72) := g_package||'ins';
376: --

Line 457: l_rec ben_hwf_shd.g_rec_type;

453: p_hwf_attribute30 in varchar2 default null,
454: p_object_version_number out nocopy number
455: ) is
456: --
457: l_rec ben_hwf_shd.g_rec_type;
458: l_proc varchar2(72) := g_package||'ins';
459: --
460: Begin
461: hr_utility.set_location('Entering:'||l_proc, 5);

Line 467: ben_hwf_shd.convert_args

463: -- Call conversion function to turn arguments into the
464: -- p_rec structure.
465: --
466: l_rec :=
467: ben_hwf_shd.convert_args
468: (
469: null,
470: p_name,
471: p_business_group_id,