I’m building a report with an html/css document (pre existing document formats) and I cannot figure out how to pass a parameter into my document. I found through this Forum Post that I should be using a new band and making a groovy script to include my parameter ‘date’
return [[
'report_date' : params['date'],
]]
But from there I cannot figure out how to put it into my FreeMarker template from there. The ai recommended I just pass it as ${date} into my template, but that just passes an empty string and not the parameter.
Thank you for the help.
Oran