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

sasi86

Members
  • Posts

    32
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by sasi86

  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.
  14. Dear All, I am using ireport 3.5.1 version. I have designed the data. For that I have set the chart property for control the 'Y' axis value as, Property Name : net.sf.jasperreports.chart.range.axis.tick.interval Property Value expression : Integer.toString ( ( $F{count}.intValue() < 10 ) ? 1:10 ) If the 'y' axis value is below 10 then the y axis value intervale increment by 1. In the expression I can able to use only the ternary condition. But I want to use like 'If' condition. For example, If the field vale count below ten then the interval should be set as 1. If more than 10 count then i want to set as default chart take care. It is like, Integer.toString ( ( $F{count}.intValue() < 10 ) ? 1:<chart default setting> )
  15. Hi All, In jasper server tree node there is a issue. If the parent node not having any child nodes, thn also it showing with plus sign. If we click that then it will process. I want to be a parent node with minus sign if it not having child nodes. Kindly give steps for doing that.
  16. How i can do with that http request. Kindly explain me in detail.
  17. Dear Team, I have integrated jasperserver with one of the my main project. In main project I have keep the link for access the jasperserver frontend. That means, in my main project if i click the reports link then it open the jasperserver frontend in new tab. Actually my main project is in php. I have done the jasperserver authentication with trigger in the main project. So If we logged into the main project it will authenticate and click the reports then it will redirect to the jasperserver home page without authentication. I want to close the window if my main project gets logout. But using the japerserver URL I am able to access the jasperserver page without logged into the main project. How i can close the jasperserver page window. Kindly help me as soon as possible.
  18. how to control the 'y' axis value. How to remove the duplicate values? If the records is more then it shows properly. If record is lesser then the duplicate value problem occured.
  19. Dear Friends, I need to control the 'y' axis value. By default if the records is below 10 records then it shows the duplicate 'y' axis values. Kindly look the attached chart file.
  20. Dear Friends, I am facing one problme in the jasperserver treeview. If the node has leaf's then only the node should show with icon plus image. If is not having the childs then it should not show with plus symbol image. I have gone through the nanotree.js and treesupport.js file. But unable to solve this issue. Kindly give the solution to solve this issue. Here I have attached the tree view design what I need. Thanks.
  21. Hi, I am using the ireport-nb-3.5.1.
  22. Hi, How to create the group in ireport. I want to show the supervisor under the team leaders as one group. Likewise many supervisors will be there. I used subreports. For example, I create the main report for supervisor name list. Under that I used the sub report for team leaders under the appropriate supervisor. When using the subreport it showing the extra one page unwantedly. I referred the forum that if we used the group then we can avoid the extra page problem. Let me know how to create the group.....
  23. Hai Friends, Let me know how to create the group?
×
×
  • Create New...