DBA Data[Home] [Help]

APPS.BEN_PSQ_INS dependencies on BEN_PSQ_SHD

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

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

Line 144: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

140: p_rec.psq_attribute30,
141: p_rec.object_version_number
142: );
143: --
144: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
145: --
146: hr_utility.set_location(' Leaving:'||l_proc, 10);
147: Exception
148: When hr_api.check_integrity_violated Then

Line 150: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

146: hr_utility.set_location(' Leaving:'||l_proc, 10);
147: Exception
148: When hr_api.check_integrity_violated Then
149: -- A check constraint has been violated
150: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
151: ben_psq_shd.constraint_error
152: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
153: When hr_api.parent_integrity_violated Then
154: -- Parent integrity has been violated

Line 151: ben_psq_shd.constraint_error

147: Exception
148: When hr_api.check_integrity_violated Then
149: -- A check constraint has been violated
150: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
151: ben_psq_shd.constraint_error
152: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
153: When hr_api.parent_integrity_violated Then
154: -- Parent integrity has been violated
155: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

Line 155: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

151: ben_psq_shd.constraint_error
152: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
153: When hr_api.parent_integrity_violated Then
154: -- Parent integrity has been violated
155: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
156: ben_psq_shd.constraint_error
157: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
158: When hr_api.unique_integrity_violated Then
159: -- Unique integrity has been violated

Line 156: ben_psq_shd.constraint_error

152: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
153: When hr_api.parent_integrity_violated Then
154: -- Parent integrity has been violated
155: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
156: ben_psq_shd.constraint_error
157: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
158: When hr_api.unique_integrity_violated Then
159: -- Unique integrity has been violated
160: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

Line 160: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

156: ben_psq_shd.constraint_error
157: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
158: When hr_api.unique_integrity_violated Then
159: -- Unique integrity has been violated
160: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
161: ben_psq_shd.constraint_error
162: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
163: When Others Then
164: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

Line 161: ben_psq_shd.constraint_error

157: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
158: When hr_api.unique_integrity_violated Then
159: -- Unique integrity has been violated
160: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
161: ben_psq_shd.constraint_error
162: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
163: When Others Then
164: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
165: Raise;

Line 164: ben_psq_shd.g_api_dml := false; -- Unset the api dml status

160: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
161: ben_psq_shd.constraint_error
162: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
163: When Others Then
164: ben_psq_shd.g_api_dml := false; -- Unset the api dml status
165: Raise;
166: End insert_dml;
167: --
168: -- ----------------------------------------------------------------------------

Line 205: Procedure pre_insert(p_rec in out nocopy ben_psq_shd.g_rec_type) is

201: -- Internal Row Handler Use Only.
202: --
203: -- {End Of Comments}
204: -- ----------------------------------------------------------------------------
205: Procedure pre_insert(p_rec in out nocopy ben_psq_shd.g_rec_type) is
206: --
207: l_proc varchar2(72) := g_package||'pre_insert';
208: --
209: cursor c1 is

Line 260: p_effective_date in date,p_rec in ben_psq_shd.g_rec_type) is

256: --
257: -- {End Of Comments}
258: -- ----------------------------------------------------------------------------
259: Procedure post_insert(
260: p_effective_date in date,p_rec in ben_psq_shd.g_rec_type) is
261: --
262: l_proc varchar2(72) := g_package||'post_insert';
263: --
264: Begin

Line 336: p_rec in out nocopy ben_psq_shd.g_rec_type

332: -- ----------------------------------------------------------------------------
333: Procedure ins
334: (
335: p_effective_date in date,
336: p_rec in out nocopy ben_psq_shd.g_rec_type
337: ) is
338: --
339: l_proc varchar2(72) := g_package||'ins';
340: --

Line 408: l_rec ben_psq_shd.g_rec_type;

404: p_psq_attribute30 in varchar2 default null,
405: p_object_version_number out nocopy number
406: ) is
407: --
408: l_rec ben_psq_shd.g_rec_type;
409: l_proc varchar2(72) := g_package||'ins';
410: --
411: Begin
412: hr_utility.set_location('Entering:'||l_proc, 5);

Line 418: ben_psq_shd.convert_args

414: -- Call conversion function to turn arguments into the
415: -- p_rec structure.
416: --
417: l_rec :=
418: ben_psq_shd.convert_args
419: (
420: null,
421: p_py_freq_cd,
422: p_dflt_flag,