Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. arunrathna

    Missing Jar Files in RAS 9.0

    I was able to solve this problem. We cannot use VAJ to do this. Instead we need to use WASD. WASD does not try to resolve all references in imported jar files, hence the missing jar files in our case would not be a problem. Thanx, Rathna.
  2. arunrathna

    Bar Code Font in converted pdf - Will it work

    We are planning to use Jave SDK on Websphere to create crytal reports using templates, then converting to pdf on the server side, and streaming the pdf to the browser. The report has barcode in it, it uses "3 of 9 Barcode" Font, which is a true type font. I have used activeX viewer...
  3. arunrathna

    How to print Crystal reports from an asp page?

    There is a method available in the ActiveX Viewer to print CRViewer.PrintReport.But this still would open up the print dialog box.
  4. arunrathna

    Missing Jar Files in RAS 9.0

    Hi, I installed 30 day evaluation copy of CR 9 and RAS on my PC to test java integration with Crystal reports. I am trying to test with Visual Age for Java 3.5.3. I imported all the jar files but since two class files were missing, I am not able to proceed. The class files that are missing are...
  5. arunrathna

    Insert a BLOB into UDB

    Hi, It will be helpful for me to have a sample VB program, using ADO, which can insert a binary file into a BLOB column ina table in UDB 7.2. I found that there is a code called Blob.vbp in IBM Samples, but I could not get that code. I tried many methods to do it, but always get the error...
  6. arunrathna

    The statement is too long or too complex

    Thanx for ur reply. It worked after increasing the heap size.
  7. arunrathna

    The statement is too long or too complex

    I work on an application where the whole business logic is present in database views. The views dont merely represent the table, but has complex SQL statements, calling other views, which call other views. The views became very big and I ended up getting this error message 'The statement is too...
  8. arunrathna

    Problem with semicolon ; in multiple statement

    Are u using Command Center to do this?? If u are using it, u can set the delimiter as ";". U should be careful that u should not hit a enter (line feed) after the last semicolon (last line in the script). Rathna
  9. arunrathna

    Performance drops when view is built using joins

    Thanx for ur answers. Inspite of all efforts on indexes and other means, I do find that joins in views slow down the query a lot. The reason should be as we are "materializing" the entire cursor before you will get results. But I managed to achieve the same with views using unions and...
  10. arunrathna

    Help New to DB2 bactch coding

    U can store the commit counter (number of records committed) in a file (maybe VSAM??); the program should first look this file for the commit counter and skip processing that many number of records. This was how I had solved this problem. Any other suggestions are welcome!! Rathna.
  11. arunrathna

    Performance drops when view is built using joins

    I find that whenever I use a join in a view, the performance while retrieving records from the view gets worse (like 25 times slower than normal retrieval). If I use unions in the view to produce a similar result that the view with join would produce, the view is much faster. But I could not use...
  12. arunrathna

    XML and Crystal Reports....

    Although Crystal reports document says it accepts ADO xml files, it did not wok. But it does accept XML files in data island format. So u can use XSL to transform the ADO XML to data island XML and use it. Thanx, Rathna.
  13. arunrathna

    How to avoid namespace definitions in the XSLT output

    The namespace definitions that I have in my XSL document (which I need to have because my source xml file has them) appear in the resultant xml document also. But I do not need them in the result xml as it gives some problem. Is there any way to avoid it?? Thanx, Rathna.
  14. arunrathna

    changing viewer options - page width?

    I find that there is a method in report viewer applet as setZoomFactor(int). Can we write another applet that extends this and set the zoom factor. Will this work or can I do it in any other way? Thanx, Rathna.
  15. arunrathna

    changing viewer options - page width?

    I am using the java applet viewer to view the report in browser. I want to set the zoom parameter to page width as default.
  16. arunrathna

    changing viewer options - page width?

    I am looking for a solution for the same problem. If anybody knows how to do it, it will be extremely useful. Thanx, Rathna.
  17. arunrathna

    Passing parameters to XSLT

    Thanx Jordi, I understand from ur reply that I need to modify an XML template with the user input values. For this I may have to use DOM XML API, I believe (Forgive me if I sound naive here). Have I understood ur answer right?? Rathna.
  18. arunrathna

    Passing parameters to XSLT

    Hi, I need to produce dynamic Web pages with ASP and XSLT by passing user-request parameters from an ASP program to an XSLT style sheet used to render the Web page. I understand that there is a way to do this in java(using setStylesheetParam method of XSLTProcessor class), but I am not able to...
  19. arunrathna

    Do u need MQ Client when using java?

    Hi, My MQ Manager on OS390 does have the CAF I believe. My question was whether I have to buy a separate product called MQ Client for NT and AIX, if I need to connect to the Queue on the mainframe thru JMS. As u had said, I do access the queue with JNDI settings. Thanx, Rathna.
  20. arunrathna

    Do u need MQ Client when using java?

    Hi, I use JMS (on NT platform) to access a queue on the mainframe. I am able to access the queue with just the JMS APIs. Then, where does MQ Client fits in here. Need I not buy a MQ Client piece seperately when I move into production?

Part and Inventory Search

Back
Top