The question: How do I print PDF documents with HTML DB?
The answer (maybe): PL/PDF
Looks like the folks at PL/PDF have some instructions on how to set it up in an HTML DB environment. For only $300, it seems like a good deal. It's not WYSIWYG, but the code for a complex master-detail report, which contains page breaks and headings on each page, is not that bad.
If you host your HTML DB site with Revion, PL/PDF is even included as a part of their package.
I have not tested this out yet, but am anxious to do so, as I'm sure it will come in handy!
The answer (maybe): PL/PDF
Looks like the folks at PL/PDF have some instructions on how to set it up in an HTML DB environment. For only $300, it seems like a good deal. It's not WYSIWYG, but the code for a complex master-detail report, which contains page breaks and headings on each page, is not that bad.
If you host your HTML DB site with Revion, PL/PDF is even included as a part of their package.
I have not tested this out yet, but am anxious to do so, as I'm sure it will come in handy!
Comments
The only problem is that you cannot conveniently buy it online, forced to use a Telegraphic Transfer form of payment.
I agree.
That was what I thought when I read about it in a forum thread.
For a little money you avoid the nitty-gritty and get things done.
Thanks,
- Scott -
Our similar problem was how to convert simply ascii-reports (generated to files in the operating system) to pdf-files.
Our approach to solution was
* use existing oracle reports server
* one report which makes a select * from the ascii-file using external tables
* within the db: utl_http to call the report via web and store the pdf-file into a blob or again back into the filesystem
(our issue was that we had no direct access to the file-system exception for utl_file).
.
BR,
Martin
You do have to write code to get things to work, so it's a bit abstract in that regards. Think of it as hand-coded PL/SQL web pages for PDF Reports...
There is a good chance that I will be using it for an upcoming project where PDF printing is a requirement.
You can download & try it for free, and there are plenty of helpful examples to get you up & running.
Thanks,
- Scott -
Question: can it be used with Oracle XE?
I believe that it's MUCH more than that, but I could be wrong...
Question: can it be used with Oracle XE?
According to the PL/PDF site, yes: http://plpdf.com/23-927.html
Thanks,
- Scott -
I generate my reports using PL/PDF which is then presented to the user in an Apex HTML region using an IFRAME to embed the report into the web page.
Works great. Looks great. Note that you will be hand-coding your reports - this is not some high-level report generator. But for me, this is exactly what I was wanting.
Something like... "Pass a URL/BLOB that provides a well formed HTML to PL/PDF and get a PDF document".
Rather than using an external service to do this I would like to use PL/PDF for this purpose.
Has anyonr tried anything on these lines??
I saw a free pl/sql package that generates PDF. That does the stuff without java.
see
http://reseau.erasme.org/PL-FPDF,1337
Thanks,
- Scott -