Hi,
Welcome to the Query Game , to prompt a date range in a query we have to write the condition in Where Clause see the below Example for a Sales Order Documents Total Doc No wise
select a.DocDate,A.DOCNUM,A.DocTotal
from ORDR A
Where A.DocDate>= '20141201' and A.DocDate<='20141231'
so in above Query we put the parameters
Select a.DocDate,A.DOCNUM,A.DocTotal
from ORDR A
Where A.DocDate>= [%0] and A.DocDate<=[%1]
Hope it will help you.
Regards,
Manish