I am prompting the user to enter 2 Date types and one String type. When including the %1, %2, %3 parameters, the string shows up in the SQL but the dates are blank. Am I missing something? Has anyone seen this behavior? I know that the SQL is good because I substitute hard coded dates and it works fine. It just does not map the Dates that the user enters.
select * from
OTIC."RM_FileShare" T1
left outer join
OTIC."MIP_Act_Ctrl_Table_Files_SRV1" T2
ON T1."FSID" = T2."FileShareNum"
where T1."RM_Business" = %3
and T2."File_ModifDate" >= %1
and T2."File_ModifDate" =< %2