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

slingky

Members
  • Posts

    7
  • Joined

  • Last visited

slingky'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. Is there a way to customize the hyperlink tooltip ? I would like to change for a monospaced font for easier alignment of values Also color, font, size would be great. Thanks
  2. I have the following data ; POLine, BuyQty, EstimatedReceivingDate, PackSlip, ReceivedQty PO123-1, 6, 2018-05-01, Packslip123, 3 PO123-1, 6, 2018-05-01, Packslip456, 1 PO666-2, 4, 2018-05-02, Packslip777, 1 I group by POLine and added a variable called RemainingQty (BuyQty - TotalReceivedQty) so here I have POLine, BuyQty, EstimatedReceivingDate, RemainingQty PO123-1, 6, 2018-05-01, 2 PO666-2, 4, 2018-05-02, 3 All work well except I want to make a cumulative string that would include the 2 previous lines here so; PO123-1, 6, 2018-05-01, 2 PO666-2, 4, 2018-05-02, 3 Because I would use that variable in a tooltip so the user see some kind of drilldown when he over the report. It's not working correctly. I tried to create a variable. Name : Tooltip Calculation : non calculation function initial value expression : "" increment type : none reset type : none expression : ${Tooltip} + "n" + $V{RemainingQty} + " for POLine : " + $F{POLine} + " estimated date : " + $F{EstimatedReceivingDate} The problem seems related to the variable $V{RemainingQty} which is not evaluated at the correct time.
  3. I would like to know how to modify the scheduling service. Which file exactly ? I would like to add custom text and/or execution date to email notification subject. Any help greatly appreciated. Thank you.
  4. I would like to know how to modify the scheduling service. Which file exactly ? I would like to add custom text or execution date to email notification subject. Any help greatly appreciated. Thank you.
  5. Hi guys! I have JasperServer 6.3 I usually publish my reports on it and link a data source from the repository. I would like to be able to set the datasource at runtime using an input control parameter. For example, in repository, I have these data sources DataSourceA -> point to server A DataSourceB -> point to server B DB structure is identical on both server but data is different. I read a lot of threads but didn't get how to implement this. Could you help me please ? Thanks, Maxime
×
×
  • Create New...