DBA Data[Home] [Help]

APPS.PAY_SBA_UPD dependencies on PAY_SBA_SHD

Line 55: (p_rec in out nocopy pay_sba_shd.g_rec_type

51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml
55: (p_rec in out nocopy pay_sba_shd.g_rec_type
56: ) is
57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: --

Line 87: pay_sba_shd.constraint_error

83: Exception
84: When hr_api.check_integrity_violated Then
85: -- A check constraint has been violated
86: --
87: pay_sba_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: --

Line 92: pay_sba_shd.constraint_error

88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: --
92: pay_sba_shd.constraint_error
93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: --

Line 97: pay_sba_shd.constraint_error

93: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
94: When hr_api.unique_integrity_violated Then
95: -- Unique integrity has been violated
96: --
97: pay_sba_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When Others Then
100: --
101: Raise;

Line 137: (p_rec in pay_sba_shd.g_rec_type

133: --
134: -- {End Of Comments}
135: -- ----------------------------------------------------------------------------
136: Procedure pre_update
137: (p_rec in pay_sba_shd.g_rec_type
138: ) is
139: --
140: l_proc varchar2(72) := g_package||'pre_update';
141: --

Line 181: (p_rec in pay_sba_shd.g_rec_type

177: --
178: -- {End Of Comments}
179: -- ----------------------------------------------------------------------------
180: Procedure post_update
181: (p_rec in pay_sba_shd.g_rec_type
182: ) is
183: --
184: l_proc varchar2(72) := g_package||'post_update';
185: --

Line 236: (p_rec in out nocopy pay_sba_shd.g_rec_type

232: --
233: -- {End Of Comments}
234: -- ----------------------------------------------------------------------------
235: Procedure convert_defs
236: (p_rec in out nocopy pay_sba_shd.g_rec_type
237: ) is
238: --
239: Begin
240: --

Line 248: pay_sba_shd.g_old_rec.attribute_name;

244: -- is being used then we must set to the 'current' argument value.
245: --
246: If (p_rec.attribute_name = hr_api.g_varchar2) then
247: p_rec.attribute_name :=
248: pay_sba_shd.g_old_rec.attribute_name;
249: End If;
250: If (p_rec.defined_balance_id = hr_api.g_number) then
251: p_rec.defined_balance_id :=
252: pay_sba_shd.g_old_rec.defined_balance_id;

Line 252: pay_sba_shd.g_old_rec.defined_balance_id;

248: pay_sba_shd.g_old_rec.attribute_name;
249: End If;
250: If (p_rec.defined_balance_id = hr_api.g_number) then
251: p_rec.defined_balance_id :=
252: pay_sba_shd.g_old_rec.defined_balance_id;
253: End If;
254: If (p_rec.exclusion_rule_id = hr_api.g_number) then
255: p_rec.exclusion_rule_id :=
256: pay_sba_shd.g_old_rec.exclusion_rule_id;

Line 256: pay_sba_shd.g_old_rec.exclusion_rule_id;

252: pay_sba_shd.g_old_rec.defined_balance_id;
253: End If;
254: If (p_rec.exclusion_rule_id = hr_api.g_number) then
255: p_rec.exclusion_rule_id :=
256: pay_sba_shd.g_old_rec.exclusion_rule_id;
257: End If;
258: --
259: End convert_defs;
260: --

Line 265: (p_rec in out nocopy pay_sba_shd.g_rec_type

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

Line 275: pay_sba_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_sba_shd.lck
276: (p_rec.balance_attribute_id
277: ,p_rec.object_version_number
278: );
279: --

Line 323: l_rec pay_sba_shd.g_rec_type;

319: ,p_defined_balance_id in number default hr_api.g_number
320: ,p_exclusion_rule_id in number default hr_api.g_number
321: ) is
322: --
323: l_rec pay_sba_shd.g_rec_type;
324: l_proc varchar2(72) := g_package||'upd';
325: --
326: Begin
327: hr_utility.set_location('Entering:'||l_proc, 5);

Line 333: pay_sba_shd.convert_args

329: -- Call conversion function to turn arguments into the
330: -- l_rec structure.
331: --
332: l_rec :=
333: pay_sba_shd.convert_args
334: (p_balance_attribute_id
335: ,p_attribute_name
336: ,p_defined_balance_id
337: ,p_object_version_number