|
|
Re: Self Service - Enter Contacts gives an error [message #646637 is a reply to message #646632] |
Wed, 06 January 2016 02:45 |
John Watson
Messages: 8962 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
You can't edit supplied EBS code.
I always start by looking at the Electronic Technical Reference, etrm.oracle.com. Search there, and you will find that the APPS.HR_UTILITY package includes this code,937 procedure raise_error is
938 begin
939 raise_application_error (hr_utility.hr_error_number, hr_utility.get_message);
940 -- app_exception.raise_exception;
941 end raise_error; and that this is the relevant code from APPS.HR_PROCESS_CONTACT_SS9255 IF p_applicant_number <> hr_api.g_varchar2
9256 THEN
9257 l_rec_changed := TRUE;
9258 goto finish;
9259 END IF; I would find out how the procedure is being called, and run it from SQL*Plus with the same parameter values. If you aren't familiar with this, you'll need to talk to your EBS implementation consultants, because they probably set up something incorrectly.
|
|
|
|
|
|
|
|
|