Quantcast
Channel: Comments on: Generating a PDF-document with some plsql: as_pdf_mini => as_pdf3
Browsing all 84 articles
Browse latest View live

By: Jeff

I tried the following code: begin as_pdf3.init; as_pdf3.query2table(‘select rownum c1, rownum*2 c2, – rownum c3 from dual connect by level as_pdf3.tp_headers( ”Try”, ”Something”, ”this” )’);...

View Article


Image may be NSFW.
Clik here to view.

By: Anton Scheffer

This blog removes things , I’v updated my previous comment

View Article


Image may be NSFW.
Clik here to view.

By: Jeff

Thanks. Now works Only one more question. Can I define the format (font/style/color) of the column headers ? Something similar to this image in the as_pdf_mini page:...

View Article

By: scott

Anton, i am using as_pdf3.get_pdf to create pdf report and that’s working well but always its creating extra blank page at the bottom of each report always extra blank page. i tried to RTIM(LAST FIELD)...

View Article

By: scott

Anton, A question regarding as pdf3. I tried the title/footer text and works well but suppose i want to display title something changing like “THE EMPLOYEE ID#X02737-BB001″ which is changing for each...

View Article


By: Anton Scheffer

use as_pdf3.put_txt

View Article

By: Anton Scheffer

No idea what RTIM(LAST FIELD) does, but I would say, don’t add a blank page and you don’t have to remove it.

View Article

By: SCOTT

Anton, Thanks so much man. Just one more question i created a pdf report and all is great but how do i set it to print to 8.5 X 11 because without changing the printer settings its cutting off and...

View Article


By: Anton Scheffer

as_pdf3.set_page_format( ‘LETTER’ ); as_pdf3.set_page_orientation( ‘PORTRAIT’ ); or as_pdf3.set_page_size( 8.5, 11, ‘in’ );

View Article


By: Senthil Murugan

This is very useful tool, if oracle takes this into next level, it will be great help for the entire development community. Thanks for Anton Scheffer and Team

View Article

By: Ruben

Hi there Anton, I have a quick question. I have created a pdf file and it works great but I noticed that the width of all the columns is fixed. Can you let me know how to fix that problem so my query...

View Article

By: Anton Scheffer

@Ruben “the width of all the columns is fixed”: Not true “fix that problem”: It’s no problem “I don’t want to have a huge empty space”: Then why don’t you use the parameter p_widths?

View Article

By: francesco.patea@bticino.it

Hi Anton, I use last version of your package, but now I try to pass at AS_PDF3. So I’ve a problem during the spcification of set_page_proc. In this section I need to insert a variable defined in pl/sql...

View Article


By: Anton Scheffer

@francesco.patea@bticino.it That’s because you’re put_txt is part of the input parameter for as_pdf3.set_page_proc, it’s just part of a string. Use …. as_pdf3.put_txt( 350, 15, ‘ || v_test || ‘ ); ……..

View Article

By: DarkZoro79

Anton I hope you get my comment this time. I’m trying to post this 3 times already and nothing. I want to be able to set the width of all the different columns that I use on my query (report) but so...

View Article


By: Anton Scheffer

This works for me: declare t_query varchar2(1000); t_rc sys_refcursor; begin as_pdf3.init; t_query := ‘select 1, 2, 3, 4, 5 from dual’; as_pdf3.query2table( t_query ); open t_rc for t_query;...

View Article

By: francesco.patea@bticino.it

I Anton, thanks for your reply. I Improve Your suggest but doesn’t work; in the page I see the string || v_test || . Can You Help me to found the error? I attacch my procedure thanks a lot Francesco...

View Article


Image may be NSFW.
Clik here to view.

By: Anton Scheffer

That’s because you use q’~ to start a string as_pdf3.set_page_proc( q’~ begin as_pdf3.set_font( ‘helvetica’, 8 ); as_pdf3.put_txt( 10, 15, ‘Page #PAGE_NR# of “PAGE_COUNT#’ ); as_pdf3.set_font(...

View Article

By: francesco.patea@bticino.it

HI Anton, Thanks a lot, now it’w work fine! So I’ve a question for you; if the variable v_test contain a sting with quota charater the entire block is not displayed because the syntax is in error. Have...

View Article

By: Anton Scheffer

Try escaping the quote, i.e. put two quotes in it.

View Article
Browsing all 84 articles
Browse latest View live


Latest Images