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

fredrated

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

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

fredrated's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Bingo! Ran without error and multiplied by 100, thank you very much. --Fred
  2. I am trying to calculate a percentage in a report. The good news is that I am only trying to calculate the % for items in the same detail line so I don't need a total. Using the following I can calculate the ratio of 2 values: ($V{totResAmt1}.intValue() > 0?new BigDecimal($V{totPmtAmt1}.doubleValue()/$V{totResAmt1}.doubleValue()):new BigDecimal(0)) However, when i try to multiply by 100 to convert to a percent: new BigDecimal(($V{totResAmt1}.intValue() > 0?new BigDecimal($V{totPmtAmt1}.doubleValue()/$V{totResAmt1}.doubleValue()):new BigDecimal(0))*100) I get the error: "The operator * is undefined for the argument type(s) BigDecimal, int value = (java.math.BigDecimal)(new BigDecimal((((java.math.BigDecimal)variable_totResAmt1.getValue()).double etc. etc... How do I do the multiplication by 100? Thanks for any help. --Fred
  3. I apologize if this is not the place to ask this question but an answer would certainly be appreciated and I have been reduced to grasping at straws. My organization is using software called ivos which does liability claims management and the package uses jasper reports as it's reporting tool. In the setup under ivos, each user has a reports directory available only to them and to anyone with system administration privileges. My problem is that I need to develop a set of vetted reports that would be available to essentially all users, but without making them all sys admins. Creating reports isn't a problem but sharing them is. I tried creating a generic user with a login everyone has access to, but no one can copy reports to anyone else unless thay have sys admin status so they can't copy their reports to this 'repository'. The only thing I can think of to do is ask users to contact a sys admin when they have a candidate for a common report, then the sys admin will copy it to 'generic' user where it will be examined for correctness and made available when vetted. Since this is cumbersome I thought I would ask if anyone else has a method for keeping a common report repository, perhaps with additional software? Thanks in advance for any help. -Fred
  4. I apologize if this is not the place to ask this question but an answer would certainly be appreciated and I have been reduced to grasping at straws. My organization is using software called ivos which does liability claims management and the package uses jasper reports as it's reporting tool. In the setup under ivos, each user has a reports directory available only to them and to anyone with system administration privileges. My problem is that I need to develop a set of vetted reports that would be available to essentially all users, but without making them all sys admins. Creating reports isn't a problem but sharing them is. I tried creating a generic user with a login everyone has access to, but no one can copy reports to anyone else unless thay have sys admin status so they can't copy their reports to this 'repository'. The only thing I can think of to do is ask users to contact a sys admin when they have a candidate for a common report, then the sys admin will copy it to 'generic' user where it will be examined for correctness and made available when vetted. Since this is cumbersome I thought I would ask if anyone else has a method for keeping a common report repository, perhaps with additional software? Thanks in advance for any help. -Fred
×
×
  • Create New...