DBA Data[Home] [Help]

APPS.PAY_SSR_UPD dependencies on PAY_SSR_SHD

Line 51: Procedure update_dml(p_rec in out nocopy pay_ssr_shd.g_rec_type) is

47: -- Internal Row Handler Use Only.
48: --
49: -- {End Of Comments}
50: -- ----------------------------------------------------------------------------
51: Procedure update_dml(p_rec in out nocopy pay_ssr_shd.g_rec_type) is
52: --
53: l_proc varchar2(72) := g_package||'update_dml';
54: --
55: Begin

Line 78: pay_ssr_shd.constraint_error

74: --
75: Exception
76: When hr_api.check_integrity_violated Then
77: -- A check constraint has been violated
78: pay_ssr_shd.constraint_error
79: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
80: When hr_api.parent_integrity_violated Then
81: -- Parent integrity has been violated
82: pay_ssr_shd.constraint_error

Line 82: pay_ssr_shd.constraint_error

78: pay_ssr_shd.constraint_error
79: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
80: When hr_api.parent_integrity_violated Then
81: -- Parent integrity has been violated
82: pay_ssr_shd.constraint_error
83: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
84: When hr_api.unique_integrity_violated Then
85: -- Unique integrity has been violated
86: pay_ssr_shd.constraint_error

Line 86: pay_ssr_shd.constraint_error

82: pay_ssr_shd.constraint_error
83: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
84: When hr_api.unique_integrity_violated Then
85: -- Unique integrity has been violated
86: pay_ssr_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When Others Then
89: Raise;
90: End update_dml;

Line 124: Procedure pre_update(p_rec in pay_ssr_shd.g_rec_type) is

120: -- Internal Row Handler Use Only.
121: --
122: -- {End Of Comments}
123: -- ----------------------------------------------------------------------------
124: Procedure pre_update(p_rec in pay_ssr_shd.g_rec_type) is
125: --
126: l_proc varchar2(72) := g_package||'pre_update';
127: --
128: Begin

Line 166: Procedure post_update(p_rec in pay_ssr_shd.g_rec_type) is

162: -- Internal Row Handler Use Only.
163: --
164: -- {End Of Comments}
165: -- ----------------------------------------------------------------------------
166: Procedure post_update(p_rec in pay_ssr_shd.g_rec_type) is
167: --
168: l_proc varchar2(72) := g_package||'post_update';
169: --
170: Begin

Line 220: Procedure convert_defs(p_rec in out nocopy pay_ssr_shd.g_rec_type) is

216: -- Internal Row Handler Use Only.
217: --
218: -- {End Of Comments}
219: -- ----------------------------------------------------------------------------
220: Procedure convert_defs(p_rec in out nocopy pay_ssr_shd.g_rec_type) is
221: --
222: l_proc varchar2(72) := g_package||'convert_defs';
223: --
224: Begin

Line 235: pay_ssr_shd.g_old_rec.element_type_id;

231: -- is being used then we must set to the 'current' argument value.
232: --
233: If (p_rec.element_type_id = hr_api.g_number) then
234: p_rec.element_type_id :=
235: pay_ssr_shd.g_old_rec.element_type_id;
236: End If;
237: If (p_rec.element_classification = hr_api.g_varchar2) then
238: p_rec.element_classification :=
239: pay_ssr_shd.g_old_rec.element_classification;

Line 239: pay_ssr_shd.g_old_rec.element_classification;

235: pay_ssr_shd.g_old_rec.element_type_id;
236: End If;
237: If (p_rec.element_classification = hr_api.g_varchar2) then
238: p_rec.element_classification :=
239: pay_ssr_shd.g_old_rec.element_classification;
240: End If;
241: If (p_rec.exclusion_rule_id = hr_api.g_number) then
242: p_rec.exclusion_rule_id :=
243: pay_ssr_shd.g_old_rec.exclusion_rule_id;

Line 243: pay_ssr_shd.g_old_rec.exclusion_rule_id;

239: pay_ssr_shd.g_old_rec.element_classification;
240: End If;
241: If (p_rec.exclusion_rule_id = hr_api.g_number) then
242: p_rec.exclusion_rule_id :=
243: pay_ssr_shd.g_old_rec.exclusion_rule_id;
244: End If;
245: --
246: hr_utility.set_location(' Leaving:'||l_proc, 10);
247: --

Line 256: p_rec in out nocopy pay_ssr_shd.g_rec_type

252: -- ----------------------------------------------------------------------------
253: Procedure upd
254: (
255: p_effective_date in date,
256: p_rec in out nocopy pay_ssr_shd.g_rec_type
257: ) is
258: --
259: l_proc varchar2(72) := g_package||'upd';
260: --

Line 266: pay_ssr_shd.lck

262: hr_utility.set_location('Entering:'||l_proc, 5);
263: --
264: -- We must lock the row which we need to update.
265: --
266: pay_ssr_shd.lck
267: (
268: p_rec.sub_classification_rule_id,
269: p_rec.object_version_number
270: );

Line 306: l_rec pay_ssr_shd.g_rec_type;

302: p_object_version_number in out nocopy number
303: ,p_exclusion_rule_id in number default hr_api.g_number
304: ) is
305: --
306: l_rec pay_ssr_shd.g_rec_type;
307: l_proc varchar2(72) := g_package||'upd';
308: --
309: Begin
310: hr_utility.set_location('Entering:'||l_proc, 5);

Line 316: pay_ssr_shd.convert_args

312: -- Call conversion function to turn arguments into the
313: -- l_rec structure.
314: --
315: l_rec :=
316: pay_ssr_shd.convert_args
317: (
318: p_sub_classification_rule_id,
319: hr_api.g_number,
320: p_element_classification,