Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. DavidJS

    Flexible Scheduling

    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...
  2. DavidJS

    Tabular SQL If else logic

    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"...
  3. DavidJS

    Tabular SQL If else logic

    Hi Steve, No luck, I'm getting the same error message.
  4. DavidJS

    Tabular SQL If else logic

    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"...
  5. DavidJS

    Tabular SQL If else logic

    Does anyone know "If...else...end if" statements work in tabular SQL? DavidJS
  6. DavidJS

    Retreiving parameters in a HTML item?

    I forgot to mention I'm using ReportNet [dazed]
  7. DavidJS

    Retreiving parameters in a HTML item?

    Does anyone know how to grab parameters within a HTML item in the report for using in JavaScript? David

Part and Inventory Search

Back
Top