DBA Data[Home] [Help]

APPS.OTA_BULK_ENROLL_UTIL dependencies on HR_MESSAGE

Line 830: hr_message.provide_error;

826: -- Store the technical message which will have been seeded
827: -- if this exception has been raised. This will be used to provide
828: -- the code.
829: --
830: hr_message.provide_error;
831: --
832: -- Now distinguish which error was raised.
833: --
834: IF (hr_message.last_message_name = 'OTA_13667_WEB_STATUS_NOT_SEEDE') THEN

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

830: hr_message.provide_error;
831: --
832: -- Now distinguish which error was raised.
833: --
834: IF (hr_message.last_message_name = 'OTA_13667_WEB_STATUS_NOT_SEEDE') THEN
835: --
836: -- Seed the user friendly message
837: --
838: fnd_message.set_name ('OTA','OTA_WEB_INCORRECT_CONF');

Line 843: p_message_name := hr_message.last_message_name;

839: --
840: -- Raise the error for the main procedure exception handler
841: -- to handle
842: --
843: p_message_name := hr_message.last_message_name;
844: p_message_name := SUBSTR(SQLERRM, 1,300);
845: --
846: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND') THEN
847: --

Line 846: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND') THEN

842: --
843: p_message_name := hr_message.last_message_name;
844: p_message_name := SUBSTR(SQLERRM, 1,300);
845: --
846: ELSIF (hr_message.last_message_name = 'HR_51396_WEB_PERSON_NOT_FND') THEN
847: --
848: -- Seed the user friendly message
849: --
850: fnd_message.set_name ('OTA','OTA_NO_DELEGATE_INFORMATION');

Line 861: p_message_name := hr_message.get_message_text;

857: --
858: ELSE
859: -- Raise the error for the main procedure exception handler
860: -- to handle
861: p_message_name := hr_message.get_message_text;
862:
863: --
864: END IF;
865: --

Line 871: hr_message.provide_error;

867: --
868: -- Can't store a technical message, as we don't know what it is
869: -- and a message may not have been put on the stack
870: --
871: hr_message.provide_error;
872: --
873: -- Seed the user friendly message
874: --
875: fnd_message.set_name ('OTA','OTA_WEB_ERR_GETTING_INFO');

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

1119: -- p_mode will be changed to indicate an error and,if it's a WF error
1120: -- the mode will also indicate this.
1121: -- Then the "Confirmation" page will be called from the main handler.
1122: --
1123: -- It is OK to use hr_message.provide_error as an application
1124: -- error will have been raised which will have put an error onto
1125: -- the stack
1126: --
1127: p_message_name := fnd_message.get;