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

Code_Slave

Members
  • Posts

    40
  • Joined

  • Last visited

Code_Slave's Achievements

Explorer

Explorer (4/14)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. thanks, sorry I had some sort of breakdown, and asked a very stupid question.
  2. not built into the reporting program. but go find "DbVisualizer", on the internet. it is also a java program and gives good coverage for multiple databases.
  3. why would you want to take a timestamp, and try to convert it to a timestampValue?
  4. Hi, can anyone point me to the library that i report uses for graphs, I thought previously it used a different package, or are the graphic functions built in.
  5. try firing up another separate thread, then do your report stuff from this new thread.
  6. without seeing the code, it could be the ref cursor is null, I.E there was some sort of error with your select, so no ref cursor was generated , and hence the error.
  7. Do you have a data source for this? if you do not have a datasource(for debugging) it's going to be a bit difficult for me to track the problem. but I can say that if you truely DID print to pdf & to your printer AT THE SAME TIME , and the pdf was O.K, but your printed report was not then you are looking at some sort of driver issue. also a few Questions: 1a. why have you got a sub report at the top of your current report, in the page header? (AW_profile_subreport) (also you did not send me the sub report.) 1.b WHY do you have a subreport in your invNoFooter? (AWName_Bill_subReport.xml) 2. why do you have so many strange groups & buried logic in your report such as: new Boolean($V{BreakGroup_COUNT}.intValue() > 15) in band BreakGroup (it seems a bit strange that this value should be about the number where you are getting strange behaviour) 3.Why is your page footer only 2 high, it does not seem useful? 4. Your SQL is interesting!!..... , I hope that's not running against an oracle database? 5. what exactly do your 2 subreports do? I know you are getting close to your deadline. what's the chance of coding up a datasource(java class), to run the report against a standard set of data. If you can look at supplying me the 2 missing reports, and a sample datasource , i don't mind spending a bit of time looking at this for you. But personally, perhaps this (sample xml file )is not how I might have tackled the problem of generating a simple invoice Post edited by: Code_Slave, at: 2006/09/22 10:51
  8. I know it is a pain , and it is extra work, but you have not proved that the data coming out of the printer is different than what is being sent. spool your output to a pdf as well. it should not have taken this long to trace this problem. Post edited by: Code_Slave, at: 2006/09/17 07:35
  9. well , it could be any number of things I.E 1. you are not actually using the datasource, by mistake 2. the connection has not been passed to the datasource. 3. the query the datasource is using is returning an empty set post your customdatasource, I will take a look.
  10. This is only a rough guess & i have not tried this....... But as jasper is written in java , there may be a good chance that the <HTML> tags work for formatting. but that would depend on how the intrenal rendering is done in jasper. Dan would be the guy to answer this question.
  11. no. not if it is in pdf format. there is a conversion situation from jasper to pdf. you have 2 options. 1. keep it in jasper format, and render it to pdf when a user wants it in pdf 2. render it to pdf, then use itext to display it as a separate task (better solution ,but a bit more work.)
  12. I had asked for something similar, or atleast the ability to remove/lock the icons. (i might not want the user to print/save secure documents!!) quite a few months ago, but nothing has been forthcoming.
  13. try writing a customdatssource. see jasper reports ,demo folder. there is a complete example showing exactly what you want to do.
×
×
  • Create New...