All,
I'm having an issue with a report I'm developing, and I cannot figure out why this would be occurring:
* The report has three text parameters (@Line, @Device, @ORI), all of which are passed to a Stored Procedure where they apply to the WHERE clause as filters.
* All three are defaulted to blank in the report, and they are defaulted to blank when they are declared by the SP.
** All three of them search properly when running the SP directly, and all three of them work when running the report from VS2008, but when I upload the report to our reporting server, the "@ORI" parameter stops working to limit the search when it is filled in.
WHERE (@Line = '' OR INLINE = @Line) AND (@Device = '' OR SRC_DEV = @Device) AND (@ORI = '' OR ORI = @ORI)
I can provide additional parts of the SP as neccessary.
Thanks in advance.