Hello everyone !
I have a report with dates parameters (java.util.date) and I can't pass them as arguments by URL.
When I searched for a solution, I found that some people made it by passing dates with this format "yyyyMMddHHmmss", but when I try to do so, I haven't got the good date :
->
Is there a way to pass a Date parameter by URL ? (not with a string parameter converted to a date inside the query)
Thanks in advance for your time !
Finally I tried with the format YYYY-MM-DD as you mentionned danoldenkamp and it worked directly in the URL !
(&date_debut=2018-06-01)
Thanks for your help !