How can I include "None" functionality in a LOV
376519Apr 29 2004 — edited Apr 30 2004I am trying to setup the ability to set a value to null in a Popup LOV giving my users the None functionality. This is the SQL I use to ccreate the LOV:
select 'None'VALUE,
Null UID
from dual
UNION ALL
select VALUE,
UID
from LOOKUP_VALUE
when I select the None from the list and try to create the record I receive:
ERR ERR-1023 Unable perform validations
ORA-01722: invalid number
Any idea on how to allow None type functionality?