How do I setup multiple parameters to get data between
two range points?
In Acutauate Designer 5 SP2 (connect Oracle 8i)
I am trying to report rows within a date range.
User should be able to specify FromDate and ThruDate as
input parameters.
DataStream comes from the Textual Query Editor.
So far I am only able to successfully run this much
Is there an easy solution or is this really complex in Actuate?
GNZLSA
two range points?
In Acutauate Designer 5 SP2 (connect Oracle 8i)
I am trying to report rows within a date range.
User should be able to specify FromDate and ThruDate as
input parameters.
DataStream comes from the Textual Query Editor.
Code:
SELECT B.BATCHDATE,B.BATCHNUMBER
FROM BATCHINFO B
WHERE B.BATCHDATE BETWEEN :FROMDATE AND :THRUDATE
Code:
SELECT B.BATCHDATE,B.BATCHNUMBER
FROM BATCHINFO B
WHERE :?FROMDATE
GNZLSA