DBA Data[Home] [Help]

APPS.BEN_ACT_INS dependencies on BEN_ACT_SHD

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

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

Line 84: ben_act_shd.g_api_dml := false; -- Unset the api dml status

80: p_rec.chunk_number,
81: p_rec.object_version_number
82: );
83: --
84: ben_act_shd.g_api_dml := false; -- Unset the api dml status
85: --
86: hr_utility.set_location(' Leaving:'||l_proc, 10);
87: Exception
88: When hr_api.check_integrity_violated Then

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

86: hr_utility.set_location(' Leaving:'||l_proc, 10);
87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated
90: ben_act_shd.g_api_dml := false; -- Unset the api dml status
91: ben_act_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated

Line 91: ben_act_shd.constraint_error

87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated
90: ben_act_shd.g_api_dml := false; -- Unset the api dml status
91: ben_act_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: ben_act_shd.g_api_dml := false; -- Unset the api dml status

Line 95: ben_act_shd.g_api_dml := false; -- Unset the api dml status

91: ben_act_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: ben_act_shd.g_api_dml := false; -- Unset the api dml status
96: ben_act_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated

Line 96: ben_act_shd.constraint_error

92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: ben_act_shd.g_api_dml := false; -- Unset the api dml status
96: ben_act_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: ben_act_shd.g_api_dml := false; -- Unset the api dml status

Line 100: ben_act_shd.g_api_dml := false; -- Unset the api dml status

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

Line 101: ben_act_shd.constraint_error

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

Line 104: ben_act_shd.g_api_dml := false; -- Unset the api dml status

100: ben_act_shd.g_api_dml := false; -- Unset the api dml status
101: ben_act_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When Others Then
104: ben_act_shd.g_api_dml := false; -- Unset the api dml status
105: Raise;
106: End insert_dml;
107: --
108: -- ----------------------------------------------------------------------------

Line 145: Procedure pre_insert(p_rec in out nocopy ben_act_shd.g_rec_type) is

141: -- Internal Row Handler Use Only.
142: --
143: -- {End Of Comments}
144: -- ----------------------------------------------------------------------------
145: Procedure pre_insert(p_rec in out nocopy ben_act_shd.g_rec_type) is
146: --
147: l_proc varchar2(72) := g_package||'pre_insert';
148: --
149: Cursor C_Sel1 is select ben_person_actions_s.nextval from sys.dual;

Line 197: p_effective_date in date,p_rec in ben_act_shd.g_rec_type) is

193: --
194: -- {End Of Comments}
195: -- ----------------------------------------------------------------------------
196: Procedure post_insert(
197: p_effective_date in date,p_rec in ben_act_shd.g_rec_type) is
198: --
199: l_proc varchar2(72) := g_package||'post_insert';
200: --
201: Begin

Line 241: p_rec in out nocopy ben_act_shd.g_rec_type

237: -- ----------------------------------------------------------------------------
238: Procedure ins
239: (
240: p_effective_date in date,
241: p_rec in out nocopy ben_act_shd.g_rec_type
242: ) is
243: --
244: l_proc varchar2(72) := g_package||'ins';
245: --

Line 282: l_rec ben_act_shd.g_rec_type;

278: p_chunk_number in number default null,
279: p_object_version_number out nocopy number
280: ) is
281: --
282: l_rec ben_act_shd.g_rec_type;
283: l_proc varchar2(72) := g_package||'ins';
284: --
285: Begin
286: hr_utility.set_location('Entering:'||l_proc, 5);

Line 292: ben_act_shd.convert_args

288: -- Call conversion function to turn arguments into the
289: -- p_rec structure.
290: --
291: l_rec :=
292: ben_act_shd.convert_args
293: (
294: null,
295: p_person_id,
296: p_ler_id,