I am using CR11 and have an oracle stored procedure. One of the parameters in the report is for a field that can be one of 3 values 'Y' 'N' or 'M'. Currently the line in the procedure allows me to select only one value or no value: (L.STATUS = pSTATUS OR pSTATUS IS NULL)
I need to be able to select 1, 2 or all 3 values in the parameter (i.e., Y or N or M or Y N or Y M or NM or Y N M). As I am not really good with stored procedures, I am not sure where to start. Any suggestions/examples of how to do this would be greatly appreciated. Thanks.
I need to be able to select 1, 2 or all 3 values in the parameter (i.e., Y or N or M or Y N or Y M or NM or Y N M). As I am not really good with stored procedures, I am not sure where to start. Any suggestions/examples of how to do this would be greatly appreciated. Thanks.