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

gururagavan2008

Members
  • Posts

    32
  • Joined

  • Last visited

gururagavan2008's Achievements

Explorer

Explorer (4/14)

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

Recent Badges

0

Reputation

  1. Visualize.js will help you. http://community.jaspersoft.com/wiki/visualizejs-getting-started
  2. See the exception thrown: "Cannot format given Object as a Number" Looks like $V{solde} cannot be treated as number. See if there is any text entries for $V{solde}.
  3. Exactly, My problem is that I do not see that prompt. And my reports don't get auto-published either.
  4. I am able to deploy/publish the reports manually without any trouble. But I would like them to be auto-deployed on saving, just like the previous versions of JS Studio.
  5. Auto deploy on saving a report not working in Jaspersoft Studio 6.3. Is there a setting to configure this?
  6. I tried setting this in my JRXML: <property name="net.sf.jasperreports.data.cache.persistable" value="false"/> But, it doesn't disable data snapshot for that report.
  7. Try this: 1) Right-click and edit the Jasper Reports connection. 2) Expand the Advanced Settings 3) Enable "Use SOAP protocol only" 4) Perform a test connection and see if it works! If this works, this is a known issue: SaaS Systems are configured to allow only SOAP Protocol.
  8. You should make use of "$P!" Parameters in Jasper. Your SQL query should be like: Select col1, col2 from table where myownfilters and $P!{newParam} Then in your jasper report, add this parameter newParam and set the default value as: $P{yourInputControl} == "Invoice Address" ? "SalesLedger.Customer.Address.AddAddressNumber" < 101 : "SalesLedger.Customer.Address.AddAddressNumber" > 100 Hope this helps!
  9. Do you want to change the date format appearing in repository? If so, you need to make modifications as shown below in jasperserver_config.properties present in WEB-INFbundles: #Date and time formats which are used in repository and in View -> Messagesrepository.date.format=d/M/yyyy
  10. Can you throw more light on how you are using zoom to fix this issue? Are you automating the zoom-in/out based on the window size?
  11. Here is a way you can try solving this: try creating a same folder branch in both the servers. Then export and do a compare between the exports to see the difference. Replicate the difference in your export (that you are trying to import into serverB) from serverA and then do an import onto serverB. Unfortunately, I am unable to tell you the difference because I don't have both the versions.
  12. In addition to the previous answer, 4. Add the input control you created to your report. :)
  13. Please let us know as to how do you reorder input controls from JSS 6.0?
  14. I just replaced the " with ' AND prs.last_name LIKE '%'+$P{AnalystLastName}+'%' this worked for me. I too got the Missing EOF at '+' in my query window. But just ignore that and run your report. It works. P.S: Also - you dont need double quotes for renaming your column. You can use: rec.c_case_number as [Case Number],
×
×
  • Create New...