DBA Data[Home] [Help]

APPS.OTA_ENROLL_IN_TRAINING_SS dependencies on HR_MESSAGE

Line 437: hr_message.provide_error;

433: -- Store the technical message which will have been seeded
434: -- if this exception has been raised. This will be used to provide
435: -- the code.
436: --
437: hr_message.provide_error;
438: --
439: -- Now distinguish which error was raised.
440: --
441: IF (hr_message.last_message_name = 'OTA_13667_WEB_STATUS_NOT_SEEDE') THEN

Line 441: IF (hr_message.last_message_name = 'OTA_13667_WEB_STATUS_NOT_SEEDE') THEN

437: hr_message.provide_error;
438: --
439: -- Now distinguish which error was raised.
440: --
441: IF (hr_message.last_message_name = 'OTA_13667_WEB_STATUS_NOT_SEEDE') THEN
442: --
443: -- Seed the user friendly message
444: --
445: fnd_message.set_name ('OTA','OTA_WEB_INCORRECT_CONF');

Line 450: p_message_name := hr_message.last_message_name;

446: --
447: -- Raise the error for the main procedure exception handler
448: -- to handle
449: --
450: p_message_name := hr_message.last_message_name;
451: p_message_name := SUBSTR(SQLERRM, 1,300);
452: --
453: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND')
454: THEN

Line 453: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND')

449: --
450: p_message_name := hr_message.last_message_name;
451: p_message_name := SUBSTR(SQLERRM, 1,300);
452: --
453: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND')
454: THEN
455: --
456: -- Seed the user friendly message
457: --

Line 465: ELSIF (hr_message.last_message_name = 'OTA_13658_WF_ERR_GETTING_TYPE')

461: -- to handle
462: p_message_name := 'OTA_NO_DELEGATE_INFORMATION';
463: p_message_name := SUBSTR(SQLERRM, 1,300);
464: --
465: ELSIF (hr_message.last_message_name = 'OTA_13658_WF_ERR_GETTING_TYPE')
466: THEN
467: --
468: -- Seed the user friendly message
469: --

Line 480: p_message_name := hr_message.get_message_text;

476: --
477: ELSE
478: -- Raise the error for the main procedure exception handler
479: -- to handle
480: p_message_name := hr_message.get_message_text;
481:
482: --
483: END IF;
484: --

Line 490: hr_message.provide_error;

486: --
487: -- Can't store a technical message, as we don't know what it is
488: -- and a message may not have been put on the stack
489: --
490: hr_message.provide_error;
491: --
492: -- Seed the user friendly message
493: --
494: fnd_message.set_name ('OTA','OTA_WEB_ERR_GETTING_INFO');

Line 825: -- It is OK to use hr_message.provide_error as an application

821: -- p_mode will be changed to indicate an error and,if it's a WF error
822: -- the mode will also indicate this.
823: -- Then the "Confirmation" page will be called from the main handler.
824: --
825: -- It is OK to use hr_message.provide_error as an application
826: -- error will have been raised which will have put an error onto
827: -- the stack
828: --
829: /* IF (hr_message.last_message_name = 'OTA_13668_WEB_NO_TRANMISSION')

Line 829: /* IF (hr_message.last_message_name = 'OTA_13668_WEB_NO_TRANMISSION')

825: -- It is OK to use hr_message.provide_error as an application
826: -- error will have been raised which will have put an error onto
827: -- the stack
828: --
829: /* IF (hr_message.last_message_name = 'OTA_13668_WEB_NO_TRANMISSION')
830: THEN
831: --
832: -- The WF may have already be transissioned, so change the mode.
833: l_mode := l_mode || 'BADWF';