How to get the default parameter value when using with beanShell? (subreport)
I am using the version 3.8
1.I have create Parameter 'SortOrder' with Default Value=asc in parent report.
2.Create Scriptable - beanshell in subreport
.........
.........
String strSorting = null;
try{
strSorting = (String)dataRow.get("SortOrder");
}catch(Exception e){
}
.........
.........
It return null value (suppose it return default value asc).