DBA Data[Home] [Help]

APPS.OTA_LEARNER_ENROLL_SS dependencies on HR_MESSAGE

Line 367: hr_message.provide_error;

363: -- Store the technical message which will have been seeded
364: -- if this exception has been raised. This will be used to provide
365: -- the code.
366: --
367: hr_message.provide_error;
368: --
369: -- Now distinguish which error was raised.
370: --
371: IF (hr_message.last_message_name = 'OTA_13667_WEB_STATUS_NOT_SEEDE') THEN

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

367: hr_message.provide_error;
368: --
369: -- Now distinguish which error was raised.
370: --
371: IF (hr_message.last_message_name = 'OTA_13667_WEB_STATUS_NOT_SEEDE') THEN
372: --
373: -- Seed the user friendly message
374: --
375: fnd_message.set_name ('OTA','OTA_WEB_INCORRECT_CONF');

Line 380: p_message_name := hr_message.last_message_name;

376: --
377: -- Raise the error for the main procedure exception handler
378: -- to handle
379: --
380: p_message_name := hr_message.last_message_name;
381: p_message_name := SUBSTR(SQLERRM, 1,300);
382: --
383: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND')
384: THEN

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

379: --
380: p_message_name := hr_message.last_message_name;
381: p_message_name := SUBSTR(SQLERRM, 1,300);
382: --
383: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND')
384: THEN
385: --
386: -- Seed the user friendly message
387: --

Line 395: /* ELSIF (hr_message.last_message_name = 'OTA_13658_WF_ERR_GETTING_TYPE')

391: -- to handle
392: p_message_name := 'OTA_NO_DELEGATE_INFORMATION';
393: p_message_name := SUBSTR(SQLERRM, 1,300);
394: --
395: /* ELSIF (hr_message.last_message_name = 'OTA_13658_WF_ERR_GETTING_TYPE')
396: THEN
397: --
398: -- Seed the user friendly message
399: --

Line 410: p_message_name := hr_message.get_message_text;

406: --
407: ELSE
408: -- Raise the error for the main procedure exception handler
409: -- to handle
410: p_message_name := hr_message.get_message_text;
411:
412: --
413: END IF;
414: --

Line 420: hr_message.provide_error;

416: --
417: -- Can't store a technical message, as we don't know what it is
418: -- and a message may not have been put on the stack
419: --
420: hr_message.provide_error;
421: --
422: -- Seed the user friendly message
423: --
424: fnd_message.set_name ('OTA','OTA_WEB_ERR_GETTING_INFO');

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

658: -- p_mode will be changed to indicate an error and,if it's a WF error
659: -- the mode will also indicate this.
660: -- Then the "Confirmation" page will be called from the main handler.
661: --
662: -- It is OK to use hr_message.provide_error as an application
663: -- error will have been raised which will have put an error onto
664: -- the stack
665: --
666: /* IF (hr_message.last_message_name = 'OTA_13668_WEB_NO_TRANMISSION')

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

662: -- It is OK to use hr_message.provide_error as an application
663: -- error will have been raised which will have put an error onto
664: -- the stack
665: --
666: /* IF (hr_message.last_message_name = 'OTA_13668_WEB_NO_TRANMISSION')
667: THEN
668: --
669: -- The WF may have already be transissioned, so change the mode.
670: l_mode := l_mode || 'BADWF';