Hi,
I have built a report that needs to be run at 9am, 11am, 1pm and 3pm. How can I set the report to run at these times for Monday to Friday without having to create a view for each time?
The reason I ask is because there will already be multiple instances of this report by categories. Having...
Thanks guys, Draoued code works well. I also got a variation using 'CASE WHEN...THEN....ELSE...END' as suggested by drlex. For anyone wanting to use Draoued's code, the compiler requests a couple more brackets. I've shown the final code below.
(select /*+ FIRST ROWS */ "Request"."REQUESTID"...
Hi drlex
I've implemented the case statement shown below with native SQL:
CASE WHEN ((#prompt('choice')#)=0) THEN
(select /*+ FIRST ROWS */ "Request"."REQUESTID" "Request_ID"
from "ECASH"."REQUEST" "Request" where "Request"."VOID"=0)
ELSE
(select /*+ FIRST ROWS */ "Request"."REQUESTID"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.