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 Mike Lewis 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. dboehne

    SQL in Actuate Reporting

    If you are good at SQL, DO NOT use the graphical query builder. Remember to reference schema.tablename in your from clause.
  2. dboehne

    Print Date and Time in Actuate 8

    Use a date control, select the format property as desired or manually enter, and use now() as the value exp. use convertTZ in your finish method if the application server is in a different time zone from the endusers.
  3. dboehne

    Actuate 8.0.5 - Date and Time Calculations

    what precision do want in the result and how do you want it displayed?
  4. dboehne

    help related to mid function

    ssn = substr(ssn,1,3) || '-' || substr(ssn,4,2) || '-' || substr(ssn,6,9)
  5. dboehne

    Hiding Content and Accessing Global Parameter

    Delcare ReportType as a parameter with global scope and then use the frame Start or Finish method as follows: If ReportType <> "Executive" then Size.Height = 0 End If

Part and Inventory Search

Back
Top