DBA Data[Home] [Help]

APPS.PAY_TCO_UPD dependencies on PAY_TCO_SHD

Line 48: Procedure update_dml(p_rec in out nocopy pay_tco_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_tco_shd.g_rec_type) is
49: --
50: l_proc varchar2(72) := g_package||'update_dml';
51: --
52: Begin

Line 73: pay_tco_shd.constraint_error

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

Line 77: pay_tco_shd.constraint_error

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

Line 81: pay_tco_shd.constraint_error

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

Line 119: Procedure pre_update(p_rec in pay_tco_shd.g_rec_type) is

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

Line 161: Procedure post_update(p_rec in pay_tco_shd.g_rec_type) is

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

Line 215: Procedure convert_defs(p_rec in out nocopy pay_tco_shd.g_rec_type) is

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

Line 230: pay_tco_shd.g_old_rec.template_id;

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

Line 234: pay_tco_shd.g_old_rec.core_object_type;

230: pay_tco_shd.g_old_rec.template_id;
231: End If;
232: If (p_rec.core_object_type = hr_api.g_varchar2) then
233: p_rec.core_object_type :=
234: pay_tco_shd.g_old_rec.core_object_type;
235: End If;
236: If (p_rec.core_object_id = hr_api.g_number) then
237: p_rec.core_object_id :=
238: pay_tco_shd.g_old_rec.core_object_id;

Line 238: pay_tco_shd.g_old_rec.core_object_id;

234: pay_tco_shd.g_old_rec.core_object_type;
235: End If;
236: If (p_rec.core_object_id = hr_api.g_number) then
237: p_rec.core_object_id :=
238: pay_tco_shd.g_old_rec.core_object_id;
239: End If;
240: If (p_rec.shadow_object_id = hr_api.g_number) then
241: p_rec.shadow_object_id :=
242: pay_tco_shd.g_old_rec.shadow_object_id;

Line 242: pay_tco_shd.g_old_rec.shadow_object_id;

238: pay_tco_shd.g_old_rec.core_object_id;
239: End If;
240: If (p_rec.shadow_object_id = hr_api.g_number) then
241: p_rec.shadow_object_id :=
242: pay_tco_shd.g_old_rec.shadow_object_id;
243: End If;
244: If (p_rec.effective_date = hr_api.g_date) then
245: p_rec.effective_date :=
246: pay_tco_shd.g_old_rec.effective_date;

Line 246: pay_tco_shd.g_old_rec.effective_date;

242: pay_tco_shd.g_old_rec.shadow_object_id;
243: End If;
244: If (p_rec.effective_date = hr_api.g_date) then
245: p_rec.effective_date :=
246: pay_tco_shd.g_old_rec.effective_date;
247: End If;
248:
249: --
250: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 259: p_rec in out nocopy pay_tco_shd.g_rec_type

255: -- |---------------------------------< upd >----------------------------------|
256: -- ----------------------------------------------------------------------------
257: Procedure upd
258: (
259: p_rec in out nocopy pay_tco_shd.g_rec_type
260: ) is
261: --
262: l_proc varchar2(72) := g_package||'upd';
263: --

Line 269: pay_tco_shd.lck

265: hr_utility.set_location('Entering:'||l_proc, 5);
266: --
267: -- We must lock the row which we need to update.
268: --
269: pay_tco_shd.lck
270: (
271: p_rec.template_core_object_id,
272: p_rec.object_version_number
273: );

Line 308: l_rec pay_tco_shd.g_rec_type;

304: p_effective_date in date default hr_api.g_date,
305: p_object_version_number in out nocopy number
306: ) is
307: --
308: l_rec pay_tco_shd.g_rec_type;
309: l_proc varchar2(72) := g_package||'upd';
310: --
311: Begin
312: hr_utility.set_location('Entering:'||l_proc, 5);

Line 318: pay_tco_shd.convert_args

314: -- Call conversion function to turn arguments into the
315: -- l_rec structure.
316: --
317: l_rec :=
318: pay_tco_shd.convert_args
319: (
320: p_template_core_object_id,
321: hr_api.g_number,
322: hr_api.g_varchar2,