DBA Data[Home] [Help]

APPS.PAY_TER_UPD dependencies on PAY_TER_SHD

Line 48: Procedure update_dml(p_rec in out nocopy pay_ter_shd.g_rec_type) is

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

Line 74: pay_ter_shd.constraint_error

70: --
71: Exception
72: When hr_api.check_integrity_violated Then
73: -- A check constraint has been violated
74: pay_ter_shd.constraint_error
75: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
76: When hr_api.parent_integrity_violated Then
77: -- Parent integrity has been violated
78: pay_ter_shd.constraint_error

Line 78: pay_ter_shd.constraint_error

74: pay_ter_shd.constraint_error
75: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
76: When hr_api.parent_integrity_violated Then
77: -- Parent integrity has been violated
78: pay_ter_shd.constraint_error
79: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
80: When hr_api.unique_integrity_violated Then
81: -- Unique integrity has been violated
82: pay_ter_shd.constraint_error

Line 82: pay_ter_shd.constraint_error

78: pay_ter_shd.constraint_error
79: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
80: When hr_api.unique_integrity_violated Then
81: -- Unique integrity has been violated
82: pay_ter_shd.constraint_error
83: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
84: When Others Then
85: Raise;
86: End update_dml;

Line 120: Procedure pre_update(p_rec in pay_ter_shd.g_rec_type) is

116: -- Internal Row Handler Use Only.
117: --
118: -- {End Of Comments}
119: -- ----------------------------------------------------------------------------
120: Procedure pre_update(p_rec in pay_ter_shd.g_rec_type) is
121: --
122: l_proc varchar2(72) := g_package||'pre_update';
123: --
124: Begin

Line 162: Procedure post_update(p_rec in pay_ter_shd.g_rec_type) is

158: -- Internal Row Handler Use Only.
159: --
160: -- {End Of Comments}
161: -- ----------------------------------------------------------------------------
162: Procedure post_update(p_rec in pay_ter_shd.g_rec_type) is
163: --
164: l_proc varchar2(72) := g_package||'post_update';
165: --
166: Begin

Line 216: Procedure convert_defs(p_rec in out nocopy pay_ter_shd.g_rec_type) is

212: -- Internal Row Handler Use Only.
213: --
214: -- {End Of Comments}
215: -- ----------------------------------------------------------------------------
216: Procedure convert_defs(p_rec in out nocopy pay_ter_shd.g_rec_type) is
217: --
218: l_proc varchar2(72) := g_package||'convert_defs';
219: --
220: Begin

Line 231: pay_ter_shd.g_old_rec.template_id;

227: -- is being used then we must set to the 'current' argument value.
228: --
229: If (p_rec.template_id = hr_api.g_number) then
230: p_rec.template_id :=
231: pay_ter_shd.g_old_rec.template_id;
232: End If;
233: If (p_rec.flexfield_column = hr_api.g_varchar2) then
234: p_rec.flexfield_column :=
235: pay_ter_shd.g_old_rec.flexfield_column;

Line 235: pay_ter_shd.g_old_rec.flexfield_column;

231: pay_ter_shd.g_old_rec.template_id;
232: End If;
233: If (p_rec.flexfield_column = hr_api.g_varchar2) then
234: p_rec.flexfield_column :=
235: pay_ter_shd.g_old_rec.flexfield_column;
236: End If;
237: If (p_rec.exclusion_value = hr_api.g_varchar2) then
238: p_rec.exclusion_value :=
239: pay_ter_shd.g_old_rec.exclusion_value;

Line 239: pay_ter_shd.g_old_rec.exclusion_value;

235: pay_ter_shd.g_old_rec.flexfield_column;
236: End If;
237: If (p_rec.exclusion_value = hr_api.g_varchar2) then
238: p_rec.exclusion_value :=
239: pay_ter_shd.g_old_rec.exclusion_value;
240: End If;
241: If (p_rec.description = hr_api.g_varchar2) then
242: p_rec.description :=
243: pay_ter_shd.g_old_rec.description;

Line 243: pay_ter_shd.g_old_rec.description;

239: pay_ter_shd.g_old_rec.exclusion_value;
240: End If;
241: If (p_rec.description = hr_api.g_varchar2) then
242: p_rec.description :=
243: pay_ter_shd.g_old_rec.description;
244: End If;
245:
246: --
247: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 256: p_rec in out nocopy pay_ter_shd.g_rec_type

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

Line 266: pay_ter_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_ter_shd.lck
267: (
268: p_rec.exclusion_rule_id,
269: p_rec.object_version_number
270: );

Line 306: l_rec pay_ter_shd.g_rec_type;

302: p_description in varchar2 default hr_api.g_varchar2,
303: p_object_version_number in out nocopy number
304: ) is
305: --
306: l_rec pay_ter_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_ter_shd.convert_args

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