Parameter Code
This parameter can be used in the main conditional line in a data query.
select STVCAMP.STVCAMP_CODE "Camp_Code",
STVCAMP.STVCAMP_DESC "Camp_Desc"
from STVCAMP
order by STVCAMP.STVCAMP_DESC
I am assuming there is a parameter named parm_CB_SelAllCampuses_F0 that is set to "Y" for checked and "N" for not checked. This parameter should be placed in a group attached to the main select. You will notice that the order by must be set to the field number. You must also set this parameter to Auto Select.
select STVCAMP.STVCAMP_CODE "Camp_Code",
STVCAMP.STVCAMP_DESC "Camp_Desc"
from STVCAMP
where :parm_CB_SelAllCampuses_F0 = 'N'
union
select 'All',
'All Campuses'
from DUAL
where :parm_CB_SelAllCampuses_F0 = 'Y'
order by 2
This is the code from the Wizard and, depending on if the :parm_CB_SelAllCampuses_F0 checkbox is checked or not, will determine what is displayed in the parameter box.
Using the Select All