DBA Data[Home] [Help]

APPS.HR_EAP_UPD dependencies on HR_EAP_SHD

Line 173: (p_rec in out nocopy hr_eap_shd.g_rec_type

169: --
170: -- {End Of Comments}
171: -- ----------------------------------------------------------------------------
172: Procedure update_dml
173: (p_rec in out nocopy hr_eap_shd.g_rec_type
174: ) is
175: --
176: l_proc varchar2(72) := g_package||'update_dml';
177: --

Line 201: hr_eap_shd.constraint_error

197: Exception
198: When hr_api.check_integrity_violated Then
199: -- A check constraint has been violated
200: --
201: hr_eap_shd.constraint_error
202: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
203: When hr_api.parent_integrity_violated Then
204: -- Parent integrity has been violated
205: --

Line 206: hr_eap_shd.constraint_error

202: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
203: When hr_api.parent_integrity_violated Then
204: -- Parent integrity has been violated
205: --
206: hr_eap_shd.constraint_error
207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: --

Line 211: hr_eap_shd.constraint_error

207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: --
211: hr_eap_shd.constraint_error
212: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
213: When Others Then
214: --
215: Raise;

Line 251: (p_rec in hr_eap_shd.g_rec_type

247: --
248: -- {End Of Comments}
249: -- ----------------------------------------------------------------------------
250: Procedure pre_update
251: (p_rec in hr_eap_shd.g_rec_type
252: ) is
253: --
254: l_proc varchar2(72) := g_package||'pre_update';
255: --

Line 295: (p_rec in hr_eap_shd.g_rec_type

291: --
292: -- {End Of Comments}
293: -- ----------------------------------------------------------------------------
294: Procedure post_update
295: (p_rec in hr_eap_shd.g_rec_type
296: ) is
297: --
298: l_proc varchar2(72) := g_package||'post_update';
299: --

Line 310: => hr_eap_shd.g_old_rec.external_application_name

306: => p_rec.ext_application_id
307: ,p_external_application_name
308: => p_rec.external_application_name
309: ,p_external_application_name_o
310: => hr_eap_shd.g_old_rec.external_application_name
311: ,p_external_application_id_o
312: => hr_eap_shd.g_old_rec.external_application_id
313: );
314: --

Line 312: => hr_eap_shd.g_old_rec.external_application_id

308: => p_rec.external_application_name
309: ,p_external_application_name_o
310: => hr_eap_shd.g_old_rec.external_application_name
311: ,p_external_application_id_o
312: => hr_eap_shd.g_old_rec.external_application_id
313: );
314: --
315: exception
316: --

Line 372: (p_rec in out nocopy hr_eap_shd.g_rec_type

368: --
369: -- {End Of Comments}
370: -- ----------------------------------------------------------------------------
371: Procedure convert_defs
372: (p_rec in out nocopy hr_eap_shd.g_rec_type
373: ) is
374: --
375: Begin
376: --

Line 384: hr_eap_shd.g_old_rec.external_application_name;

380: -- is being used then we must set to the 'current' argument value.
381: --
382: If (p_rec.external_application_name = hr_api.g_varchar2) then
383: p_rec.external_application_name :=
384: hr_eap_shd.g_old_rec.external_application_name;
385: End If;
386: If (p_rec.external_application_id = hr_api.g_varchar2) then
387: p_rec.external_application_id :=
388: hr_eap_shd.g_old_rec.external_application_id;

Line 388: hr_eap_shd.g_old_rec.external_application_id;

384: hr_eap_shd.g_old_rec.external_application_name;
385: End If;
386: If (p_rec.external_application_id = hr_api.g_varchar2) then
387: p_rec.external_application_id :=
388: hr_eap_shd.g_old_rec.external_application_id;
389: End If;
390: --
391: End convert_defs;
392: --

Line 397: (p_rec in out nocopy hr_eap_shd.g_rec_type

393: -- ----------------------------------------------------------------------------
394: -- |---------------------------------< upd >----------------------------------|
395: -- ----------------------------------------------------------------------------
396: Procedure upd
397: (p_rec in out nocopy hr_eap_shd.g_rec_type
398: ) is
399: --
400: l_proc varchar2(72) := g_package||'upd';
401: --

Line 407: hr_eap_shd.lck

403: hr_utility.set_location('Entering:'||l_proc, 5);
404: --
405: -- We must lock the row which we need to update.
406: --
407: hr_eap_shd.lck
408: (p_rec.ext_application_id
409: );
410: --
411: -- 1. During an update system defaults are used to determine if

Line 453: l_rec hr_eap_shd.g_rec_type;

449:
450: ) is
451: --
452:
453: l_rec hr_eap_shd.g_rec_type;
454: l_proc varchar2(72) := g_package||'upd';
455: --
456: Begin
457: hr_utility.set_location('Entering:'||l_proc, 5);

Line 463: hr_eap_shd.convert_args

459: -- Call conversion function to turn arguments into the
460: -- l_rec structure.
461: --
462: l_rec :=
463: hr_eap_shd.convert_args
464: (p_ext_application_id
465: ,p_external_application_name
466: ,hr_api.g_varchar2
467: );