DBA Data[Home] [Help]

APPS.OTA_BULK_ENROLL_UTIL dependencies on HR_MESSAGE

Line 831: hr_message.provide_error;

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

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

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

Line 844: p_message_name := hr_message.last_message_name;

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

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

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

Line 862: p_message_name := hr_message.get_message_text;

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

Line 872: hr_message.provide_error;

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

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

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