Pdf file merging in Apex 4.0

Hi guys,
is there any way of merging different Pdf files together in Apex 4.0? It seems the BI Publisher can generate PDF files but how about merging them together to form 1 single file? Is it possible with any particular plugin?

If you have a version of the database that has java loaded, then You can run the java commands with a pl/sql wrapper....
Get your mind out of the gutter! Grab mine while you're there, please.
Thank you,
Tony Miller
Webster, TX

Similar Messages

  • Don't know how to store/show image or pdf files easily in apex app

    Hi,
    I always want to put a blob column in my table and store some images or pdf files, like drawings for an item, but I found it hard to do, I have viewed the sample app by apex 4.0, but I cannot understand the code.
    Is there a simple and intuitive way of storing/showing pdf files in an apex app?
    I wish Oracle could make an easier wizard for apex on that issue.
    just make storing a file as simple as in MS access, or email attachment, etc.
    no headache coding involved.
    that will be great!
    that will also do Oracle good, since images will use up a lot of spaces, maybe Xe won't be enough, the will consider an upgrade.

    Yawei,
    there is a chapter about BLOB support in the application builder users guide: http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/advnc.htm#BCGGJHEF
    Maybe this helps for a start, even if it isn't as easy as in MsAccess but this may be due to the fact that APEX is a web application and Access a rich client.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

  • PDF files merging on print command from windows desktop

    Hello,
    I have an application  from which I want to genarate PDF documents. The application is installed on my personal desktop. To test the process, I downloaded the Adobe PDF converter driver (free download version) and installed the same on my PC. I used control panel to change my deafult printer settings on my PC as this new PDF converter driver.
    Now I logged to my application , where I can select the list of documents to be printed. The application always uses default printer of the PC on which its installed. Hence all the documnets got created as individual PDF files on my desktop. This was great.
    However my ultimate requirement is when I select a list of documents using my application and give it for print at one shot, all the documents should come as a single PDf file rather individual files. Or else you can define my requirement as any no of dcouments given for print at one go (or one session) must be generated as 1 single PDF file. Is it possible to adjust the PDF converter driver in some way to accomplish this
    I made further investigation into this and found Adobe Acrobat pro 9 is a good software to generate PDF. Will purchasing this and installing this s/w solve my current problem. Please advise.

    Hi Leonard,
    Thank you very much for your prompt reply. The answer has not solved the problem yet. My users don't want to manually merge the files. They want it to happen automatically.
    The application which prints documents is a simple MS access database. This is available on users personal desktop. As soon as the user opens the MS access, it is programmed in such a way that, the access database runs as a program. It uses DSN to connect to the sybase database and get the details of documents that are pending for print.
    At this point MS accesses database starts an itretive process, fetches the data from sybase , calls the correct report template in MS Access , populates it and prints the report using the default printer on which the database resides. Thus it prints the document one by one. By setting the default printer to Adobe PDF converter, we were successful in creating PDF documents rather than printing to paper , but the disadvantage was each document got printed to one file each.
    The whole process is coded as VBA module of MS access. my question is by using an API from Adobe SDK, will I be able to make changes in the VBA code of MS access database so that all files requestd for print comes out as a single PDF file.

  • Text created by Typewriter in a PDF file merging into the original file

    When I use typewriter tool to add text onto a PDF file, is there any way to make the text boxes NOT selectable. Basically I want to know if there's a way to merge the text boxes to the original PDF file.

    Flatten the PDF (Acrobat supports form field flattening and annotation (comment / markup) flattening.
    Discussed in the application Help.
    Be well...

  • Display PDF file in the Apex query report using HTML Expression

    Hi Folks,
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    <img src="#OWNER#.proc_display_document?p_id=#file_id#"/>
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) as
    s_mime_type varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as" 
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');      
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

    Hi Dimitri,
    I hope you can see HTML Expression code now. Thank You for responding.
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    [!--  img src="#OWNER#.proc_display_document?p_id=#file_id#" ]
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) **
    mimetype varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as"
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

  • How can I merge multiple .pdf files in Mavericks?

    I would like to be able to merge several multipage .pdf files. How can I do this using Preview in Mavericks?

    How to combine PDF documents using Preview

  • How do i merge two pdf files into one

    How do i merge 2 pdf files into one.

    Open up the first pdf in Preview
    Then from Menu
    select from Edit Menu
    Select Insert (your choice of)
              Page from Scanner
              Page from File (select your PDF file)
              Blank Page
    You can then save as your first file or rename it

  • How do tou take multiple .pdf files and merge them into one?

    I havefour different .pdf files that I'm trying to merge into one file. How can I do this?

    File>Create PDF>From File.
    Please post followups in the Acrobat forum.
    Bob

  • How do you merge multiple .pdf files into one?

    I have four different .pdf files that I need to merge into one. How can I do that?
    Thanks in advance for your help.

    Do not reply there... but did you read the answer to your previous (wrong forum) question?
    http://forums.adobe.com/thread/423012?tstart=0

  • How do i merge multipule pdf files into one file?

    how do i merge multipule pdf files into one file?

    One method:
    Open Acrobat XI Pro - use this "click path":
    File :: Create :: Combine Files into a Single File
    Be well...

  • How do I merge 2 pdf files into one file?

    How do I merge 2 pdf files into one file?

    I use PrimoPDF (free download) to create pdf files. To merge two docs/pdfs/etc., print the first to a new pdf using Primo. Close it, then print the second and save it to the same new pdf. Primo gives you the option to 'append' or 'overwrite' the original file. By using 'append', you are just adding it to the back of the existing file. You can do this repeatedly to resort or combine existing pages into a new pdf.
    Also, I'm using Adobe Reader X.

  • Is there a way to merge Static PDF files and PDF Forms

    Hi All,
    The issue I am facing is this: 1200+ PDF forms that employees
    will need to sign. The docs are being created in MS Word, and all
    have a standard signature block. We have prototyped using LiveCycle
    Designer 8 to add fields to static PDF files (print Word files into
    Acrobat, import into LiveCycle and paste in fields) but this is
    pretty labor-intensive to use with a minimum of 1200 forms per
    quarter.
    The employee forms go into a CF8/Oracle library app (stored
    as BLOBs) and served up for 7,000 or so employees to sign. Posted
    data goes back into database.
    Here is the issue:
    Does anyone know any way to use some combination of cfpdf /
    cfpdfform / cfdocument that will allow us to create ONE generic
    signature block form, 1200 static PDF files, and merge them on the
    fly?
    <cfdocument> apparently does not allow PDF data to be
    included with a <cfpdfform>, as I have tried outputting PDF
    variables, toBinary(PDF variable), PDF served by <cfcontent>
    and various other combinations.
    (If the non-form data were HTML, we could easily output in a
    <cfdocumentsection> of the cfdocument, and add the
    <cfpdfform source="#genericForm#" action="populate"> and be
    done with it. But, we can't.)
    <cfpdf action="merge"> with a combination of a static
    PDF file and a populated form results in a flattend PDF file with
    no form data.
    I am acutely aware that LiveCycle 8 uses the XFA schema, and
    regular PDF documents use a different schema. And, this may
    prohibit what we want to do.
    If anyone has experience with CF8 PDFs and PDF forms, or has
    any helpful thoughts, I would be appreciatively gross. Needless to
    say, this is a six month project that must be live at the end
    November.
    Thanks!
    Jim Bates
    Verizon Business

    As I mentioned on the other thread, the forms need to be
    flattened. CFPDF cannot flatten LiveCycle forms, only Acrobat
    Forms. The suggested solution was to use LiveCycle ES
    http://www.adobeforums.com/webx/.3c052176

  • PDF file size after merging

    I use Preview to merge PDF files. I have noticed that the resulting files are a lot larger than the sum of the single PDFs. An example: I have 3 files with the following file sizes: 70 KB, 120 KB, 1.3 MB. The resulting PDF after merging those files in one is over 5 MB.
    Does anyone know why this is the case and how I can avoid it?
    Any help is highly appreciated!
    Tobias

    Yes, I also have this problem.
    Several PDFs with a combined size of ~13 MB, when merged are over 40 MB, making it unsendable by e-mail.
    Very annoying!
    This results from using Preview's "drag and drop" onto the sidebar to merge PDFs. DOn't know why.

  • While trying to merge pdf files which are having the version 1.4 throws err

    As per my business need i need to merge some pdf files. Among those files some are having the version above 1.4. I am using the api "oracle.apps.xdo.jar ".
    While trying to merging the pdf files its throwing the exceeption like
    " oracle.apps.xdo.XDOException: oracle.apps.xdo.template.pdf.exception.FatalException: The template seems to be in either corrupted one or newer version than PDF1.4 ".
    If all of the files are having the below 1.4 version then working fine. But any one of the file have above 1.4 version then it is throwing the above error.
    Please can i have the solution for this problem.

    Thanks for the response.
    Sorry.there is no option to feed again into <1.4 version. cause those documents are already existed in database and i have to use the same documents to merge.
    So is there any alternate solution on the same .

  • Error message when trying to merge multiple files into single PDF file

    Greetings! I'm on windows 7 professional, adobe 9 pro and a 64 bit PC. When I try to merge several PDF files from the same folder into a single PDF file I get this error message "You can choose multiple items only if they are all located in the same folder" - Please help! Thx.

    The product is Acrobat, not Adobe. That being said, I suspect you may only be running AA 9.0 and that may be the issue. If you have not done the updates to the 9.5.5, you probably should. That may fix the issue you are having, particularly since you mentioned a 64-bit system.

Maybe you are looking for

  • ITunes Match won't upload new songs.

    iTunes Match gets stuck "sending information to iTunes" when I add new songs to my library.

  • Autocad to Acrobat PDF time out?

    I have atocad 2008 LT, Acrobat 9 standard on a windows 7 machine.  Printing to pdf from autocad was no problem until recently...  now, after maybe 20 prints, it times out and no longer allows me to print to pdf.  I have to completely restart the mach

  • Error during Production order settelment

    I am getting error while settlement of production order " GL Account required valid Tax code", waiting for your advice. Thanks

  • Encore Error: CGOPGrouper.cpp

    For some reason a project that used to burn without problems to DVD now gives the error "internal software error:.Vobulator\TitlePlanner\CGOPGrouper.cpp line 297" and aborts. Any suggestions? Encore reports no problems with Check Project. WinXP Pro 3

  • How to remove greyed out ".local" suffix from name in mac 10.8.3

    Hi. Ive got a really really annoying problem. I have to fix this. Right now im running OSX 10.8.3 and when i go on airdrop, my icon displays my account picture and below that it says "Other people in AirDrop can see your Mac as localhost when their c