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

Jasperiousity

Members
  • Posts

    11
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Jasperiousity's Achievements

Apprentice

Apprentice (3/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. I am trying to use JasperServer Rest Java Client (https://github.com/Jaspersoft/jrs-rest-java-client) to integrate jasper reports/ server in my Oracle ADF application, but the instructions are a bit vague. For example, (configuring using Loading configuration from file) I am not sure where the JasperserverRestClient instance should be configured and where an instance of RestClientConfiguration should be created, also where I should place it within my ADF application. I would appreciate some help.
  2. I published my reports from Jasper Studio to Jasper Server. They are working perfectly but I need to input all the parameters manually. How can I access the database in such a way that I can select data possibly through a dropdown list or something instead of manually keying in the data? I am using Windows SQL Server for my database.
  3. I am using Jasper web services to access a report through a link. For example: http://localhost:8080/jasperserver/rest_v2/reports/reports/Statement.html?customer_id=NS10000?beginDate=2016-01-01?endDate=2016-02-26 This works, but I always have to enter the server username and password. Is there a way I can bypass the authentication or do it within the link without the username and password being visible in the url?
  4. I have created a report that has a group. Each of the groups members repeats about three times instead of appearing once in the preview. E.g, my group is called City and there are only two cities Johannesburg, St. Lucia, instead of these appearing once only with everything within their respective groups, they appear 3 times. I am not sure what's causing this.
  5. I am getting several errors in the report I created. Please see a screenshot below of the errors:
  6. I created a begin date parameter setting my default value expression as new net.sf.jasperreports.types.date.DateRangeBuilder("MONTH-1").toDateRange() and an end date parameter setting the default value expression as new net.sf.jasperreports.types.date.DateRangeBuilder("DAY").toDateRange() The parameters have "MONTH-1" and "DAY" in the fields that are to be entered. How can I set my own custom writing/message for the field?
  7. mwarner: Thanks for replying. I followed your instructions and now I'm getting Null for the options in the "Multi-select Query" and I also added the visible columns. Here is a screenshot. I also used the following query which has two options which I added as the visible columns. In JasperReports Studio, I created a parameter of Class java.util.Collection with the "Default Value Expression" of new ArrayList(Arrays.asList("Subscription", "Redemption")). These are the values I expect to see but appear as null. SELECT DISTINCT tran_type FROM prov.ATrans ORDER BY tran_type
  8. The available choice names for my input controls are not showing. I am not sure if it's the way a set the input controls. Also I would like to use a dropdown list instead of a checkbox. How can I correct these issues. Please see the current look in the image below.
  9. I copied the first part of code in http://community.jaspersoft.com/wiki/how-use-relative-dates-jrxml-static-reports to a project using the sample database. <parameter class="net.sf.jasperreports.types.date.DateRange" name="BeginDate"> <defaultvalueexpression> <![CDATA[new net.sf.jasperreports.types.date.DateRangeBuilder("WEEK-14").toDateRange()]]> </defaultvalueexpression></parameter><parameter class="net.sf.jasperreports.types.date.DateRange" name="EndDate"> <defaultvalueexpression> <![CDATA[new net.sf.jasperreports.types.date.DateRangeBuilder("WEEK-1").toDateRange()]]> </defaultvalueexpression></parameter>[/code]When I try moving from the source tab to the design tab I keep getting the following error: I really don't get what's wrong. Please help.
×
×
  • Create New...