Jump to content
JasperReports Library 7.0 is now available ×

The Selected JRXML could not be parsed


Recommended Posts

HI Team,

 

I have a .jrxml file where they expect the input parameters. Below is the code.

 

<subreportParameter name="start_date">

<subreportParameterExpression><![CDATA[$P{start_date}]]></subreportParameterExpression>

</subreportParameter>

<subreportParameter name="end_date">

<subreportParameterExpression><![CDATA[$P{end_date}]]></subreportParameterExpression>

</subreportParameter>

 

But I dont want to pass any input parameters, instead the below altered query should pass the value by executing the query. So, I tried to change the above code into

 

<subreportParameter name="start_date">

<subreportParameterExpression>

<queryString><![CDATA[select to_char(trunc(trunc(sysdate, 'MM') - 1, 'MM'),'YYYYMMDD') from dual]]></queryString>

</subreportParameterExpression>

</subreportParameter>

<subreportParameter name="end_date">

<subreportParameterExpression>

<queryString><![CDATA[select to_char(trunc(sysdate, 'MM') - 1,'YYYYMMDD') from dual]]></queryString>

</subreportParameterExpression>

</subreportParameter>

 

And after changing the same if I try to upload that file into JasperServer Reports, It gives me the below error. 


 

Upload a Local File

The selected JRXML could not be parsed. You might have selected the wrong file.

 

Could anyone please advise what could be possibly wrong.

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...