10-19-2012, 03:56 PM
(This post was last modified: 10-19-2012, 04:00 PM by harishshenoy.)
Hi ,
Here u used only 'now()' that includes 'space' in that also....U need to replace the space with any other charectors like '_' , because if any space encounter in the URL then browser will not recognize the path of that , u can avoid space using 'replace' key word , like I have mentioned in the previous post , use the below code in place of 'now()' (just replace now() with the below code)
like :
replace(replace(replace(now() , "/" , "_") , ":" , "_") , " " , "_")
you will be able to get the report sucessfully.
Thnanks ,
Harish
Here u used only 'now()' that includes 'space' in that also....U need to replace the space with any other charectors like '_' , because if any space encounter in the URL then browser will not recognize the path of that , u can avoid space using 'replace' key word , like I have mentioned in the previous post , use the below code in place of 'now()' (just replace now() with the below code)
like :
replace(replace(replace(now() , "/" , "_") , ":" , "_") , " " , "_")
you will be able to get the report sucessfully.
Thnanks ,
Harish