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

Akshay Khedkar

Jaspersoft Staff
  • Posts

    34
  • 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 Akshay Khedkar

  1. Hello, Please let me know when exactly you are getting this error message and provide me the complete error message
  2. Hello, Can you please provide me the report JRXML and sample data to reproduce this issue at my end:
  3. Hello I found few articles which might help you: https://community.jaspersoft.com/knowledgebase/how-to/subreports/ https://copyprogramming.com/howto/jasperreport-ireport-subreport-shows-blank-not-displayed#google_vignette
  4. Hello Pavan, javax.net.ssl.SSLException: Received fatal alert: protocol_version which usually indicating an incompatibly version of Java runtime between your SSL and our application. How did you deploy the certificate in the server and in the Studio? Do you have problem access JRS through web UI. Please check for the supported java version as mentioned in our support platform sheet. With supported java the problem can be resolved. Thanks!
  5. Hello, Please refer below articles. I hope this will help you: https://stackoverflow.com/questions/46468144/how-to-use-csv-as-datasource-in-jaspersoft-server
  6. Hello, The exception is thrown because the locale format in the URL is incorrect: it should have underscore as a separator (en_US) but instead the separator is a dash (en-US). I'm not sure why the issue is intermittent, but i believe that in order to solve it you have to pass a correct locale format. Thank You1
  7. Hello, This could be an Enhancement. please raise an Enhancement request. I'm pleased to let you know about an improved method to make it easier for TIBCO Jaspersoft users to report enhancement ideas, track the status of those enhancements, and vote for ideas/enhancements that you consider to be most useful. This will be done by using the new Jaspersoft Ideas Portal https://jaspersoftideas.tibco.com/
  8. Hello Please refer below articles: http://jasperreports.sourceforge.net/sample.reference/jsonqldatasource/index.html https://community.jaspersoft.com/wiki/how-create-domain-json-file https://community.jaspersoft.com/wiki/using-data-adapters-fill-reports-json-data-remote-url https://community.jaspersoft.com/wiki/web-service-data-adapters
  9. Kindly set the following loggers in the debug mode and provide the jasperserver.log file to us. (JRS-> Manage-> Server Setting-> Log Setting) 1. com.jaspersoft.jasperserver.api.metadata.common.util.ValidationUtil 2.SQL query executer -> net.sf.jasperreports.engine.query.JRJdbcQueryExecuter 3.Cascading input control parameter resolution -> com.jaspersoft.jasperserver.war.cascade.token.FilterCore 4. Input control value queries -> valueQueryLog 5.Cascading input control parameter resolution -> com.jaspersoft.jasperserver.war.cascade.token.FilterCore
  10. Hello, Each of the APIs requires user authentication to access the server and it is up to external application to implement the authentication based on requirements Please refer below REST API guide for more details: chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/https://docs.tibco.com/pub/js-jrs/8.2.0/doc/pdf/js-jrs_8.2.0_REST-API-Reference.pdf Thanks!
  11. Hello Can you please provide me the JRXML Report and the jasperserver.log(jaspersever-pro/WEB-INF/logs) file for further investigation.
  12. In our old jasper studio versions there was a option "Stretch with overflow". This option was used to allow the text field to stretch downwards in order to display all its text when it doesn't fit in the defined text field height. This property will work irrespective of cell height that you provide. This option is now removed in our newer versions and replaced with Stretch Height (which is the same as the old stretch with overflow)Stretch with overflow is now part of the text adjust options: Cut Text (which is the default)Stretch Height (which is the same as the old stretch with overflow)Scale Font (which instead of stretching the element, JasperReports will try to decrease the font size until the full text fit the textfield size).Please find attached screenshot.
  13. Hello , Can you please provide me the report jrxml and sample data to replicate the issue. Please refer below wiki for downloading sample data: https://community.jaspersoft.com/wiki/create-mock-or-sample-query-data-using-jaspersoft-studios-export-sql
  14. Hello Nick, Can you please provide me the report jrxml and sample data to give a try at my end. > https://community.jaspersoft.com/wiki/create-mock-or-sample-query-data-using-jaspersoft-studios-export-sql
  15. Hello, I could see you have two subdatasets with data adapter selected and SQL queries are written to retrieve data from DB but you don't have data adapter selected for main report. You can right click "Leaf_Red" in outline view and and choose "Dataset and Query". Then choose the required data adapter and write sql query. I hope this will hwlp you.
  16. Fo that you need to set the "colors" property using the rgba() function, which also takes transparency into account. <hc:chartProperty name="colors"> <hc:propertyExpression><![CDATA[Arrays.asList("rgba(245,60,20,0.5)","rgba(50,255,90,0.5)","rgba(90,200,100,0.5)","rgba(220,100,220,0.5)","rgba(80,200,90,0.5)","rgba(255,70,100,0.5)")]]></hc:propertyExpression> </hc:chartProperty> -> https://www.highcharts.com/docs/chart-design-and-style/colors Please find attached report jrxml which works with Sample DB in JSS and with foodmart in jrs. charts_4.jrxml
  17. Hello If you are using JSON then net.sf.jasperreports.json.number.pattern parameter could help. Please refer the below articles for more details: https://community.jaspersoft.com/wiki/sample-report-using-json-data-source-deployed-jasperreports-server https://jasperreports.sourceforge.net/sample.reference/jsondatasource/index.html Thank You!
  18. Hello where are you facing this error message? On JasperServer or on jasper Studio? Please try to run the same query at your database end and check if this is working fine at database
  19. Hello You can export data using deprecatedImportExportEncSecret. i) Export from the command line: js-export --<what to export> --output-zip export_what_to_export.zip --keyalias deprecatedImportExportEncSecret example of export everything in the repository uses the command as: js-export --everything --output-zip myExport.zip --keyalias deprecatedImportExportEncSecret To Import the exported zip into the JRS 9.0 : You have to import the exported zip into the JRS in the following ways: You can import that export zip with the help UI using the legacy key as suggested in the following document: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-administrator-guide/v790/import-and-export-through-web-ui or You can import the exported zip with the help of the command line as given below suggested in the following document https://community.jaspersoft.com/documentation/tibco-jasperreports-server-administrator-guide/v790/import-and-export-through-command js-import.sh --input-zip export_what_to_export.zip --keyalias deprecatedImportExportEncSecret example of importing repository using the command line with this command: js-import.sh --input-zip myExport.zip --keyalias deprecatedImportExportEncSecret
  20. Hello, are you creating a report in studio? Please provide me the report jrxml for further investigation.
  21. Hello, Can you please elaborate your requirement in more details? Please provide me the screenshot and report jrxml for better understanding of the requirement.
  22. Hello, Please follow the steps mentioned in prior response. I hope this will help you. Thanks!
  23. Hello, You can import data from your old server and export to new server using our import-export utility. Please refer the below guide for detail steps: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-administration-guide/v62/import-and-export-0
  24. Hello, Can you please provide me the complete report JRXML or report export? Also please elaborate your requirement/issue in more details.
  25. Hello , Can you please provide me the report JRXML to reproduce the issue at my end?
×
×
  • Create New...