Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

chosing between parameters in reports

Status
Not open for further replies.

KBALDWIN1

Programmer
May 21, 2001
2
US
>:-<
I have two parameters on reports parameter form. One parameter is a fill in while the other one is an LOV. The LOV has the following select statement:
Code:
select distinct keys_text form v_track
. My parameter form works fine on runtime. It allows the user to select the blank that appears on the LOV and then insert an SSN in the other field, to run the report looking for the SSN.

The problem. When running this on the web the blank on the LOV is no longer available. I need the blank or null value so the user can choose which field they want to use to run the report.
 
Does your table V_TRACK actually have a row with a blank KEYS_TEXT column? If so is the column NULL or a space? If not, you could either add such a row to V_TRACK or change the LOV select to be:
Code:
select distinct keys_text from v_track
union
select ' ' from dual

Please let us know if you find a solution. monte
email: mmontesano@usa.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top