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

Jitendra Mandalia

Jaspersoft Staff
  • Posts

    23
  • Joined

  • Last visited

  • Days Won

    1

 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 Jitendra Mandalia

  1. Hi @Hiraeth What version of JSS are you using? I am using JSS 8.0.2 and I am not seeing these boxes or border. Can you share the screen shot of these two properties? There is no property "Blank when Null" for crosstab. Thanks.
  2. Hi Just adding below as a solution for this issue. Try the same and let me know. Do share the details asked in my comments to understand if this solution will work or not. https://community.jaspersoft.com/knowledgebase/troubleshooting/one-field-2-rows-tall-becomes-2-rows-when-exporting-excel-tibco-jasperreports-server-works-fine/ Thanks.
  3. Hi Can you please provide some more details? What is the JasperReports Server version you are using? Have you created this report using the Jaspersoft Studio? If so, if you export the report out in the Studio, does it have the same issue? Thanks.
  4. Hi @sowmya.nallapati The Jaspersoft Studio 6.x officially supports Java 1.7. The Studio 7.2 onwards it supports Java 1.8. Though required java comes packaged with JSS installation. The reports might work with higher version of Java but it's not guaranteed. Thanks.
  5. There are no out of the box options in Jaspersoft to convert the Cognos reports to Jasper reports. Reports need to be created manually per report design. There is an option in Cognos where user can export the report design out in XML format. Jaspersoft reports supports JRXML. So one can also use XML from Cognos and manually convert those elements to JRXML.
  6. Hi, Can you share your JRXML file? Based on the output, it should be doable with headers in the column header and fields in the detail section. The screenshot shows two headers, that doesn't seem right. Thanks.
  7. Hi, I also like to suggest that Plugin is no longer available in the marketplace. We strongly suggest to use the full installation of Jaspersoft Studio. Sorry for the inconvenience. Thanks, Jitendra
  8. 1. Not sure. This seems something environment specific, where you seems to have some restriction with non-root user. Do you have SELinux enabled? That might be adding more restrictions to non-root user, and if so, you can try disabling the same. 2. Ideally this error shouldn't have anything to do with sample data, but if without that you are getting different error, it could be still related to permission issue. If not, did you try the solution provided in the referred article by adding kestore.init.properties file in the buildomatic folder? If it's there, it will be copied over to WEB-INF/classes and will use that to refer to keystore files. This is only needed if you have existing kestore file and installation isn't creating the same.
  9. Not sure otherwise. That should have worked, I don't see any other reason for this error. Can you check below article and see if changing the driver class, based on which Oracle version you have, removes this error? https://stackoverflow.com/questions/6202653/difference-between-oracle-jdbc-driver-classes
  10. Hi @katarzyna.wawer Which driver are you using? Can you check below article and modify your URL to see if that works? https://stackoverflow.com/questions/1054105/url-string-format-for-connecting-to-oracle-database-with-jdbc
  11. Hi So you have a JasperReports Server where you have the chromium installed and set up the path in the js.config.properties. Is that right? Where do you have the Studio? Is it on the same system? Do you have chromium installed on the machine where you have the Studio? As you are running the report in the Studio (Jaspersoft Studio, desktop app), you need to also make sure Studio is able to find the chromium. What is the OS you are using? To set the Chrome path in Studio... Navigate to Window > Preferences (or Jaspersoft Studio > Preferences on macOS). Go to Jaspersoft Studio option --> Select Properties. Find the property named net.sf.jasperreports.chrome.executable.path Provide full path to the Chrome executable on your system. Example: On Windows, it might be C:\Program Files (x86)\Google\Chrome\Application\chrome.exe. Save the updated path. Restart Jaspersoft Studio. Thanks.
  12. Hi You need to login as non-root jasper user to your instance and make sure the user has rights to install the software and access to the folders where software is installed i.e. /opt or /local and other required folders for installation. Refer to below article. The error you are seeing is related to permission, and if you have correct permission for the jasper user, you should be able to install the same. Thanks.
  13. Hi Can you provide more details? Which user you are using when logging in? Is this happening with superuser and jasperadmin user too?
  14. This article is obsolete. Below article is latest one in this series.
  15. Hi @hhom72 Yes, this option is only available for Commercial version from the newer JasperReports Server. The older version used to support the Log Collector for Community Edition.
  16. Hi @sugreevu.teja findFields is used to restrict the fields you want in the response. Are you trying to filter out the data using the date filter? Then you need to use findQuery option. i.e. { collectionName:'Employee', findQuery : { 'field1': 'value1', 'leave_period' : { $gt: "2021-11-16T00:00:00.000Z", $lt: "2021-11-18T00:00:00.000Z"} } } 'status_date' : { '$gte' : $P{StartDate}, $lt: $P{EndDate} } Please see the post below where I recently provided an example for date filter. Also check the MongoDB Query Language article specific to Jaspersoft shared before for more examples on how to filter using date fields.
  17. Hi @Jet_lag Please see below. 1. MongoDB connection: For this issue, there are a few things to check. Hard to say exact reason per your environment setup. 1.1 Verify server is available at the ip:port. As you suggested, it seems you are able to connect with MongoDB Compass UI. If so, also see firewall rules blocking such connection from Studio. 1.2 You can disable certificate validation for testing purposes. mongodb://xx.xx.xxx.xx:27017/[database] OR mongodb://xx.xx.xxx.xx:27017/[database]?authSource=xxx&readPreference=primary&directConnection=true&tls=false And see if one of these work to test the connection. 1.3 Check the MongoDB server logs for any more specific errors related to SSL connections or certificate validation. 2. There isn't direct match to elemMatch syntax but you can use similar to what is in the below example. $elemMatch: db.survey.find( { results: { $elemMatch: { product: "xyz" } } } ) Date Example without elemMatch: 'findQuery' : {'status_date' : { '$gte' : $P{StartDate}, $lt: $P{EndDate} }, 'name' : { '$regex' : '^N', '$options' : '' } } OR your example below. { collectionName:'Products', findQuery : { 'value.items.segment.departure.dateTime' : { $gt: "2021-11-16T00:00:00.000Z" }} } Thanks.
  18. Hi @Jet_lag 1. Your connection string seems to be wrong. It should be of below format. Basically have the database name first and then add any parameters after that. mongodb://username:password@host:port/[database]?ssl=true or mongodb://xx.xx.xxx.xx:27017/[database]?authSource=xxx&readPreference=primary&directConnection=true&tls=true&tlsAllowInvalidCertificates=true 2. Please refer to below articles for finding the correct syntax for Jaspersoft MongoDB Query Language. https://community.jaspersoft.com/knowledgebase/reference/jaspersoft-mongodb-query-language/
  19. Above MongoDB query references were for a MongoDB driver, please refer to below article for the Jaspersoft specific MongoDB Query Language.
  20. Hi @sugreevu.teja 1. Which Studio version are you using? Do you have a community edition or commercial edition? The TIBCO MongoDB JDBC driver is only available from Studio 6.2 with commercial license. You can try other MongoDB JDBC driver provided by MongoDB itself. 2. For the MongoDB syntax, you can search for appropriate scenario online and you should get enough examples to query different data structures including arrays with MongoDB syntax. https://www.mongodb.com/docs/manual/tutorial/query-documents/ https://www.mongodb.com/docs/manual/tutorial/query-arrays/ Thanks.
  21. Hi @sugreevu.teja There are two ways to use the MongoDB connector. 1. TIBCO JDBC Driver. 2. MongoDB native connector. Can you tell us which one you are using? FYI...For JDBC driver, you need to use SQL query while for the native connector only you can MongoDB syntax. Please refer to below Youtube video.
  22. Hi Are you facing issue configuring anything specific related to Jasper Reports to be printed? Can you provide what configuration you are looking for and what issue you are facing? Thanks.
  23. Hi Check the code for JRXmlDataSource at below Github location. https://github.com/TIBCOSoftware/jasperreports/blob/master/jasperreports/src/net/sf/jasperreports/engine/data/JRXmlDataSource.java You can extend AbstractXmlDataSource interface from which JRXmlDataSource extends if you want to customize a data source. Yes you can extend functionality of JRXmlDataSource as long as you can follow the licensing requirements of this library.
  24. Hi, 1. Can you share a screenshot of the Jaspersoft Studio for us to see how are you selecting a driver, what is the driver class you are specifying and path/name of the driver jar file? What is the java version you have installed? This can happen with conflict between the Java version supported by Derby and Studio. We need this info to understand the compatibility issue. Please provide screenshot or text of the exact error too. You can refer to below article though this doesn't give concrete solution, this might be helpful to see the Java version conflict. As you are with very old Studio version, this version conflict can cause such issues. https://community.tibco.com/s/question/0D54z00007mxQtUCAU/ireport-56-not-able-to-add-derby-database-connection 2. What are you trying to copy from Studio to browser edit window? What is the editor in the browser? There is nothing which Studio should be doing and you should be able to paste whatever you have in your Clipboard based on what the editor supports. 3. About application crash, what do you mean my windows manager? How much RAM is allocated to the JVM i.e. Xmx, Xms and Xss settings?
×
×
  • Create New...