Jump to content
Changes to the Jaspersoft community edition download ×

nthapa

Members
  • Posts

    91
  • Joined

  • Last visited

Community Answers

  1. nthapa's post in Chaining pre filters with OR in domain designer was marked as the answer   
    Yes, it is possible but you will need a bit of work. I will summaries steps below:
    Frist create domain with all the filters that are to be applied. Export the domain (server settings->export) Unzip the file Find schema.xml.data, you will see line such as <filterString>users.first_name == 'Will' and users.first_name == 'Jim'</filterString> Replace and with or zip it back and import it to JRS Thats it! you are ready to go.
    Easier way would be to add those filters in adhoc viewer. :)
    HTH
     
     
     
  2. nthapa's post in Can not start my JasperServer in Mac Yosemite was marked as the answer   
    Try this:

    -Have the java.net.preferIPv4Stack=true in your ANY_OPTS and Java_Opts and also in TOMCAT

    -Have your FQDN added to your hosts file not only localhost but the name of you Mac.

     

    HTH.

  3. nthapa's post in Export PDF it takes a long time was marked as the answer   
    It is hard to answer your question since, it could be anything. I try to list few of the things worth considering
    4GB ram is the minimum system requirement for JRS pro. 8GB is the recommended. The database you are connecting to, is it in the same server? is it in network? could that be slowing things down? In server settings, look if optimize query is enabled HTH
     
  4. nthapa's post in Can't create condition in SQL query (ORA-00936: missing expression) was marked as the answer   
    Can you see if any of the following this makes difference?
    SELECT name FROM test_table WHERE test_column_name LIKE ($P{PARAM_VALUE} IS NULL ? "%" : $P{PARAM_VALUE})
     
    SELECT name FROM test_table WHERE (test_column_name LIKE $P{PARAM_VALUE} and 
    $P{PARAM_VALUE} IS NOT NULL ) or (test_column_name LIKE "%" and $P{PARAM_VALUE}) IS NULL)
  5. nthapa's post in How to use case statement in calculated fields in domain designer of jasper server? was marked as the answer   
    JRS does support "if" in calculated field, but doesnt support case. HTH.
     
     
  6. nthapa's post in heatmaps in jasperreports was marked as the answer   
    Starting with JRS 6.0, heatmaps are available.
  7. nthapa's post in Does Jasper Server support heatmaps was marked as the answer   
    Starting with JRS 6.0, heatmaps are supported.
  8. nthapa's post in where did this WARN come from? was marked as the answer   
    To wipe out the WARN log in to JRS  then
    Manage ->Server settings -> log settings
    Create new row on right hand side of the screen put "net.sf.jasperreports.engine.export.GenericElementHandlerEnviroment" in the box and select error in the dropdown, that should restrict the log to only error for that particular class.
     
     
  9. nthapa's post in How to create external role using REST service was marked as the answer   
    URL
    http://superuser:superuser@localhost:8080/jasperserver-pro/rest_v2/roles/newrole
    put / (application/json)
    {"name":"newrole","tenantID":"organization_1","externallyDefined":"true"} It creates role newrole. HTH. 
     
     
  10. nthapa's post in Work with diferent datasources using API was marked as the answer   
    If I am not wrong, what you are looking for is feature we call user attributes/ profile attribute, that lets you define differenet user specific value for different attribute. And use can use those attribute to define datasources and so forth. Those attributes are referenced as {attribute('attributeName')}. Please review JasperReports-Server-Web-Services-Guide.pdf, with JRS 6.0 that feature has been even more enhanced, but for your requirement earlier vesion should work as well.
     
     
  11. nthapa's post in Accessing report server url was marked as the answer   
    Yes it is possible by utilizing web services exposed by JasperReports Server. Please go through JasperReports-Server-Web-Services-Guide.pdf
×
×
  • Create New...