DBA Data[Home] [Help]

APPS.PAY_SBF_UPD dependencies on PAY_SBF_SHD

Line 51: Procedure update_dml(p_rec in out nocopy pay_sbf_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_sbf_shd.g_rec_type) is
52: --
53: l_proc varchar2(72) := g_package||'update_dml';
54: --
55: Begin

Line 78: pay_sbf_shd.constraint_error

74: --
75: Exception
76: When hr_api.check_integrity_violated Then
77: -- A check constraint has been violated
78: pay_sbf_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_sbf_shd.constraint_error

Line 82: pay_sbf_shd.constraint_error

78: pay_sbf_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_sbf_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_sbf_shd.constraint_error

Line 86: pay_sbf_shd.constraint_error

82: pay_sbf_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_sbf_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_sbf_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_sbf_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_sbf_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_sbf_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_sbf_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_sbf_shd.g_rec_type) is
221: --
222: l_proc varchar2(72) := g_package||'convert_defs';
223: --
224: Begin

Line 235: pay_sbf_shd.g_old_rec.balance_type_id;

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

Line 239: pay_sbf_shd.g_old_rec.input_value_id;

235: pay_sbf_shd.g_old_rec.balance_type_id;
236: End If;
237: If (p_rec.input_value_id = hr_api.g_number) then
238: p_rec.input_value_id :=
239: pay_sbf_shd.g_old_rec.input_value_id;
240: End If;
241: If (p_rec.scale = hr_api.g_number) then
242: p_rec.scale :=
243: pay_sbf_shd.g_old_rec.scale;

Line 243: pay_sbf_shd.g_old_rec.scale;

239: pay_sbf_shd.g_old_rec.input_value_id;
240: End If;
241: If (p_rec.scale = hr_api.g_number) then
242: p_rec.scale :=
243: pay_sbf_shd.g_old_rec.scale;
244: End If;
245: If (p_rec.exclusion_rule_id = hr_api.g_number) then
246: p_rec.exclusion_rule_id :=
247: pay_sbf_shd.g_old_rec.exclusion_rule_id;

Line 247: pay_sbf_shd.g_old_rec.exclusion_rule_id;

243: pay_sbf_shd.g_old_rec.scale;
244: End If;
245: If (p_rec.exclusion_rule_id = hr_api.g_number) then
246: p_rec.exclusion_rule_id :=
247: pay_sbf_shd.g_old_rec.exclusion_rule_id;
248: End If;
249: If (p_rec.balance_name = hr_api.g_varchar2) then
250: p_rec.balance_name :=
251: pay_sbf_shd.g_old_rec.balance_name;

Line 251: pay_sbf_shd.g_old_rec.balance_name;

247: pay_sbf_shd.g_old_rec.exclusion_rule_id;
248: End If;
249: If (p_rec.balance_name = hr_api.g_varchar2) then
250: p_rec.balance_name :=
251: pay_sbf_shd.g_old_rec.balance_name;
252: End If;
253:
254: --
255: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 265: p_rec in out nocopy pay_sbf_shd.g_rec_type

261: -- ----------------------------------------------------------------------------
262: Procedure upd
263: (
264: p_effective_date in date,
265: p_rec in out nocopy pay_sbf_shd.g_rec_type
266: ) is
267: --
268: l_proc varchar2(72) := g_package||'upd';
269: --

Line 275: pay_sbf_shd.lck

271: hr_utility.set_location('Entering:'||l_proc, 5);
272: --
273: -- We must lock the row which we need to update.
274: --
275: pay_sbf_shd.lck
276: (
277: p_rec.balance_feed_id,
278: p_rec.object_version_number
279: );

Line 315: l_rec pay_sbf_shd.g_rec_type;

311: p_exclusion_rule_id in number default hr_api.g_number,
312: p_object_version_number in out nocopy number
313: ) is
314: --
315: l_rec pay_sbf_shd.g_rec_type;
316: l_proc varchar2(72) := g_package||'upd';
317: --
318: Begin
319: hr_utility.set_location('Entering:'||l_proc, 5);

Line 325: pay_sbf_shd.convert_args

321: -- Call conversion function to turn arguments into the
322: -- l_rec structure.
323: --
324: l_rec :=
325: pay_sbf_shd.convert_args
326: (
327: p_balance_feed_id,
328: hr_api.g_number,
329: hr_api.g_number,