PDF Print Preview add doc title?

XI31 SP3
Requirement is to add the doc title when the document is printed,  but not on the document itself.  Is it possible to add a doc title to a pdf file without having the title actually on the document itself???

You get a Pop up because you might have other actions ( fax or mail ) for which smartforms are attached and you can preview them.
Check your action config and Smartform  to make sure there are no errors. If you can preview the form in GUI , you should be able to preview the same in Web.

Similar Messages

  • PDF print preview not coming as it contains chinese character

    hi
    when i see the print preview of the Delivery note ( in scripts ) normally, the chinese characters appears. but when i want to check with pdf print preview nothing is coming.
    i am using convert_otf func. module.
    is it because of function module or because of adobe acrobat?
    also when i try to print the ordinary print preview - output is coming as ####.
    My advance thanks for your replies.
    Regards,
    Sakthi Sri.

    Hi Sandra Rossi,
    In PDF i could not able to get the output. So discussed with TL and we made the chinese characters in .tiff and uploaded through se78 and now it is coming in ordinary print preview.
    but this is only temporary solution.
    Anyhow thanks for help given by experts.

  • Firefox10 was unable to invoke adobe pdf print preview where as Firefox 3 was able to do this.

    Firefox10 was unable to invoke adober pdf print preview where as Firefox 3 was able to do this.
    embed pdf document or use iframe
    Firefox successfully loads the PDF into the iFrame.
    What doesn't happen is printing.
    http://forums.adobe.com/thread/909776

    Also check this out. Firefox10 was able to display the pdf document perfectly.
    Now goto Firefox options and click print which invokes the printer print view and NOT the Adobe print view.
    Also if you click the print preview a blank page is shown.
    <embed id="pdf" src="archive.pdf" type="application/pdf" height="100%" width="100%" ></embed>

  • Simple way to create a pdf print preview in icwc

    Hello gurus,
    I have this customer task, to create a print preview for icwc. I checked note 1323062, but I´m working with version 5.0, so it can´t be used. I checked also note 896953, but this more to a error related.  Checked also 616762, but the note is high level in details. Does not explain how to redirect the output of the processing to the icwc (step 5).
    So in this way, I´d like to be advised from you folks, how to do it.
    I was thinking in to use and adapt Craig's blog for this. http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/1002. [original link is broken]
    Is somebody else used another solution or some tip to give, please, will be very welcome.
    cheers,
    David

    Hi Luiz,
                  It will be great if you can forward the paper created on pdf print preview to my profile id.
    Thanks in Advance
    Anil...

  • Questions about "PDF print previewer" in PO

    Dear all,
    I am looking for "PDF print previewer" to improve the 'visual identity' of PO in preview. Can I ask how to activate the "PDF print previewer" in PO function or any configuration is needed?
    Is it after apply "PDF print previewer" in SAP, a pdf viewer will be emabdded in the PO preview function?
    Many thanks for your help
    Sunny

    hi sunny,
    For control print preview of purchase order you have to contact ABAP , they will select according to your requirement
    Regards

  • Firefox10 was unable to invoke adober pdf print preview where as Firefox 3 was able to do this.

    Firefox10 was unable to invoke adober pdf print preview where as Firefox 3 was able to do this.
    embed pdf document or use iframe
    Firefox successfully loads the PDF into the iFrame.
    What doesn't happen is printing.
    http://forums.adobe.com/thread/909776

    Also check this out. Firefox10 was able to display the pdf document perfectly.
    Now goto Firefox options and click print which invokes the printer print view and NOT the Adobe print view.
    Also if you click the print preview a blank page is shown.
    <embed id="pdf" src="archive.pdf" type="application/pdf" height="100%" width="100%" ></embed>

  • SMARTFORM PDF PRINT PREVIEW - URGENT!!

    Hi All,
    I have a requirement to get a print preview of the smartform in the pdf format and have the option to either print it or save it.
    meaning - the adobe application must automatically open and in it, there must be a window to display the smartform in the PDF format.
    the code i have so far is as below
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = W_FORM_NAME
    IMPORTING
    FM_NAME = W_FMODULE
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Calling the SMARTFORM using the function module retrieved above
    GET_OTF parameter in the CONTROL_PARAMETERS is set to get the OTF
    gst_output_options-tddest = 'FRNT_End_Print'. "Frontend printer
    gst_output_options-tdnewid = sy-prnew.
    gst_output_options-tdimmed = 'X'.
    gst_output_options-tddelete = sy-prrel.
    clear gst_control_parameters.
    gst_control_parameters-no_dialog = 'X'.
    gst_control_parameters-getotf = 'X'.
    gst_control_parameters-preview = 'X'. "Deactivate preview!
    *Call the original function module.
    call function w_fmodule
    exporting
    control_parameters = gst_control_parameters
    output_options = gst_output_options
    importing
    job_output_info = gt_job_output_info
    job_output_options = gt_output_options
    tables
    tbl_amt = final_tab
    exceptions
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    if sy-subrc ne 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    T_OTF] = gt_job_output_info-OTFDATA[.
    call function 'SSFCOMP_PDF_PREVIEW'
    exporting
    i_otf = t_otf
    exceptions
    convert_otf_to_pdf_error = 1
    cntl_error = 2
    others = 3.
    if sy-subrc ne 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    The adobe application is launched but the window inside does not hold anything.
    i get a pop-up inside the adobe window with the message " FILE DOES NOT BEGIN WITH '%PDF-' ".
    Any suggestions are greatly appreciated.
    hoping to hear from you all.
    thank you.
    Sandeep

    Hi,
    Check the foll code it does the same thing.........
    Give a simple form(without any parameters) to check the code..........
    DATA: v_form_name           TYPE rs38l_fnam,
          wa_control_parameters TYPE ssfctrlop,
          it_job_output_info    TYPE ssfcrescl,
          v_bin_filesize        TYPE i,
          it_otf_data           TYPE tsfotf,
          it_doctab_archive     TYPE TABLE OF docs  WITH HEADER LINE,
          it_lines              TYPE TABLE OF tline WITH HEADER LINE.
    PARAMETER p_sform   TYPE tdsfname OBLIGATORY DEFAULT 'Put ur form name here'.
    START-OF-SELECTION.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = p_sform
        IMPORTING
          fm_name            = v_form_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
        wa_control_parameters-no_dialog = 'X'.
        wa_control_parameters-getotf    = 'X'.
        CALL FUNCTION v_form_name
          EXPORTING
            control_parameters = wa_control_parameters
          IMPORTING
            job_output_info    = it_job_output_info
          EXCEPTIONS
            formatting_error   = 1
            internal_error     = 2
            send_error         = 3
            user_canceled      = 4
            OTHERS             = 5.
        IF sy-subrc = 0.
          it_otf_data = it_job_output_info-otfdata[].
          CALL FUNCTION 'SSFCOMP_PDF_PREVIEW'
            EXPORTING
              i_otf                    = it_otf_data[]
            EXCEPTIONS
              convert_otf_to_pdf_error = 1
              cntl_error               = 2
              OTHERS                   = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
        ENDIF.
      ENDIF.
    Cheers,
    jose.

  • PDF Print Preview

    Hi experts,
    I have a requirement where I display the output of a program in popup in PDF format when user clicks on a button.
    I am able to do that and output is shown properly in PDF format.
    But now the problem is he wants PDF to be shown directly in 'Print Preview' mode.
    Can you please suggest me how it can be done.
    I am using 'get_Print_parameters' Function Module.
    Is there any parameter which we need to set for this purpose.
    Thanks in advance.
    Regards
    Vasu

    Hi,
    You can use following code --
    DATA: LV_CONTROL_PARAMETERS TYPE SSFCTRLOP.
    * Set relevant control parameters
    LV_CONTROL_PARAMETERS-DEVICE = 'PRINTER'. "Printer Device
    LV_CONTROL_PARAMETERS-GETOTF = L_X. "OTF output
    LV_CONTROL_PARAMETERS-NO_DIALOG = ' '. "L_X. No print dialog
    LV_CONTROL_PARAMETERS-PREVIEW = 'X'. " This would enable Preview SPACE is for No preview
    * Set relevant output options LV_OUTPUT_OPTIONS-TDNEWID = L_X. "Print parameters,
    LV_OUTPUT_OPTIONS-TDDELETE = ' '. "SPACE. Print parameters,
    Check this, this worked in my case.
    Thanks.
    Kumar Saurav.

  • Smart form print preview in PDF format

    Hi ABAP Experts,
    I have 2 requirements
    1) I want to print preview of a smartform in pdf format
    2) I also want to attach a local pdf file to the smartform which is displaying in the pdf print preview format
    or to rephrase:
    I want a pdf attached to a smartform which i want to open in the pdf print preview format.
    Regards,
    Niloufer

    Use following function modules:
    Please see the below code to download a PDF file on to your computer.
    PERFORM F_CONVERT_OTF.
    FORM F_CONVERT_OTF .
    PERFORM F_CALL_SMARTFORM. " Call the smartform to get data in I_OTF_FINAL
    **appending the otf data into the final table & save the pdf file.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = C_PDF_U      "Value is 'PDF'
        IMPORTING
          BIN_FILESIZE          = L_BIN_FILESIZE         "L_BIN_FILESIZE TYPE I,
        TABLES
          OTF                   = I_OTF_FINAL
          LINES                 = I_PDF_TAB    "It is of type TLINE
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          ERR_BAD_OTF           = 4
          OTHERS                = 5.
    * Check if the file is already existing.
      CALL FUNCTION 'TMP_GUI_GET_FILE_EXIST'
        EXPORTING
          FNAME                = L_FILE1   " Path where file is saved
       IMPORTING
         EXIST                = L_RESULT
    *   ISDIR                =
    *   FILESIZE             =
       EXCEPTIONS
         FILEINFO_ERROR       = 1
         OTHERS               = 2
    PERFORM F_GUI_DOWNLOAD USING L_FILE.
    ENDFORM.
    FORM F_GUI_DOWNLOAD  USING P_FILE TYPE STRING.
    CONSTANTS: C_BIN(10)       TYPE C VALUE 'BIN'.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          FILENAME                = P_FILE     "same as L_FILE
          FILETYPE                = C_BIN
          CONFIRM_OVERWRITE       = C_X   "value 'X'
        TABLES
          DATA_TAB                = I_PDF_TAB
        EXCEPTIONS
          FILE_WRITE_ERROR        = 1
          NO_BATCH                = 2
          GUI_REFUSE_FILETRANSFER = 3
          INVALID_TYPE            = 4
          NO_AUTHORITY            = 5
          UNKNOWN_ERROR           = 6
          HEADER_NOT_ALLOWED      = 7
          SEPARATOR_NOT_ALLOWED   = 8
          FILESIZE_NOT_ALLOWED    = 9
          HEADER_TOO_LONG         = 10
          DP_ERROR_CREATE         = 11
          DP_ERROR_SEND           = 12
          DP_ERROR_WRITE          = 13
          UNKNOWN_DP_ERROR        = 14
          ACCESS_DENIED           = 15
          DP_OUT_OF_MEMORY        = 16
          DISK_FULL               = 17
          DP_TIMEOUT              = 18
          FILE_NOT_FOUND          = 19
          DATAPROVIDER_EXCEPTION  = 20
          CONTROL_FLUSH_ERROR     = 21
          OTHERS                  = 22.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    <removed by moderator>
    Edited by: vishalmurgai58 on Mar 6, 2012 1:43 PM
    Edited by: Thomas Zloch on Mar 6, 2012 - please do not ask for ...

  • Problem with pdf print

    HI frnds,
    I have got s issue here with pdf printing of a doc through the webdynpro application. What i see is that the pdf source data is passed to a component of property intercative forms in webdynpro. When the user is displaying the pdf and when he tries to save the pdf it triggers a print out .
    Can any body help me with this issue.
    Rohit

    answered

  • I cannot get an Adobe pdf printer to correctly install in windows 7 64 bit

    I purchased Acrobat Pro XI and installed and it went fine.  I then installed my copy of Master Collection 5.5, it didn't install Acrobat X, and the printer disappeared.  I have tried to repair my XI installation, but it won't do it, and I have tried to uninstall it to reinstall it, but it won't let me do that either.  I cannot find the location for a correct Adobepdf.inf file wherte it is supposed to be.  I find two in windows/system32/driverstore, but they do not work correctly.

    Hi stampguy,
    You might want to refer the thread : Re: Manually installing  PDF Printer  to add printer manually.
    Usually repairing Acrobat brings the pdf printer back.
    Please try updating to the latest patch 11.0.7 and check.
    Regards,
    Rave

  • 10.6.3, Acrobat 9.3.2 Pro update broke my PDF printer how to

    Hi,
    I updated my CS4 Acrobat Pro to 9.3.2 and now my Acrobat Printer errors in the Que when I FIle> Print and select my Adobe PDF Printer.
    I deleted the Acrobat Printer from my Print & Fax control panel.
    Now I can't figure how to Add my Acrobat printer back.
    Is 9.3.2 broken?
    I use this all the time, but now it's broke

    I just found this article
    http://kb2.adobe.com/cps/509/cpsid_50981.html
    The Adobe PDF Printer is not available or is unusable in Mac OS X Snow Leopard (v10.6). This situation is due to security features in Snow Leopard that disable the Adobe PDF Printer. Adobe Acrobat 9.1 Pro removes the Adobe PDF Printer and adds a new Save As Adobe PDF command. Customers using earlier versions of Adobe Acrobat in Snow Leopard cannot use the Adobe PDF Printer.
    SOLUTION
    To add and use the Save As Adobe PDF command:
    If you are using Acrobat 9 Pro, update to Acrobat 9.1 Pro. The Updater removes the Adobe PDF Printer from the Printer list and adds the Save As Adobe PDF command to the PDF menu.
    In the PDF menu, choose Save As Adobe PDF, and follow the onscreen instructions.
    To remove the Adobe PDF Printer manually:
    If you upgrade from Mac OS X Leopard (v10.5) to Mac OS X Snow Leopard (v10.6), the Adobe PDF Printer is not removed
    Choose Apple > System Preferences.
    Open the Print & Fax preference panel.
    Select the Printing tab to see the printers list.
    Select Adobe PDF 9.0.
    Click the minus (-) button.
    The Save As Adobe PDF command appears in the PDF menu.

  • PDF printing got error : 500 Internal Server Error

    Hi,
    I have configured PDF printing as per doc "PDF Printing in Application Express 3.0" and configured " Apache FOP " as per instruction and test the JSP page by
    http://hostname:8888/apex_fop_render.jsp
    and got following error:
    java.lang.NullPointerException     at java.io.StringReader.<init>(StringReader.java:33)     at apex_fop__render._jspService(_apex__fop__render.java:71)     [SRC:/apex_fop_render.jsp:21]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:793)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)     at java.lang.Thread.run(Thread.java:534)
    Apex 30 is running without any problem except PDF printing.
    Please help.
    Thanks
    Message was edited by:
    paresh_vakil

    As far as I am away from the setup document yes I have. I have set the values in the Internal workspace for the in my case localhost , port is 8888 and the jsp file is the one supplied in the document.
    I can see http://localhost:8888 but can't see the JS file, which makes me think that the JS is not working.
    I am running the export on a report with a print button.
    Do I need to supply an XML document as well, I have set a default stylesheet as the output but still doesn't work.
    Andrew

  • PDF printing: user A clicks "print" and it prints to user B's computer!

    I had a user call me up very distressed b/c she had tried to print a database report (using PDF to file, the only printer we have allowed) and turned out that it printed on another user's local computer instead of hers! Confidential information was shared unwillingly and she was very upset.
    I looked further and it looks like in a shared account (multiple users logged into Win2003 w/ same username and password) when a user goes to print she can see a printer for each active session. We have "make pdf to file printer default in win2000/20003" checked.
    What is going on? When a user goes to print from an application on our win2003 application server, she should only see ONE printer, not a printer for every active session. This seems like a horrible breach of security, trust, etc.
    Hope I'm doing something wrong here.
    We cannot create a new windows profile for each new user so we need to get this working in an environment where most of our accounts are shared.
    Thank you

    OK, have done some testing and speaking w/ Microsoft people. If I understand correctly, here is what's happening:
    When user A logs in, SGD autocreates a PDF printer for her with title "...session 1" and modifies the registry HKCU\Software\Microsoft\Windows NT\CurrentVerion\Windows\Device to make this newly created printer as the default printer.
    If she prints, it goes to her local computer.
    Then when user B logs in SGD does the same thing - it autocreates a printer and modifies the registry to set the default printer. Only now the default printer is "...session 2. Since SGD modifies the same registry key, user A's default printer is now "...session 2" as well so if user A prints to the default printer, the job will end up on user B's local computer because user B's session is session 2.
    Sun - since SGD handles session management, can't it tell which RDP session a print job is coming from and direct it to the correct client?

  • How can a view Print preview in TextEdit?

    I have never worked with a Macbook before so this is a little new to me. I just want to know how many pages of a document I have written. Or how I can "Print Preview" the doc. Thanks:)

    In the print window click on the "Preview" button.  At least that is the way it works in Snow Leopard and Epson printers.  Which os are you using and which printer?  You provided no system information.

Maybe you are looking for

  • AR aging report does not print alphabetically by customer name in 8.8

    AR aging report does not print alphabetically by customer name in version 8.8. It is possible to create a custom layout for the receivables aging summary report (to print alphabetically by BP name) to overcome this problem. However, itu2019s not poss

  • Video 100% Audio 0%

    I've an interesting problem. I can do audio chat with no problem at all. When I try a video chat I get pictures at both ends but no audio. Looking at the Connection Doctor shows a 0% Audio quality. Both ends have 2Mbps DSL with 384 Kbps upload speed.

  • F.27 - Periodic account statements into a file

    Hi Experts!, I have a requirement as: when F.27( Periodic account statements) or similar T-code(if exist)  is executed with a selection the output should be in file formart, NOT as print or PDF. Please suggest. PRK.

  • PSE 8 Setup hangs (80% complete) with checking system profile message

    Hello I have a  Elements 8 installation problem (Setup hang with checking system profile message). I'm running Mac OS 10.6.1 on a MacBook Pro  (Processor Speed: 3.06 GHz, Memory: 4 GB) purchased mid 2009. I have contacted Adobe support and tried all

  • What happened to ABS?

    this morning I was greeted by a slightly different look of abs and this: ==> Downloading tarballs... ==> core... ==> extra... ==> community... ==> multilib... ==> ERROR: Download failed