Jump to content
We've recently updated our Privacy Statement, available here ×

sasi86

Members
  • Posts

    32
  • Joined

  • Last visited

sasi86's Achievements

Contributor

Contributor (5/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Dear Team, I need to show the call detailed report between given start date to end date. I get the input control as start date and end date. Need to alert or show the message that "The start date should be greater than the end date"., if the start date is given as 09/04/2011 and end date as 01/04/2011. If we given like this, the report will be empty. It is correct. But I need to validate the input controls. How to do this? Kindly help me.
  2. Dear Team, I have deployed the Jasper server 3.5. For ROLE Admin users can able to get the pop up and delete option is working. But users ( role user ) not able to get the pop up box for showing the properties of the report. And also the user having the read, write and execute permission of the report. But unable to delete the report by role user. What would be a problem. I have followed the below steps. -> Login as user which has a role as user -> Select the report call 'Call Reports'. Then select the properties icon. The pop up didn't get. -> Else I have selected the report call 'Call Reports'. Right click that. Try to select the 'Properties' on that. But it is not opening the pop up. -> Right click the report and click 'Delete'. The report not get delete. If the user is admin then it working properly. Kindly help me to solve this issue. I am using firefox - Shiretoko 3.5.9 And also it is not working in firefox 2.0.
  3. I am using shiretoko 3.5.9 ( firefox browser ). For admin the 'properties' pop up menu is working. For other users only it is not opening.
  4. Dear Team, I have deployed the Jasper server 3.5. For ROLE Admin users can able to get the pop up when click the properties of the report. But users ( role user ) not able to get the pop up box for showing the properties of the report. What would be a problem. I have followed the below steps. -> Login as user which has a role as user -> Select the report call 'Call Reports'. Then select the properties icon. The pop up didn't get. -> Else I have selected the report call 'Call Reports'. Right click that. Try to select the 'Properties' on that. But it is not opening the pop up. If the user is admin then it working properly. Kindly help me to solve this issue.
  5. I am using Firefox - 3.5.9 ( shiretoko ). I have tried with clearing cache. But the same error persist.
  6. Dear Team, I have deployed jasper server 3.7.1. When access the menus, view -> Repository It is not working. Found the error in error console that, webHelpModule is not defined http://192.168.1.184:4080/jasperserver/flow.html?_flowId=searchFlow&curlnk=2 $(this.id) is null http://192.168.1.184:4080/jasperserver/toolkit/parts/javascript/searchBox.js Kindly give the solution to address this problem.
  7. Dear Team, I want to change the password encoding type as md5 sum in jasper server login. How to enable the password encoding type only as md5. Kindly help me as soon as possible.
  8. Dear Team, I have downloaded the jasperserver-ce-3.7.1-bin.zip and extract it in the home directory. Now I want to use the existing tomcat not a bundled one and also need to use the postgresql. I have extract the jasperserver.war into the /var/lib/tomcat5.5/webapps/jasperserver directory. I have done the tomcat related configuration. And access the URL, http://192.168.1.184:8180/jasperserver/ But showing the error that, HTTP Status 404 -type Status report message description The requested resource () is not available. What are all the steps need to do for access the jasper server 3.7.1 front end interface. Kindly guide me. I am not able to follow the steps which was in the jasperserver install guide.
  9. Dear Team, I have used the item hyperlink with data in a chart. When I access the report through ireport then it shows the tootip when I mouse over on the chart. After export as pdf then I was not able to see the tooltip expression in exported pdf file. Kindly give suggestion for access the item hyperlink in pdf file. And also If i opened the pdf file with evince which has, $ evince --version GNOME Document Viewer 2.26.1 Then the chart has not shown properly. There is some shadow on that. I used the chart theme eye candy. So that it shows like that. If we used xpdf then it shows properly. Do the needful to solve this. Here I have attached the file which has shadow when opened through 'evince'.
  10. Dear Team, I want to access the PGInterval value as 'y' axis value in stacked 3D bar chart. I set the average call duration as a series and value expression. When preview the report it shows the error that, Cannot cast from PGInterval to Number. How to work on it... Kindly give the solution as soon as possible. The type as follows, <field name="calldate" class="java.sql.Date"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="extn" class="java.lang.Integer"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="avg" class="org.postgresql.util.PGInterval"> <fieldDescription><![CDATA[]]></fieldDescription> </field> The chart data setting as follows, <categoryDataset> <categorySeries> <seriesExpression><![CDATA[$F{avg}]]></seriesExpression> <categoryExpression><![CDATA[$F{extn}]]></categoryExpression> <valueExpression><![CDATA[$F{avg}]]></valueExpression> </categorySeries> </categoryDataset> I want to access the below fields in the report as well as chart. -> calldate -> extn -> avg(duration) The query as follows, SELECT calldate, extn, avg(duration) FROM incoming_details group by calldate,extn order by calldate, extn; The report shows like, Date Extension Average Call Duration 01/09/2010 501 0 years 0 mons 0 days 0 hours but if we put the query in postgres that fetch the below record, calldate | extn | avg ------------+------+--------------------- 01/09/2010 | 501 | @ 1 min 33.05 secs Kindly help to access the exact value in ireport as well access the avg(duration) value in chart.
  11. Dear Team, I want to access the below fields in the report as well as chart. -> calldate -> extn -> avg(duration) The query as follows, SELECT calldate, extn, avg(duration) FROM incoming_details group by calldate,extn order by calldate, extn; The report shows like, Date Extension Average Call Duration 01/09/2010 501 0 years 0 mons 0 days 0 hours but if we put the query in postgres that fetch the below record, calldate | extn | avg ------------+------+--------------------- 01/09/2010 | 501 | @ 1 min 33.05 secs Kindly help to access the exact value in ireport as well access the avg(duration) value in chart.
  12. Dear Team, I want to access the PGInterval value as 'y' axis value in stacked 3D bar chart. I set the average call duration as a series and value expression. When preview the report it shows the error that, Cannot cast from PGInterval to Number. How to work on it... Kindly give the solution as soon as possible. The type as follows, <field name="calldate" class="java.sql.Date"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="extn" class="java.lang.Integer"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="avg" class="org.postgresql.util.PGInterval"> <fieldDescription><![CDATA[]]></fieldDescription> </field> The chart data setting as follows, <categoryDataset> <categorySeries> <seriesExpression><![CDATA[$F{avg}]]></seriesExpression> <categoryExpression><![CDATA[$F{extn}]]></categoryExpression> <valueExpression><![CDATA[$F{avg}]]></valueExpression> </categorySeries> </categoryDataset>
  13. Dear All, I want to diaplay the user's firstname instead of the username in users list while manage the users. Steps 2 see the users list :- - Select the "Manage" menu item - Click 'Users' sub menu item. Now we can see the users list in the tree with username. But i wish to display the user's first name. Kindly anybody help to me. How to do that. Pls do the needful.
×
×
  • Create New...