Cant print single PDF pages

Trying to print single PDF pages, forced to print all pages sent via email.
Dialog box has greyed out page selection portion.
Samsung Galaxy S4.  
HP App loaded from Google Play.
HP 4500 Envy.
Thank you
Thurston

Hi Thurstonthe3rd,
When sending an email, the eprint server will consider the full document as the print job and will print all the pages of the document. This is expected behavior.
If you want to print selected pages from your pdf first save that page as a seperate pdf and then emailthe saved pdf to the printers email ID to print.
Regards,
Oliver
"Although I work for HP, I'm speaking for myself and not on behalf of HP"--Please mark the post that solves your problem as "Accepted Solution"
"Say "Thanks" by clicking the Kudos Star in the post that helped you.

Similar Messages

  • Translate the entire web page as a single pdf page in Acrobat X

      Acrobat X has changed the way it interprets web pages. With acrobat 7 and 8, it would translate the entire web page as a single pdf page. With Acrobat X the calculation is gone. Is there a fix or work around this?

    Old Fox....thanks so much. I do not have the HP smart web printing in my add ons or plug ins. I used SWP in my problem posting and should have spelled out HP smart web printing..sorry.
    The NAME of the printer showed 'document converter'. WELL DUH! That was the problem all along. I have no idea how it got changed but I won't dwell on it. I have never had to look at those 'choices' because I don't need to change anything when I print but its never too late to learn.
    I am so happy and thanks again
    Terri

  • Merge Different Spools containing a Single PDF page into a Single PDF file.

    Greetings,
    I am developing a custom object where in i need to read PDF file from many different Spools(Range given on Input Screen), where each spool has a single PDF page in it. I need to combine all these PDF Pages into a single PDF file & either create a new Spool or save it on an Application Server.
    At present i have developed the code where in i am able to read the PDF files from different spools & convert them into Binary but i am not able to generate it back to PDF file.
    Kindly find my code for your reference.
    CODE:-
    START-OF-SELECTION.
      PERFORM f_get_spool_1000 .
      PERFORM g_conv_pdf_to_bin_2000 .
    *&      Form  F_GET_SPOOL_1000
          text
    FORM f_get_spool_1000 .
      SELECT * FROM tsp01
               INTO TABLE gt_tsp01
               WHERE rqident IN s_spool
               ORDER BY rqcretime DESCENDING.
      IF sy-subrc = 0.
        SORT gt_tsp01 BY rqident .
      ENDIF.
    ENDFORM.
    *&      Form  G_CONV_PDF_TO_OTF_2000
          text
    DATA: lv_filename_out   TYPE string,
                lv_len            TYPE i,
                lt_tab            TYPE tsfixml .
      DATA: lwa_print_parms    LIKE pri_params,
                  lv_valid(1)       TYPE c .
      DATA: lv_linsz LIKE sy-linsz VALUE 132, " Line size
                  lv_paart LIKE sy-paart VALUE 'X_65_132'.  " Paper Format
      DATA : lt_tsp01 TYPE STANDARD TABLE OF tsp01 ,
                   lwa_tsp01 TYPE tsp01 .
      CLEAR : gv_pdf, gwa_tsp01, gv_renderpagecount .
      LOOP AT gt_tsp01 INTO gwa_tsp01.
        CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
          EXPORTING
            i_spoolid         = gwa_tsp01-rqident
            i_partnum         = 1
          IMPORTING
            e_pdf             = gv_pdf
            e_renderpagecount = gv_renderpagecount
            e_pdf_file        = gv_pdf_file
          EXCEPTIONS
            ads_error         = 1
            usage_error       = 2
            system_error      = 3
            internal_error    = 4
            OTHERS            = 5.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CLEAR lv_len .
        REFRESH gt_bin .
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            buffer        = gv_pdf
          IMPORTING
            output_length = lv_len
          TABLES
            binary_tab    = gt_bin.
        CLEAR gwa_bin .
        LOOP AT gt_bin INTO gwa_bin.
          APPEND gwa_bin TO gt_listout.
          CLEAR gwa_bin .
        ENDLOOP.
      ENDLOOP.
    Get FP reference
      DATA: lo_fp     TYPE REF TO if_fp VALUE IS INITIAL,
            lo_pdfobj TYPE REF TO if_fp_pdf_object VALUE IS INITIAL,
            lo_exc    TYPE REF TO cx_root,
            lv_xslt_message TYPE string .
      lo_fp = cl_fp=>get_reference( ).
    For handling exceptions
      DATA: lo_fpex TYPE REF TO cx_fp_runtime VALUE IS INITIAL.
      TRY.
          lo_pdfobj = lo_fp->create_pdf_object( connection = 'ADS' ).
      Set document
          lo_pdfobj->set_document(
            EXPORTING
              pdfdata = gt_listout ).
      Tell PDF object to extract data
          lo_pdfobj->set_extractdata( ).
      Execute the call to ADS
          lo_pdfobj->execute( ).
        CATCH cx_root INTO lo_exc.
          lv_xslt_message = lo_exc->get_text( ).
      ENDTRY.
    Your quick reply would be of great help.
    Regards.

    Thank Your for your concern, there are many replies & posts but all of them points only to Try what they have said. As being said that trying to convert PDF to binary & appending many PDF similarly would not let you generate a single PDF again.
    Your Kind guidance would be really appreciable.
    Regards.

  • Printing a PDF page in A4 size resizes to A5

    Hi,
    I am trying to print a PDF file, which somehow succeeds; However the printed page shows the PDF in A5 format. the same pdf printed with acroread32 shows in expected A4 size. Can anyone imagine why? Here is the code:
    private void printPdf(File file) throws Exception {
            // set up the PDF reading
            RandomAccessFile raf = new RandomAccessFile(file, "r");
            FileChannel channel = raf.getChannel();
            ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY, 0, channel.size());
            PDFFile pdfFile = new PDFFile(buf); // Create PDF Print Page
            // Create Print Job
            PrinterJob pjob = PrinterJob.getPrinterJob();
            PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
            Book book = new Book();
            PDFPrintPage pages = new PDFPrintPage(pdfFile);
            book.append(pages, pf, pdfFile.getNumPages());
            pjob.setPageable(book);
            // Set print attributes:
            PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
            aset.add(MediaSizeName.ISO_A4);
            try {
                // Send print job to printer
                if (pjob.printDialog(aset)) {
                    pjob.print(aset);
                    Log.Debug(PrintJob2.class, "Document '" + file + "' printed.");
            } catch (Exception e) {
                throw e;
            } finally {
                raf.close();
        }My guess is that it has to do with PageFormat, but i don't know how to change that?
    Best wishes,
    Andreas

    Hi,
    Fixed by setting the paper size manually:
    Paper paper = new Paper();
            paper.setSize(594.936, 841.536);
            paper.setImageableArea(0, 0, 594.936, 841.536);
            pf.setPaper(paper);However odd imho

  • Margins problem when printing to PDF (Pages '09 v4.0.3 build 766)

    Hi,
    I don't know if this is connected to the latest Mac OS X v10.6.4 update, but some of my machines exhibit a very curious behaviour.
    + multiple pages A4 document
    + choose File > Print, click on "Save as PDF", under the PDF button
    ++ set pages 6 & 7 to print
    ++ set 2 pages per spread, so as to have Pages shrink the A4 document to somewhat A5, and have the two pages side-by-side on the same sheet
    ++ save the PDF
    Then, when I open the PDF with Preview, the margins are all wrong (i.e. too big, there's too much white running around).
    And from Preview's inspector, I can tell that the Page Size is set to US Letter, although in Pages both the document size AND the Printing Format are set to A4.
    The most curious part of the story is that my MacPro, my work MacBook Pro 13 and a white MacBook exhibit the problem, whereas my personal iMac 27" DOES NOT.
    And they are all running Mac OS X v10.6.4, with ALL the most recent updates, and the exact same version of Pages!!!
    I suspect that something has been changed in a framework somewhere, but I cannot figure out what it is...
    Any idea is welcome!
    Thanks,
    K2r

    I can do the same in TextEdit (although it's even more painful to control the margins!!).
    My problem is not that Pages won't put pages on one sheet; It's that the generated PDF does not respect the sheet physical size (A4 vs. US Letter), thus adding wider margins all around the document.

  • Print multiple pdf pages to one sheet of paper

    I want to print a 70 page pdf file but don't want 70 pages.
    I want 4 of the pdf pages on one sheet of paper, and I would really like to double side.
    This is what I'm working with (and not having any success in getting what I want)
    Help?
    Printer: HP Officejet 6500A Plus all in one
    PDF version 4.0.65
    Windows 7
    This question was solved.
    View Solution.

    Hi,
    That can be done easily using the Booklet feature of the printer driver.
    Open the PDF in Adobe Reader, then clcik on File > Print.
    Click the Properties button.
    Within the Layout tab check the radio option next to Booklet, you may keep the draw borders box checked or uncheck it as you prefer.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Adobe Reader-Printing 2 PDF Pages On One

    Hi - I am using Adobe Reader version 9 in Windows Vista. I am trying to combine two pdf pages into one page via a pdf printer. The pages are small enough that two can fit on one page. I can get two onto one page but each of the pages is smaller than I want them to be. Is there any way to make the output larger? I would like each of the pages to print larger and there to be less white space. Thanks!

    You can not do those tasks with Reader. Reader is a view program only, though some filling of forms and such is possible. To edit a PDF, you have to purchase Acrobat.
    If I have misunderstood your question it may be that I use Acrobat and not Reader. In that case, ask your question in the Reader forum (link at the top of this forum).

  • Cant "print to pdf" in Windows 8.1 using Outlook, Quickbooks, Word?

    I can't "print to pdf" in any of the applications I listed. Seems to have happened after the last Windows update. It also screwed up my ability to connect with a second monitor, but that's a separate problem that has no fix. Anyone have any ideas? I fixed the Acrobat install through Adobe but no luck yet

    Ar both in 64 bit installed? I experienced once problems one in 32bit, the other in 64bit.
    Or if the Office was installed before the Acrobat it could also be a problem.

  • FF hangs when printing a PDF page

    CRTL P brings up print options- printer Can0n iP1800. When OK is selected Progress Box shows "Printing MisCommands.PDF" and hangs at 0%complete. Must select "X" out FF which brings up the Program Not Responding box
    https://docs.google.com/a/scc-ems.us/MiscCommands?command=save_print_settings&docID=0AddSHXnoIKORZGd3bnZ2cnBfNTNkNXc1OTV4aA&print=1

    Thanks for checking.  It is clearly something about my system that is
    causing the hang.  In the cases I ran it stopped on photo 11 of about 30
    and that was repeatable.  Using another set of photos it stopped on
    something like 16 of 30 or so photos. That was also repeatable.
    It clearly is a problem on my configuration.
    I have uninstalled 64 bit Lightroom and installed 32 bit LR 2.7 as I had
    done with LR 2.6.
    Let me know if you could use more information.
    Thanks,
    Gary

  • Is it possible to print a pdf page displayed in browser?

    I have a servlet that will send a pdf file to the browser (IE), (i set the content type to "applicaction/pdf"). Now I need a way to create a print button to allow user that option, seems the browser print button is not satisfactory. Can a pdf be embedded in a web page somehow? Sounds like I would be dealing with 2 different reponse types "application/pdf" and "text/html"..I think the print button would call a method doing some extra things other than what the browser print button does. Is this possible? Thank you

    Can you post me example how to displaying pdf in browser?
    Thankss..

  • How do I print multiple (PDF) pages per sheet in Lion?

    The printing interface has changed in preview, and whereas there used to be an option to print multiple pages per sheet, there's now only an option to print multiple copies per sheet. The latter is of no use to me, whereas printing multiple pages per sheet was very useful since I often print large documents.

    Well, in Snow Leopard I used to print PDFs from Preview, and if I recall correctly, where it now says 'copies per page', it used to say 'images per page'. So of course, I now have a couple of printouts with two copies of each page per sheet.
    But the preview tab and then the option 'layout' works. I don't understand why this interface had to change though.
    Message was edited by: Sebastian0883

  • Multiple audio files on a single PDF page ?

    Hi
    I have an interactive pdf with 10 audio clips on a page
    and ten buttons each button has ten actions - 1 action to play a specific audio clip and 9 actions to stop all others.
    The thing is when I first load up this page and click on any of the buttons every single audio clip triggers! Please tell me there is a way around this problem?!
    Thanks
    JB

    You're making it too complicated. I just tested the following with three clips, it should work also with ten.
    Make ten buttons to play the 10 clips. Each has only one action: Sound > Play (name of clip)
    Make one button to stop the music (I called it "Stop the Music"). It has 10 actions. Each of them is Sound > Stop (clip1), Sound > Stop (clip2), etc.

  • Cant print PO - wrong page format

    Hi all
    I have a smartforms to print PO.
    I encounter this problem which some PO cant be print while some other PO can be printed.
    Its quite confusing since only some cant be print.
    Below is the message:
    Form TXT_CONTACT has wrong page format.
    Message no. SSFCOMPOSER026
    Diagnosis
    Form TXT_CONTACT has a different page format than the forms output previously but has been added to the same spool request.
    System Response
    Form TXT_CONTACT ist not processed.
    Procedure
    While forms are formatted (FM SSFCOMP_OPEN to FM SSFCOMP_CLOSE), the page format must not be changed. All forms within one spool request must have the same page format.
    The first page format used, in this case paper format , is applicable to all subsequent forms.
    Please guide me.
    Thanks in advance

    Hi,
    Check the NEXT page's PAGE FORMAT what is used in the smartform and make it the same as that of the FIRST page.
    I believe the POs which are not being able to print do spill over into the next pages.
    Regards,
    Ram

  • Cant print a complete page

    I have rebooted my Windows 8 PC and HP printer and run diagonostics.  There are no error messages but the print stops 3 inches from the bottom of each page.  Any ideas?

    Look for a page configured like this:
    This particular layout is the easiest to miss.
    OT

  • How to fix hairlines in hundreds of single PDF pages in one step?

    Could not create an action.
    The thickness will be the same for all pages.
    The menu allows to do it one by one but that means many hours...
    Thanks.

    This post
    https://answers.acrobatusers.com/AcroJS-script-fix-hairline-width-q192774.aspx
    where you also wrote, R Boulay says says that it is possible:
    Long answer, requires Acrobat X or XI (or 9 but UI is different) :
    1- Tools pane : Print Production : Preflight : Profiles : Options : Create new preflight profile : Fixups : All available fixups : Set minimum line width to 0.14 pt (edit as needed). Enter a name, save and close.
    2- Tools pane : Action Wizard : Create new action :
    Document Processing : Preflight (add to right side) : Uncheck "Prompt user" : Specify Settings : Run preflight check using : Select your new preflight profile in the menu.
    Save & Export : Save (add to the right side) : Specify Settings.
    Save, enter a name and close.
    3- Enjoy your new Action!
    Now the problem is the second picture in my past reply. No way to find in the «create fix-up» the menu that matches fix hairlines.
    It is incredible how most of simplest problems in Acrobat cannot be resolved by a normal user...

Maybe you are looking for