|
|
Re: User getting an Error I am not. [message #544504 is a reply to message #544419] |
Wed, 22 February 2012 02:30 |
|
balckbandit5
Messages: 104 Registered: December 2011
|
Senior Member |
|
|
P19_ORG_LINK is just a static assignment:
http://orgman04.merckgroup.com/legal_actual/index.html?org=&P19_ORGID.
P19_ORGID is a display only, SQL query:
(Select d.department_number
from phmdr.department d,
person p
where p.department_id = d.department_id
and p.MUID = :P19_MUID)
and then P19_MUID is entered from clicking on a link in a table on the previous page (like master/detail)
[Updated on: Wed, 22 February 2012 02:30] Report message to a moderator
|
|
|
Re: User getting an Error I am not. [message #544529 is a reply to message #544504] |
Wed, 22 February 2012 05:18 |
c_stenersen
Messages: 255 Registered: August 2007
|
Senior Member |
|
|
This error message you give is not one that I've seen in Apex. My guess would be that there's something wrong in the link you're giving for the particular muid which the user gave in, and it's orgman04.merckgroup.com which is giving you this error, not Apex. Ask the user which value he/she gave in to this item, and try to reproduce the error with that value. Then if you get the same error you can see what the url you were sent to was.
|
|
|
|
Re: User getting an Error I am not. [message #545413 is a reply to message #544544] |
Wed, 29 February 2012 04:03 |
|
balckbandit5
Messages: 104 Registered: December 2011
|
Senior Member |
|
|
I've finally found what the problem was (in case this error pops up again)
It was to do with another item (P19_DIVISON) which was unrelated to the link so I guess it was just triggering the error when the page was submitted...
but the problem was that I had set the item to 'Read Only: ALWAYS' but the item was 'Display as:Display as text (does not save state)' So the read only had nothing to make read only I guess...I'm not really sure, but changing that fixed the problem so I guess that's what it was.
|
|
|