Can I pass dynamic parameters to BSF/BSH?
I want to have details header as dates of a month, like 03/11 03/12 03/13 03/14 and so on
I have written BSF expression as:-
Here I'm adding one day, can I pass the number of days to be added to the expression?Code:Calendar cal = Calendar.getInstance(); cal.setTime((java.util.Date) dataRow.get("date_from")); cal.add(Calendar.DAY_OF_MONTH, 1); return cal.getTime();


Reply With Quote
