DBA Data[Home] [Help]

APPS.BEN_BAI_INS dependencies on BEN_BAI_SHD

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

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

Line 90: ben_bai_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_bai_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_bai_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_bai_shd.g_api_dml := false; -- Unset the api dml status
97: ben_bai_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_bai_shd.constraint_error

93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: ben_bai_shd.g_api_dml := false; -- Unset the api dml status
97: ben_bai_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_bai_shd.g_api_dml := false; -- Unset the api dml status

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

97: ben_bai_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_bai_shd.g_api_dml := false; -- Unset the api dml status
102: ben_bai_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_bai_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_bai_shd.g_api_dml := false; -- Unset the api dml status
102: ben_bai_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_bai_shd.g_api_dml := false; -- Unset the api dml status

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

102: ben_bai_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_bai_shd.g_api_dml := false; -- Unset the api dml status
107: ben_bai_shd.constraint_error
108: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
109: When Others Then
110: ben_bai_shd.g_api_dml := false; -- Unset the api dml status

Line 107: ben_bai_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_bai_shd.g_api_dml := false; -- Unset the api dml status
107: ben_bai_shd.constraint_error
108: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
109: When Others Then
110: ben_bai_shd.g_api_dml := false; -- Unset the api dml status
111: Raise;

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

106: ben_bai_shd.g_api_dml := false; -- Unset the api dml status
107: ben_bai_shd.constraint_error
108: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
109: When Others Then
110: ben_bai_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_bai_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_bai_shd.g_rec_type) is
152: --
153: l_proc varchar2(72) := g_package||'pre_insert';
154: --
155: cursor c1 is

Line 203: p_effective_date in date,p_rec in ben_bai_shd.g_rec_type) is

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

Line 252: p_rec in out nocopy ben_bai_shd.g_rec_type

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

Line 297: l_rec ben_bai_shd.g_rec_type;

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

Line 307: ben_bai_shd.convert_args

303: -- Call conversion function to turn arguments into the
304: -- p_rec structure.
305: --
306: l_rec :=
307: ben_bai_shd.convert_args
308: (
309: null,
310: p_benefit_action_id,
311: p_person_id,