DBA Data[Home] [Help]

APPS.PAY_PPE_UPD dependencies on PAY_PPE_SHD

Line 55: (p_rec in out pay_ppe_shd.g_rec_type

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

Line 89: pay_ppe_shd.constraint_error

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

Line 94: pay_ppe_shd.constraint_error

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

Line 99: pay_ppe_shd.constraint_error

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

Line 139: (p_rec in pay_ppe_shd.g_rec_type

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

Line 183: (p_rec in pay_ppe_shd.g_rec_type

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

Line 237: (p_rec in out pay_ppe_shd.g_rec_type

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

Line 249: pay_ppe_shd.g_old_rec.assignment_id;

245: -- is being used then we must set to the 'current' argument value.
246: --
247: If (p_rec.assignment_id = hr_api.g_number) then
248: p_rec.assignment_id :=
249: pay_ppe_shd.g_old_rec.assignment_id;
250: End If;
251: If (p_rec.effective_date = hr_api.g_date) then
252: p_rec.effective_date :=
253: pay_ppe_shd.g_old_rec.effective_date;

Line 253: pay_ppe_shd.g_old_rec.effective_date;

249: pay_ppe_shd.g_old_rec.assignment_id;
250: End If;
251: If (p_rec.effective_date = hr_api.g_date) then
252: p_rec.effective_date :=
253: pay_ppe_shd.g_old_rec.effective_date;
254: End If;
255: If (p_rec.change_type = hr_api.g_varchar2) then
256: p_rec.change_type :=
257: pay_ppe_shd.g_old_rec.change_type;

Line 257: pay_ppe_shd.g_old_rec.change_type;

253: pay_ppe_shd.g_old_rec.effective_date;
254: End If;
255: If (p_rec.change_type = hr_api.g_varchar2) then
256: p_rec.change_type :=
257: pay_ppe_shd.g_old_rec.change_type;
258: End If;
259: If (p_rec.status = hr_api.g_varchar2) then
260: p_rec.status :=
261: pay_ppe_shd.g_old_rec.status;

Line 261: pay_ppe_shd.g_old_rec.status;

257: pay_ppe_shd.g_old_rec.change_type;
258: End If;
259: If (p_rec.status = hr_api.g_varchar2) then
260: p_rec.status :=
261: pay_ppe_shd.g_old_rec.status;
262: End If;
263: If (p_rec.description = hr_api.g_varchar2) then
264: p_rec.description :=
265: pay_ppe_shd.g_old_rec.description;

Line 265: pay_ppe_shd.g_old_rec.description;

261: pay_ppe_shd.g_old_rec.status;
262: End If;
263: If (p_rec.description = hr_api.g_varchar2) then
264: p_rec.description :=
265: pay_ppe_shd.g_old_rec.description;
266: End If;
267: --
268: End convert_defs;
269: --

Line 274: (p_rec in out pay_ppe_shd.g_rec_type

270: -- ----------------------------------------------------------------------------
271: -- |---------------------------------< upd >----------------------------------|
272: -- ----------------------------------------------------------------------------
273: Procedure upd
274: (p_rec in out pay_ppe_shd.g_rec_type
275: ) is
276: --
277: l_proc varchar2(72) := g_package||'upd';
278: --

Line 284: pay_ppe_shd.lck

280: hr_utility.set_location('Entering:'||l_proc, 5);
281: --
282: -- We must lock the row which we need to update.
283: --
284: pay_ppe_shd.lck
285: (p_rec.process_event_id
286: ,p_rec.object_version_number
287: );
288: --

Line 328: l_rec pay_ppe_shd.g_rec_type;

324: ,p_status in varchar2 default hr_api.g_varchar2
325: ,p_description in varchar2 default hr_api.g_varchar2
326: ) is
327: --
328: l_rec pay_ppe_shd.g_rec_type;
329: l_proc varchar2(72) := g_package||'upd';
330: --
331: Begin
332: hr_utility.set_location('Entering:'||l_proc, 5);

Line 338: pay_ppe_shd.convert_args

334: -- Call conversion function to turn arguments into the
335: -- l_rec structure.
336: --
337: l_rec :=
338: pay_ppe_shd.convert_args
339: (p_process_event_id
340: ,p_assignment_id
341: ,p_effective_date
342: ,p_change_type