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

elizam

Members
  • Posts

    668
  • 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 elizam

  1. If you're running them as different users, or from different servers, or from different organizations, you can use a data source defined with an attribute: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-administrator-guide/v71/attributes-data-source-definitions I don't know if there's any way to just pass an attribute using REST, with the same user/org/server setup.
  2. You can create a placeholder with the name of the old field so that you can at least open the ad hoc views and edit them, rather than recreating them. See the section "To fix referential integrity problems by adding a placeholder" on this page: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-user-guide/v71/fixing-referential-integrity-problem
  3. There are two issues here: Create and enable Norwegian localeDisplay Norwegian locale.The second one is actually the easy one here: "By default, JasperReports Server appears in the locale selected in the end user’s browser." So if users have their browser set to Norwegian and Norwegian exists, then Norwegian is displayed. The first one is harder. Now which do you want to do: Display report headers in NorwegianDisplay entire JRS interface in Norwegian.For 2, Norwegian is not supported out of the box. So basically, you need to translate all strings in the JRS interface yourself: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-administrator-guide/v60/creating-locale For 1, you can create a bundle for the report labels in Studio and attach it to the report. There's some old iReport stuff here: https://community.jaspersoft.com/wiki/tibco-jasperreports-server-and-ireport-designer-internationalization The concepts are the same, how you get there in studio is different. . In studio things are located as follows: To create a resource bundle: Go to File > New > Other... to open the New dialog.Select Messages Editor > ResourceBundle and click NextMake all your choices and click FinishThen you see a Resource Bundle editor. This can be a little buggy, but you should be able to create keys and add values. Then you have to create references from your report to the keys using the $R{} syntax.
  4. In Jaspersoft Studio, select the field. Go to the Properties window, select the Text Field tab. Find the Pattern entry box and click "..." In the pattern dialog, select the pattern you want -- in your case: Currency.
  5. For white-labeling the UI, you can look at the chapter on customizing the user interface in the ultimate Guide: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-ultimate-guide/v710/customizing-user-interface There are actually a number of ways to integrate JRs into a product, from embedding with iFrames to using Visualize.js to layout reports and put them in any application. (However, Visualize is a commercial product.) There's a webinar about the options here. I haven't watched it:
  6. According to the Platform Data Sheet, it is supported in 7.1 https://community.jaspersoft.com/documentation/v710/tibco-jasperreports-server-supported-platform-datasheet
  7. Have you used any special fonts? That's often a culprit when publishing reports.
  8. You have to create a connection and then publish to it. Start here: https://community.jaspersoft.com/documentation/tibco-jaspersoft-studio-user-guide/v71/connecting-jasperreports-server-0 https://community.jaspersoft.com/documentation/tibco-jaspersoft-studio-user-guide/v71/publishing-report-jasperreports-server-0
  9. You might be better off asking on stackoverflow with a Spring Security tag [spring-security]
  10. No, the only repositories that are supported for CE are PostgreSQL and MySQL/MariaDB.
  11. JSS is a desktop product for creating reports. JasperReports Server is a web-based platform for sharing/running/displaying reports. You can install JSS on your desktop, create reports, and push them to JRS. On JRS, users can run reports and export them to PDF or you can schedule reports and email them in PDF. On AWS (and all commercial editions), there is also some ability to create reports directly in JRS. AFAIK, the location of JRS (in AWS or elsewhere) doesn't change this workflow. You can create a connection from JSS to a JRS server on AWS, you just use the correct URL.
  12. To find the specific option you want to set, look at the HighCharts website. If you can't figure it out there, ask on the HighCharts forum (https://forum.highcharts.com/) or Stack Exchange For example, these are the options for a simple column chart: https://api.highcharts.com/highcharts/plotOptions.column To set the option in JSS, see the instructions here: https://community.jaspersoft.com/documentation/tibco-jaspersoft-studio-user-guide/v71/advanced-formatting-html5-charts-0
  13. You can't do this using the table component. You can: Put the table in the summary band, which will put it after the detail bandDrag the fields you want to the detail band, which will automatically add the field names to the group header and which will display in a tabular format (but not actually be a table)There may be other approaches that could work as well.
  14. You can create data sources in JRS community, as described here: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-administrator-guide/v71/jdbc-data-sources However, views, and reports made from views, are only available in the commercial editions. For the community editions, the path to creating reports is to create a report in Jaspersoft Studio and then upload it to JasperReports Server. Jaspersoft Studio is a powerful tool, but if you are looking for an easy graphical interface for creating simple reports, it is not right for you. Only you can make that call.
  15. If you are using a commercial version of JRS, you can do this with virtual data sources and Domains. You create a virtual data source & then join the two tables from the two different data sources so that they can be used together in an Ad Hoc View. If you are community, then as reportdev says, it is JSS and parameters to create the connection between the two tables.
  16. For the first one, you could try advanced chart formatting: https://community.jaspersoft.com/wiki/advanced-chart-formatting see if setting tooltip.valueDecimals to 0 works. Documentation for that option is here: https://api.highcharts.com/highcharts/tooltip.valueDecimals Note that not all HighCharts options will work, but they often will.
  17. It looks like that project hasn't been updated since July 2017, so it's likely it hasn't been updated to work with 7.1. Some of the same functionality is now available in JSS, as options in a regular data adapter: https://community.jaspersoft.com/documentation/tibco-jaspersoft-studio-user-guide/v71/connecting-web-service-using-json-data-adapte-0
  18. There are two considerations here. You do not have to upgrade on the same server. However, you can't upgrade directly from 5.5 to 7.1. You will have to go through two versions. as described here: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-community-project-upgrade-guide/v71/upgrading-56x-or-0
  19. Password encryption is described in the Security Guide: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-security-guide/v71/encrypting-passwords-configuration-files
  20. Compiling with a newer version of JR Library and asking it to work in an older version of JasperReports Server sounds like a recipe for heartache to me. The server runs on JR Library underneath it all and it runs on a specific version. You don't have to install an older version of JSS/JR, or a newer version of the server. You just have to set the compile version in JSS: https://community.jaspersoft.com/documentation/tibco-jaspersoft-studio-user-guide/v71/setting-compatibility-earlier-versions-0 It may not solve it, but it's worth a shot. Note that if your report has features that are specific to the newer version, those features won't work on an old JRS under any circumstances.
  21. How does it look when you actually run it (Preview)? The template shows everything on one page, but it looks to me like this is set up to be a multi-page report with a cover page (Seite 1) and then each invoice on its own page ("Seite "+$V), then finally a summary page. If it has been set up correctly, then the page breaks are in there and will show up when you run the report. There is a missing image, you need to find out what the image file is and put it in the correct location. If you have further questions, the best person to contact is your bookkeeper, who will know best the template.
  22. Unfortunately, the screenshot didn't upload. My first guess would be that the template uses a font you don't have, or if you have the font,, JSS doesn't see it. https://community.jaspersoft.com/documentation/tibco-jaspersoft-studio-user-guide/v71/working-font-extensions-0
  23. The community edition doesn't support WebLogic. There's a separate installation guide for community.
  24. As of 7.1, yes. Documentation is here: https://community.jaspersoft.com/documentation/tibco-jasperreports-server-visualizejs-guide/v71/api-reference-adhocview
×
×
  • Create New...