Split file pdf  by sheets

can i split a pdf file by sheet who contains customers with one or two sheets by customer ?
example one pdf file only one sheet by customer et an other pdf file only two sheets by customer

Did you try to extract the Pages?
[signature deleted]

Similar Messages

  • Hello.  May I ask:  I am using Acrobat 6.0.2, and having trouble formatting a PDF created from multiple (jpeg) files.  Each page is formatted to A4 size, portrait.  But when I create the PDF, each sheet appears as tiny, in the middle of a huge white page.

    Hello.  May I ask:  I am using Acrobat 6.0.2, and having trouble formatting a PDF created from multiple (jpeg) files.  Each page is formatted to A4 size, portrait.  But when I create the PDF, each sheet appears as tiny, in the middle of a huge white page.  I cannot seem to find any controls to adjust this.  Any advice appreciated.

    Thanks CtDave, for the further info.  Unfortunately, those suggestions are not working, which is strange.
    ....Until last week, I used to make multi-page PDFs straight from Photoshop: File > Automate > Make PDF.  One simply choses the files, orders them, and creates a PDF.  (Resolution doesn't matter; 300 DPI is no problem.)  However, my new Photoshop CS5 does not have the option in Automate.
    What I've done, seeing as Acrobat is letting me down, is use Bridge (new to me) to create the PDF.  It worked without a problem, but seems like more work than the old PS method.  I will download a newer version of Acrobat to see if that makes any difference.
    .....Also, thanks Test Screen Name:  I agree with you that jpeg is irrelevant, and that one can make a PDF from Photoshop (Print > Save As - pdf).  But that only works for SINGLE PAGE pdf, not multiple pages as far as I can tell.
    Kind regards,
    Prince Nuada

  • How do I split a pdf file when the file size is too large?

    How do I split a pdf file when the file size is too large?  Thanks!

    With Adobe Acrobat.  It can also optimize your document to make the size smaller.

  • Splitting the Pdf file

    Hi,
    How to split the pdf file as chapter?. (or) splitting the pdf file as pages?
    Is any packages in java?.
    can u please tell me.
    Thanks,
    nithi

    http://www.lowagie.com/iText/

  • How can I Split the PDF File into different pages?

    Hi,
    My requirment is to split the pdf file , which is obtained by using FM "convert_otf" , into seperate PDF file for each employee data(PERNR).
    Please suggest me the way to slipt the PDF file that has to be downloaded into the presentation server.

    Hi,
    Ok, looking at that programm didn't actually help me very much to understand what's going on, or where you have the CONVERT_OTF call... Regardless, if the suggestion by Raymond is not feasible in your scenario, the thing I'd try to do is - splitting the spool (OTF) contents before calling CONVERT_OTF into individual documents (feeding it to convert FM piecemeal)... The link to OTF format and commands documentation is here.
    Again, it's difficult to give a good algorithm without knowing the exact OTF contents (could you perhaps somehow export the display of spool in RAW format and attach here?) but it would boil down to approximately following:
    1) set the &first_page per PERNR = 1;
    2) run through OTF lines until the &end_page for PERNR has been identified somehow (hopefully there are Begin/End Form OTF commands '//' in that spool... and they correspond to the split of spool you need...);
    3) extract the otf contents from &first_page to the EP command of &end_page into separate OTF itab and, if necessary, add // (End of form) command at the end of itab;
    4) call CONVERT_OTF on the table and download;
    5) set the &first_page per PERNR = &end page + 1;
    6) repeat from 2) until end of spool OTF data
    Something like that... Depending how the Sapscript translates into OTF, you may also need to prepend a few commands found at the very beginning of the spool to each extracted invividual OTF document...
    I Hope you can get the gist of what I'm suggesting... splitting OTF is definetly easier than trying to split PDF, I feel. It's not ideal solution, because - what if the structure of OTF contents you would be realying on changes for some reason..?
    cheers
    Janis

  • How can I split a pdf file into smaller files using Acrobat XI

    How can I split a pdf file into smaller files using Acrobat XI?

    Hi laforcej
    Open the PDF In Acrobat ...
    Go to Tools -> Pages -> Extract
    Now Select the Page Number you Want to Extract and Save them

  • How can I create a PDF contact sheet of photos in finder

    I'm trying to create an automator workflow/action (or service) that will allow me to select a set of photos in the finder and then create a PDF contact sheet that will include the Photo filename. I know that I can select photos and open in preview, but these do not include the filename with the photo in the saved PDF.
    I'm a newbie with Automator, but i gave it a try myself.
    In the Automator PDF Library, there is an action called "New PDF contact sheet", however I can't seem to be able to get it to work. I dragged that action to the workflow and then added "Get Selected Finder Items" before that.
    It appears to run it--an "application"/window appears titled "MakePDF" and it appears to run through the selected photos. However, at the end (after it asks for the file name to save it with), it says that "The action “New PDF Contact Sheet” encountered an error--check the actions properties and try running the workflow again".
    What am I leaving out of the workflow?

    There is a bug in the *New PDF Contact Sheet* action in that it is looking for the Leopard version of a file that moved and changed in Snow Leopard.
    Snow Leopard has a newer version of a support application MakePDF.app in the */System/Library/Image Capture/Automatic Tasks* folder, but as mentioned the *New PDF Contact Sheet* action seems to still require the older version of the application, which in Leopard is located in the */System/Library/Image Capture/Tools* folder. If you have access to a Leopard installation, you can copy the MakePDF.app from Leopard and place it into the same location in Snow Leopard (/System/Library/Image Capture/Tools) - this will get the action working again.

  • Splitting a PDF with iText

    Hi,
    I'm trying to split a pdf into multiply pdf files. One pdf perbookmark.
    Can anyone give any pointers?
    I've got the bookmarks (via the outline) (they are bookmarks within a bookmark, thats why I go two levels in). But I've just got lost trying to find the pages, and write them out.
    Thanks
    Mike
    import java.util.*;
    public class PDFSplit {
        public static void main( String argv[] ) throws Throwable {
         PdfReader reader = new PdfReader("test.pdf");
         PdfDictionary dic = reader.getCatalog();
         PdfObject o = dic.get( PdfDictionary.OUTLINES );
         PdfDictionary outline = (PdfDictionary)reader.getPdfObject( o );
         PdfDictionary first = (PdfDictionary)reader.getPdfObject( outline.get( PdfName.FIRST ) );
         PdfDictionary ff = (PdfDictionary)reader.getPdfObject( first.get( PdfName.FIRST ) );
         while( ff != null ) {
             String title = ff.get( PdfName.TITLE ).toString();
             System.out.println( title );       
             PdfObject next = ff.get( PdfName.NEXT );
             if( next == null )
              ff = null;
             else
              ff = (PdfDictionary)reader.getPdfObject( next );
    }

    Tis OK, worked it out, but I do feel as if a little to much magic is keeping it together....
    (very ugly code follows)
    import com.lowagie.text.*;
    import com.lowagie.text.pdf.*;
    import java.io.*;
    import java.util.*;
    public class PDFSplit {
        public static void main( String argv[] ) throws Throwable {
         PdfReader reader = new PdfReader("test.pdf");
         PdfDictionary dic = reader.getCatalog();
    reader.consolidateNamedDestinations();
         PdfObject o = dic.get( PdfDictionary.OUTLINES );
         PdfDictionary outline = (PdfDictionary)reader.getPdfObject( o );
         PdfDictionary first = (PdfDictionary)reader.getPdfObject( outline.get( PdfName.FIRST ) );
         PdfDictionary ff = (PdfDictionary)reader.getPdfObject( first.get( PdfName.FIRST ) );
         int size = reader.getNumberOfPages();
         int start = 1;
         String title = ff.get( PdfName.TITLE ).toString();
         PdfObject next = ff.get( PdfName.NEXT );
         if( next == null ) ff = null;
         else ff = (PdfDictionary)reader.getPdfObject( next );
         while( ff != null ) {
             PdfArray a = (PdfArray)reader.getPdfObject( ff.get( PdfName.DEST ) );
             PdfDictionary page = (PdfDictionary)reader.getPdfObject( (PdfObject)a.getArrayList().get(0) );
             int end = size;
             for( int i = 1; i<size;i++ ) {
              if( page.equals( reader.getPageN(i) ) ) {
                  end = i;
                  break;
             System.out.println( end );
             Document document = new Document( reader.getPageSizeWithRotation( 1 ) );
             PdfCopy  writer = new PdfCopy( document, new FileOutputStream( title + ".pdf" ) );
             document.open();
             for( int i = start; i<end; i++ ) {
              System.out.println( i );
              PdfImportedPage cpage = writer.getImportedPage( reader, i );
              writer.addPage( cpage );          
             PRAcroForm form = reader.getAcroForm();
             if (form != null)
              writer.copyAcroForm(reader);
             document.close();
             title = ff.get( PdfName.TITLE ).toString();
             start = end;
             next = ff.get( PdfName.NEXT );
             if( next == null )
              ff = null;
             else
              ff = (PdfDictionary)reader.getPdfObject( next );
         Document document = new Document( reader.getPageSizeWithRotation( 1 ) );
         PdfCopy  writer = new PdfCopy( document, new FileOutputStream( title + ".pdf" ) );
         document.open();
         for( int i = start; i<=size; i++ ) {
             System.out.println( i );
             PdfImportedPage cpage = writer.getImportedPage( reader, i );
             writer.addPage( cpage );          
         PRAcroForm form = reader.getAcroForm();
         if (form != null)
             writer.copyAcroForm(reader);
         document.close();
    }

  • I generate file (PDF, HTML, etc) the report is empty but I run in paper

    Hi
    I use oracle Report10g
    When I generate file (PDF, HTML, etc) the report is empty but I run in paper design show data, the report in the paper design show many pages, when generate file show only the information of the margin in the main seccion and the body is empty,
    Thanks

    Thanks Daniel for pointing that out.  Though you answer is helpful but I am not sure if that is what I would want to do.
    The link you provide for csv says "For each report there's an _report.xdo file that contains the XML structure of the report... "   It suggests I modify the .xdo file for each report.  I currently have 16 reports.
    Does it mean I modify the .xdo file for all 16  and what happens if someone creates a 17th report ?
    Also, what if I run the same report using different input parameters will that change the xml structure for the report  and therefore will need me to modify the .xdo again ? (I think it should not change the xml structure so the answer should be "NO" to that, unless I change the structure of the report).
    Finally, the link you provide says after doing what it suggest  "Now log back into BI publisher and select the report. You should now be able to see that CSV is now an option."
    CSV should be an option where ? on what screen/page ?  Maybe PDF is already an option for me that I cant see because I do not know where that option is.
    I was hoping there would be something I could do on the xdo_metadata sheet (in the data constraints section or elsewhere) OR in BI Publisher itself as some property of the report.
    I will try out what you suggest any ways.
    M. Jamal

  • Automator Action 'New PDF Contact Sheet' returns a blank page

    I'm running into some bugs with Automator again. Seems like with each major OS update, things in Automator gets fixed while other things break.
    This time, the New PDF Contact Sheet action seems to have lost its functionality.
    To recreate the issue, I created a new workflow that , tion input and feeds them right into the single action (new pdf contact sheet), which outputs them to the desktop as a PDF file.
    Every time, the pdf file is just a single blank white page. Am I missing something here?
    Why is such a basic thing getting borked?

    It works for me.  Here's the workflow I setup:
    If the application is open dropping a folder of photos on it won't work. I  get the blank doucment.  One has to use the File ➙ Open menu and select the folder of photos.
    OT

  • Output in PDF&Xl Sheet

    Dear,
      I Did One application.Iwant to visible that out put in PDF&XL sheet.If any body have idea regarding this Plz send Documents/Information.
    Thanks,
    santhosh

    Hi santhosh,
    Check this links.
    Excel
    http://help.sap.com/saphelp_nw70/helpdata/en/74/9184429069de54e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/74/9184429069de54e10000000a155106/frameset.htm
    Looking for example to export data from a DynPro table to Excel file
    /people/anilkumar.vippagunta2/blog/2007/02/04/office-control-in-webdynpro-ii
    PDF
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2b6db1c4-0801-0010-faa5-ff4b4df55b45
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f09fc2-0401-0010-1482-dbf9891e7613
    /thread/104121 [original link is broken]
    Dynamic PDF
    /thread/104121 [original link is broken]
    OnLine PDF
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8d7b9e7d-0c01-0010-2495-947691554cb7
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/176882c3-0401-0010-9fbc-d9fa1f713a73
    Regards,
    Mithu

  • Split File Error !!

    Dear Experts,
    Newly I installed SAP BPC 5.1 with SQL 2005.
    I am trying to create new Dimension & Process dimension Its showing "Split File Error".
    And Whilw clicking on "Save to Server" for dimension Its showing error message "Split File Error".
    Please help me,
    Thanks in advance

    If you go into the spread sheet where the members are defined for that dimension
    Goto the bottom of the data and highlight all the empty cells to the bottom of the spreadsheet and then find "clear all" in excel (not easy in 2007!)
    I've found this usually fixes this but you may have to do it a few times as BPC holds onto excel processes. Might be worth killing all excel processes from task manager each time you do it as well

  • Lightroom 2.2 crashes when creating PDF contact sheet

    I'm trying to create a PDF contact sheet for a client urgently. Contact sheet is 10 pages, 6 columns by 5 rows. Printing at 240 dpi with PDF set to JPG medium. System is windows XP with 3GB RAM & 1GB Video RAM. Most of the shots have had some kind of Lightroom brush adjustment, mainly selective sharpening or selective exposure.
    First page always seems to print out fine. Second page will not print, even if if I try to print just that page.
    Layout is set to show file names and page numbers, print sharpening is off.

    That's the LR 2.2 memory bug. Upgrade it to 2.3 (see top of forum)

  • Automator Make PDF Contact Sheet

    Problems with the Make PDF Contact Sheet workflow/Service in Snow Leopard have been noted, eg
    http://discussions.apple.com/thread.jspa?messageID=12138199&#12138199
    The suggested solution is to replace MakePDF.app in Snow Leopard with the previous version of this file. This option is not available to me.
    However I have found that, although I get the error message +The action "New PDF Contact Sheet" encountered an error+, in fact the required pdf has been created, not in the specified folder, but in my Pictures folder - file name 'untitled on [date] at [time]'.
    I hope this may be useful.

    It works for me.  Here's the workflow I setup:
    If the application is open dropping a folder of photos on it won't work. I  get the blank doucment.  One has to use the File ➙ Open menu and select the folder of photos.
    OT

  • Blank pdf contact sheet using Image Capture

    I have tried using image capture to create a .pdf contact sheet of 12 jpgs but when I open the file it is blank.
    Any ideas as to what I am doing wrong please?

    Try with a resolution of 75 or 150.
    Also when printing there are options to "fit to 1 page". The recipient should do that.

Maybe you are looking for