Can I specify a default value of “SYSDATE” (the current date) for a report parameter?
Yes. In the “Parameter Setting” screen, you can set the default value for a bind variable as #SYSDATE. For example, for the following query set the default value for the :DATE1 parameter as “#SYSDATE”: SELECT * FROM EMP WHERE HIREDATE < :DATE1 You can also use syntax like #SYSDATE - 10 to calculate 10 days before the current date. The "#" character can also be used to prefix PL/SQL functions or other pseudocolumns (such as USER) as default values.