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

santosh.audi19

Members
  • Posts

    88
  • 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 santosh.audi19

  1. Im Using Variable(Cost) in Jasper report , Now I want to implement this condition If Cost == null then print 0 else Cost . I have implemeted like this IF(Cost==null)?0:Cost , When I publish the report it is showing Error at this Variable Expression. Error is like this Errors were encountered when compiling report expressions class file: 1. The method IF(Boolean, Object, Object) in the type LogicalFunctions is not applicable for the arguments (boolean) value = IF(((java.lang.Integer)variable_Total32Quality.getValue())==null)?0:((java.lang.Integer)variable_Total32Quality.getValue()); //$JR_EXPR_ID=58$ <> 2. The method IF(Boolean, Object, Object) in the type LogicalFunctions is not applicable for the arguments (boolean) value = IF(((java.lang.Integer)variable_Total32Quality.getOldValue())==null)?0:((java.lang.Integer)variable_Total32Quality.getOldValue()); //$JR_EXPR_ID=58$ <> 3. The method IF(Boolean, Object, Object) in the type LogicalFunctions is not applicable for the arguments (boolean) value = IF(((java.lang.Integer)variable_Total32Quality.getEstimatedValue())==null)?0:((java.lang.Integer)variable_Total32Quality.getEstimatedValue()); //$JR_EXPR_ID=58$ <> 3 errors
  2. When you republish your report , there will be a Screen which will displays all your report parameters , In Jasper Studio Pro 6.1.0 you can see True(Tick mark ) beside the parameter you need to make it False In Jasper Studio Pro 6.1.1 you will get a drop down having options "Overwrite" and "Ignore" you should select Ignore and click on Next and Finish. Thanks,
  3. Yes Creating a Japer report with 100+ columns is possible to populate Excel file(Excel Export). I have seen a report with 512 Columns. Thanks,
  4. when you Publish your report to Server successfully , then 1)Right click on the report and click on Edit option and click on "Controls & Resources" Button there you will find the "Project_Id" Parameter . 2)Click on that "Project_Id" Parameter and Choose this option "Select an Input Control from the repository" , Click on Browse button 3)From here you should navigate to your Input control and select it. 4) Click on Submit , then run your report . Thanks,
  5. I want to know If we can connect Android app with Tibco Jaspersoft. Suppose If my android app output is Latitude and Longitude can I use that data as Input for Tibco Maps. Thanks
  6. When I run the Jasper report in server i shold get current Data format like this `Thursday, December 3, 2015` and same should be reflected in Excel Export. How do i need to frame my Data Fomat Class. Thanks.
  7. So If I have an Image How to set that as a background for Whole report and How much that Image resolution should be? Thanks.
  8. Ok I understand , If I select the background color and uncheck transparent , How am I supposed to get the same background color effect for my simple report . I think I will get single color as background If I follow your answer.
  9. I have created a Simple Jasper report using TIBCO Jaspersoft Studio Professional-6.1.0.final, Now I want to set a background color for it . I have tried the following Properties but it didn't worked. 1) chart.backgroundColor.linearGradient java.util.Arrays.asList(0,0,500,500) 2) chart.backgroundColor.stops java.util.Arrays.asList ( java.util.Arrays.asList(0,"#b5bdc8"), java.util.Arrays.asList(0.36,"#828c95"), java.util.Arrays.asList(1,"#28343b") ) Could you help me what property I should use to set Background color for a Normal Jasper report.
  10. Try this to Change Color for X,Y axis Titles Property Name : xAxis.title.style.color // For X Axis Property Value : new java.awt.Color(-12535865) // Cyan color Property Name : yAxis.title.style.color // For Y Axis Property Value : new java.awt.Color(-12535865) // Cyan color .This Worked for Me.
  11. Go to Advanced Properties Try below Properties to Change Color for X,Y axis Titles Property Name : xAxis.title.style.color // For X Axis Property Value : new java.awt.Color(-12535865) // Cyan color Property Name : yAxis.title.style.color // For Y Axis Property Value : new java.awt.Color(-12535865) // Cyan color .This Worked for Me.
  12. I have been given a Report where a Text Field is using Hyperlink Expression like this "$P{ppmAppServer} + "#action:itl.riskList&id=" + $P{projectKey_1} + "&ui.page.space=mainnav.work" Here ppmAppServer is a Parameter which has default Value Expression "$P{LoggedInUserAttribute_ppmAppServer}" Parameters used for the Text Field for hyperlink are 1) ppmAppServer (this parameter dynamically picks CA Application URL like 14.141.42.127 or "https://ca.ondemand..... etc") 2)LoggedInUserAttribute_ppmAppServer both are using java.lang.String class So when I'm trying to use same Parameters in another Report for Hyperlinks this ppmAppServer Parameter is giving me http://localhost:8090/niku/nu which is Wrong . Is there any other Parameter which will take URL of CA application after User Logs in. Thanks,
  13. I have made simple HTML-5 bar chart. when I clicked on Preview it is showing "Document is empty" error , but i have added Query for it and checked everything if i made any thing wrong What could be reasons for this.
×
×
  • Create New...