Batch Print PDF

Hello,
I was not sure which forum to post this in, so please forgive me if this is the wrong one.
We have a web site that allows our managers to login and fill out reports.  The data is used to create a PDF file using a utility called ASPpdf from persists.com.  Currently we store the pdf files in a folder and email certain ones when the document is created.
We now want to print them either as they are created or store them in a folder and have them printed at cetain times during the day.
I am trying to write a batch file that would be setup in the jobscheduler to run at specified times during the day. I also have found a little information about command line execution to print the pdfs, but that has always opened multiple instances of Adobe Reader X and left them open.
Does anyone have an idea how to do this?  If it comes down to purchasing another Adober product, we would not have an issue with that - I am lost at this point as to how to proceed.
Any help would be appreciated.
Thank you in advance,
George

I tried the following code that which comes directly from the Apex Stored procedure PRINT_PDF.
The APEX_UTIL.GET_PRINT_DOCUMENT function returns NULL.
declare
    v_filename varchar2(1000);
    v_pdf_blob blob;
pnum number;
begin
v_filename := 'TEST_' || to_char(sysdate,'yyyymmdd');
pnum := --Hidden from Post;
dbms_output.put_line('Security ID: ' || pnum);
wwv_flow_api.set_security_group_id(p_security_group_id=>nvl(wwv_flow_application_install.get_workspace_id,pnum));
v_pdf_blob := APEX_UTIL.GET_PRINT_DOCUMENT (
                                       p_application_id      =>  121,
                                       p_report_query_name   => 'QS_CERT_QUERY_TEST',
                                       p_report_layout_name  => 'QS_CERT_QUERY',
                                       p_report_layout_type  => 'xsl-fo',
                                       p_document_format     => 'pdf');
insert into printed_pdfs (filename, stored_pdf, record_created_By_person, record_created_on_date)
                  values  (v_filename||'.pdf', v_pdf_blob, 'Name', sysdate);
end;
Any idea on what is wrong or how to make it work.

Similar Messages

  • Can I batch print PDF files with Adobe Acrobat Reader X

    can I batch print PDF files with Adobe Acrobat Reader X?  I have tried from Windows Exploer (Windows XP) and it looks like the files are opening but they do not print.
    Pat

    Very strange!  What is your installed Reader version?
    Try disabling Protected Mode in Adobe Reader [Edit | Preferences | Security (Enhanced)].

  • A solution for batch print PDF documents

    Dear,
       I use a command line to auto print some PDF documents as below:
       C:\>AcroRd32.exe /h /t PDF_file_name printer_name
       the printing is no problem.
       But when I use the command line to print a large number of PDF files, there are a problem, for example:
       There are 3 PDFs that I want to print, they are 1.pdf, 2.pdf and 3.pdf
       I sent command one by one like below.
      C:\>AcroRd32.exe /h /t 1.pdf printer_name
      C:\>AcroRd32.exe /h /t 2.pdf printer_name
      C:\>AcroRd32.exe /h /t 3.pdf printer_name
      But the hard copy from the print are:
      first print: 1.pdf
      2nd print: 3.pdf
      3rd print:  2.pdf
      what can I do for this case, I want to get the output seq. will be 1.pdf, 2.pdf, 3.pdf.
      Thanks.

    KingPool's snarky response notwithstanding (he appears to have some financial interest in “pushing” sales of PrimoPDF), your need is real and your observations do correspond to the reality of printing. The fact is that when you use spooling under Windows, the application program actually can complete spooling of the file to the printer before that spooled output is ready to be actually transmitted to the device. The print process is a multiple step, asynchronous process.
    To absolutely force printing in an exact order as per your scenario, go to the printer's Properties and select the Advanced tab. The printer is probably currently set to Spool print documents so program finishes printing faster with either the Start printing immediately or the Start printing after last page is spooled option selected. Change that to the Print directly to the printer option and then press OK. This will force printing in the order that you specify. Note however, that this forces Reader to wait as the document is fully printed and then terminate. You should reset that spooling option when you are done with this batch printing operation to regain system performance.
    Alternatively, another approach you could try would be to hold the particular print queue before running your commands. Then, after ascertaining that all the print jobs are on the queue and ready to be printed, release the queue. The jobs should print in the order queued. And finally, if there still is a mis-ordering of the jobs, after holding the entire queue, put a hold on all the jobs, release the printer queue, and then release the jobs in desired order.
              - Dov

  • Is it possible to batch print .pdf AND .doc files together?

    I need to let users to batch print a set of files that includes both .PDFs and .DOCs. Since <cfprint> allows .PDF files only, what would you suggest?
    Thanks!

    el_sim wrote:
    Unfortunately, it's not an option because I need to allow users to batch print and I have no info about their network printer configuration
    That raises a large RED Flag that you may be misunderstanding the <cfprint...> functionality.  <cfprint...> can NOT print to a printer that is configured to the clients computer.  So if that is what you are looking to do, you need to be looking at Client side technology.  But be aware, that current, common, browser based web applications generally have very limited connections to client hardware.  If you are willing to get into Flex, Flash, Air (or another company's technologies) you could probably do more.  But HTML and JavaScript currently do not have much access to the hardware of a client computer.
    The <cfprint...> tag is designed to send a print job from the SERVER running the ColdFusion application to a printer connected to that server.  IF you are writing programs with no knowledge of the server network configurations (I.E. an application meant to be sold to various customers) this becomes much more difficult to do.  But if you are writing a CFML application to be run on a known network, which is what many of us do, then it should be pretty easy to know what printers are connected to the server running ColdFusion and figure out what capabilities those printers have.

  • Batch Printing PDF files in Sharepoint

    We are migrating our production documents into an existing WSS2.0 environment.  The documents are mainly .PDF files and I am trying to find a way to allow a user to select a subset of files within a view and once done, submit all of them to be printed. 
    I envision a Windows File Explorer window that a user could check only the files desired and then click a single print button to launch the batch print.  I have done some searching, but the the commercial tools I have found are very expensive.  Anyone
    know of another way to accomplish this need?

    Hi Vondie,
    I found a post in this thread may helpful for your issue.
    http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/8ce3dd94-ff2c-4c3c-ba85-f67b9dd2f2e8/
    It is suggested you to start by looking into the
    PDF Forms
    parser on Code project to get you started. Here is a list of open
    source pdf software for C# that might help you.
    Or try to post a how to bulk print PDF questions in the
    Adobe Online Forums.
    Thanks for your understanding.
    Lambert Qin
    TechNet Subscriber Support
    in forum
    If you have any feedback on our support, please contact
    [email protected]
    Sincerely,
    Lambert Qin
    Posting is provided "AS IS" with no warranties, and confers no rights.

  • Batch Printing PDF as booklets

    Hello Everyone!
    I really need some help. I am trying to batch print reports cards. The report cards need to be printed as a booklet (A3 paper folded). I created a new BATCH SEQUENCE and this works except for one small problem - when the reports print, all four pages are printed and folded just as I need them to be, but then, for some reason, pages 2 and 3 are printed again. This is frustrating as it is a waste of paper.
    I really don't know how to fix this problem. Can anyone help!
    Nadine :))

    Thanks or your quick reply!
    I went to the 'Advanced' menu then chose 'Document Processing' then 'Batch Processing'. I then used the 'Print All' batch sequence. And everything was printed, but with pages two and three printed twice.
    I assume that when I choose the 'Print All' option, the last settings that were chosen on the printer will be used. This is good because I want to print my reports as a booklet.
    Thanks. I hope that you have a solution for my problem.
    Nadine :))

  • How To Batch Print PDF Files

    Hello Friends.
    I am using Apex 4.1 on Windows 7. My database is Oracle EE 10.2.0.5 on Solaris and OAS as the app server (and so, am using mod_plsql).
    I wrote an application in which I use the PLPDF package to generate PDF screens. Initially, the last few commands in my code looked like:
    owa_util.mime_header('application/pdf',false);
    htp.p('Content-Length: ' || dbms_lob.getlength(l_blob));
    owa_util.http_header_close;    
    wpg_docload.download_file(l_blob);The variable l_blob is the PDF blob object generated by PLPDF. The PDF is being formed from a cursor for loop further up in my code (not displayed here) that is SELECTing from a table. The above code displays the generated PDF on to a popup page in my application. At that point, the user can click the "File->Print" menu to send the displayed PDFF to the default printer.
    However, my requirements are that I may have multiple PDFs generated from my for loop and would like to have each of these PDFs sent to the default printer is one go rather than force the user to have to display and print each one separatlely.
    And so I modified the above code so that the PDFs created by the PLPDF package are being inserted into an Oracle table rather than displayed in a popup page.
    Would any one know how to send each of the PDFs stored in the table to the default printer automagically, perhaps my issuing a ctrl+p command or some such thing.
    Thanks in advance for any help/code/advice.
    Elie

    I tried the following code that which comes directly from the Apex Stored procedure PRINT_PDF.
    The APEX_UTIL.GET_PRINT_DOCUMENT function returns NULL.
    declare
        v_filename varchar2(1000);
        v_pdf_blob blob;
    pnum number;
    begin
    v_filename := 'TEST_' || to_char(sysdate,'yyyymmdd');
    pnum := --Hidden from Post;
    dbms_output.put_line('Security ID: ' || pnum);
    wwv_flow_api.set_security_group_id(p_security_group_id=>nvl(wwv_flow_application_install.get_workspace_id,pnum));
    v_pdf_blob := APEX_UTIL.GET_PRINT_DOCUMENT (
                                           p_application_id      =>  121,
                                           p_report_query_name   => 'QS_CERT_QUERY_TEST',
                                           p_report_layout_name  => 'QS_CERT_QUERY',
                                           p_report_layout_type  => 'xsl-fo',
                                           p_document_format     => 'pdf');
    insert into printed_pdfs (filename, stored_pdf, record_created_By_person, record_created_on_date)
                      values  (v_filename||'.pdf', v_pdf_blob, 'Name', sysdate);
    end;
    Any idea on what is wrong or how to make it work.

  • Batch-printing many PDF-files

    Hi,
    In our workflow we have hundreds of PDf-files in many different subfolders we need to print on a monthly basis. We COULD print them manually... but that would be expensive, time-wise. So I figured I would make an action in Acrobat Pro X that would do the trick.
    And it works... except for one thing - the "Add folders" adds ALL supported files in the sub-folders, which makes it a bit useless for our purposes. I can't see any way to sort by filetype or any way to tell it to only add specific extensions.
    Is there any easy way to do this? I'm open to scripting - perhaps Illustrator might be better for this purpose?
    BR
    Thomas

    I do this daily...If you have Adobe 9 or older the process is alot eaiser for some reason Adobe made this feature more difficult, y? i don't know but here you go...
    Acrobat X
    Acrobat X replaces "Sequences" with "Actions", and unfortunately doesn't include a built-in "Print All" Action. So you will need to create one.
    1. Choose File > Action Wizard > Create New Action
    2. Fill in the "Create New Action" dialog box as shown below.
    3. Click the Save button.
    4. Give the Action a name, such as "Print" and click the Save button.
    5. Now each time you want to batch print PDF files with Acrobat X, just File > Action Wizard > Print, and follow the on-screen prompts.

  • I can't batch print to any printer on any of my iMacs

    I have 5 iMacs 2.4 GHz Intel Core 2 Duo,  4 GB 667 MHz DDR2 SDRAM, on 10.10.2 Yosemite. Before this week, I could open a PDF file, select any amount, 1-1000, drag into my print queue and all my files print, in correct format, on my printers. I use this method of printing throughout each day for my work. I have files of over 500 PDF drawings that I need in some cases. Opening each file up and going through the printer process like that is way too tedious and pointless imo. Please don't offer me an app that can do this for me, Adobe Reader has worked flawlessly up till now. Now, after I send my PDF's to queue, my printers start spooling up, then I get this message: cgpdftops quit unexpectedly. I have NEVER seen this error. I have been able to batch print with no issues at all for the past 2-3 years. It makes no sense that all of a sudden, it stops working.
    I have already done the following:
    1. Reinstalled all printers and drivers.
    2. Restarted all iMacs after reinstallation
    3. Updated Adobe Reader and Java SE6
    4. I have spent 45 mins on the phone with Apple Care Customer Support.
    5. I have booted into Safe Mode and managed to batch print PDF's of a web page I saved, as the Apple Care rep told me to do, but NOT PDF's from Adobe Reader. Why she thought saving a web page as a PDF was the same as what I do for work, I have no clue, but her method didn't solve a single thing.
    All of my PDF's come through in Adobe Reader. That is how all the GC's send me ll of my drawings and plans. If anyone can please provide some insight for me on how to get this issue fixed, that would be greatly appreciated.
    The 3 main printers I am attempting to print to are:
    1. OKI C6100 in Standard 8.5 x 11 Letter    
    2. HP LaserJet Pro 200 in Standard 8.5 x 11 Letter
    3. Oce Plotwave 350 in 18" x 24" Arch C Wide Format

    Jintymcginty61,
    there’s not enough information yet to answer your question. Which version of OS X is installed on your MacBook Pro?

  • Adobe Reader PDF Batch Print

    Question:
    Is it possible to build a batch printer using the SDK and libraries
    available with Adobe Reader?
    Environment:
    Win XP and Win 7
    Client machine install
    Adobe Reader - required version can be installed
    VB6 or C# .NET
    Experience To Date:
    The ActiveX control works fine for loading/displaying a PDF, and
    a single file with any number of pages can easily be printed via
    automation.  The print process does not cause the application
    to pause until the printAllFit method completes.  The LoadFile
    method on the next file returns True even if the current file is
    still being printed and, therefore, the next file does not load.
    General Comments:
    Anybody else find it a bit odd that the SDK documentation is
    not a single, down-loadable PDF file?

    I do that in Perl
    (but it is no problem to translate the code into VB or C++)
    http://blogs.perl.org/users/rtillian/2011/10/batch-printing-on-command-line-via-print-driv er.html

  • How to batch print multiple PDFs in Mac OS X?

    Does anyone know of any new software that allows one to batch print multiple PDF files with a print dialogue for the first file, followed by dialogue-less printing for the rest?
    I work for an architect's firm and we often find ourselves printing dozens of A1 PDFs, going through the print dialogue window for each file.
    We used to be able to batch print when Preview.app could open multiple PDFs in one window; it lost this capability in a regression when it gained bookmarks and we've been living in batch print stone age ever since.
    (A desktop printer doesn't work by the way)

    Lamont E wrote:
    Open one of the PDFs in Preview then drag the rest of the files into the sidebar. Print the resulting file. If you don't want to save it as a single PDF just select 'Don't Save' when you exit.
    Wow! I've been asking this question repeatedly for a couple of years now and you're the first person to mention this. Thanks a lot. There will be some happy campers in our office, I tell ya.
    I missed it because all the large PDFs we create include a table of contents and you have to switch to thumbnail view before you can drag and drop additional PDFs.
    With the type of files we produce It takes 30 seconds or so to add 8 files together, so it's not ideal but it's a lot faster and more convenient than Acrobat Pro or printing each file separately.
    Another option is to open the printer window and drag all the files into it. They will print automatically with no dialog box.
    This doesn't work because you can't choose the size of paper you want to print to.
    Thanks again, your first post too.

  • Batch script to print PDF files to press quality

    Hello, I'm looking for a way to print PDF files to the Adobe PDF driver with "Press Quality" setting.   Ideally I could also save any file attachments first and then reattach them after printing to new files.
    I've been experimenting with the batch sequence feature but I am not getting very far.   Are there any sample scripts that do something similar to this?   I appreciate any guidance you can offer.
    Thanks
    LLL

    No, I do not have access to the original files that went into making the source PDFs.
    I've looked at PDF Optimizer but it does not shrink the file size nearly as much as printing the file through the Adobe PDF print driver with "Press Quality" setting.   I suspect this has to do with font consolidation.   PDF Optimizer seems to let you unembed fonts from the file but that's not what I'm looking for.  I need to have all fonts embedded.
    I appreciate the feedback.  Anyone else have ideas here on the original issue?  Thanks.

  • Desktop Batch Print Alias for PDF?

    I often use a desktop alias to batch print files by dragging them directly from Finder to the printer's alias. I am wondering, is there a way to set up a similar alias for OS X's print-to-PDF feature?
    I want to drag and drop a batch of files onto an alias and have it print them as PDF's.
    Thanks!

    With your Desktop Printer used for batch printing, in the Printer Options, create a profile, where you select in Output Options Save as File: Format PDF, and save it.
    Then select that profile prior to the process.

  • Is there a way to automatically add the filename in the page header when batch printing text files directly from finder?

    hello, i have 80 text files (docx). the finder preview works great and i can open them in pages.
    I need to batch print them from finder:
    I select all the documents > drag on printer's icon> printer puts them in queue ( after an on the fly pdf conversion)  ad starts printing.
    BUT
    i need the filename printed on each page  ( in hearder or footer) , not only the regular text content.
    Do you know if there is a workaround?
    thank you
    Tullio

    If that section has an ID or NAME attribute then you can add that to the URL (#anchor) that you want to reload.
    See View > Page Source
    https://support.mozilla.com/en-US/questions/774792#answer-128100

  • Batch lock PDF files

    We mostly have Acrobat 9 or X standard licenses and few Pro 9.  What I'm looking for is the ability to batch lock PDF files before we post them to consultants or partners.                   
    I know you can lock each PDF via Standard.  Pro gives you the ability to batch do it but it makes no sense to upgrade 40 licenses just for that feature.  Last resort option would be to create multipage PDFs and lock that vs. the individual but I'd like the ability to do the individual.
    The files are being locked down to print at 150dpi only.  That way the PDF's can't be imported into Illustrator and saved out to a CAD file.

    Hello
    We look exactly for the same. A Batch Script to have multiple files merged in one PDF. Can you please also send me a PM for further Information?
    Thanks a lot
    regards
    Stefan

Maybe you are looking for

  • Mirror your mac to TV with AppleTV

    I'm looking for a way to mirror whats on my macbook pro on to my TV using AppleTV. I know that you can use airplay with different applications but was wondering if you can display your monitor.

  • OWB Mapping and Sqlloader error.

    Hi All, OWB Config Details is as follows: Oracle 9i Warehouse Builder Client: 9.2.0.2.8 Oracle 9i Warehouse Builder Repository: 9.2.0.2.0 I developed a mapping which involves a source text file delimited by comma with following structure. Deptno,Dnam

  • Oracle BPEL Java Client API: Reading Configurations dynamically

    We have a requirement to use Oracle BPEL Java client API to control the BPEL instances at the runtime, from an ADF BC Application. is there any possibility to read the configurations/properties that are required to look up (using 'oracle.soa.manageme

  • Can't generate thumnails from iPhoto videos in iMovie 11

    I opened iMovie 11 a little while ago and it asked if I wanted to generate thumnails Now or Later from the videos in iPhoto.  I clicked on the "Later" button.  I have been using iMovie for at least 5 years and have always clicked on the Now button as

  • Several problems after upgrading from ios 5.1 to ios6?

    Hi all, I am using an iPhone 4 and upgraded to ios6 (mistake or not?) Here are some several things that I noticed after the upgrade: 1) my battery drains out much faster than before 2) problems connecting to wifi at the office and major problems at h