Adobe Printing

I downloaded a trial verson of Adobe Acrobat XI Pro, but I am unable to print pdf because there is no option available.  I tried to add a printer, but that did not work.  How do I get the option of adobe printer to become available?

Hi dcmoore117
Please refer the below Doc : http://helpx.adobe.com/acrobat/kb/troubleshoot-pdf-printing-acrobat-reader.html

Similar Messages

  • Open Adobe Print Form from ALV Int. Rprt using the XSTRING already present

    Hello Friends,
    I have a typicall issue that how to open a Adobe Print Form when a user double clicks in the ALV Report. Here when the user double clicks in the ALV Interactive Report using the unique ID I am getting the Adobe Form from a FTP location in the Form of XSTRING, now using the ABAP ADOBE PRINT FORM not using WebDynpro Application, I need to process this XSTRING and show up the Adobe Print Form.
    OR
    Is there a way to send the XSTRING to the Output Device or Printer to Display the PDF Form.
    Friends please help me in solving this issue.
    Thanks and Regards
    Pradeep Goli
    Edited by: Pradeep Goli on Mar 19, 2009 1:49 PM
    Edited by: Pradeep Goli on Mar 19, 2009 2:51 PM

    Hi Pradeep Goli,
    it is possible to show PDF in SAP GUI.
    Michal
    REPORT  ZTEST_DISPLAY_PDF.
    * You must create dynpro 500 with custom control named HTML.
    * In this custom control will be displayed PDF.
    DATA: g_pdf              TYPE xstring,
          pdf_my_container   TYPE REF TO cl_gui_custom_container,
          pdf_html_control   TYPE REF TO cl_gui_html_viewer.
    START-OF-SELECTION.
    PERFORM create_and_display.
    FORM create_and_display.
    *** Your code fo filling g_pdf
    CALL SCREEN '500'.
    ENDFORM.
    * PDF preview in HTML control
    module html_control output.
      perform pbo_html_control.
    endmodule.
    module html_control input.
      perform pai_html_control.
    endmodule.
    * PAI
    FORM pai_html_control.
      SET SCREEN '0'.
    ENDFORM.
    * Showing of PDF
    FORM pbo_html_control.
      DATA: l_pdf_alignment TYPE i,
            l_count         TYPE i,
            l_noprint       TYPE fpboolean,
            l_noarc         TYPE fpboolean,
            l_noprintarc    TYPE fpboolean.
    *  CLEAR: fcode.
      SET PF-STATUS 'VIEW_PDF'.
    * container
      IF pdf_my_container IS INITIAL.
        CREATE OBJECT pdf_my_container
          EXPORTING
            container_name = 'HTML'
          EXCEPTIONS
            OTHERS         = 1.
        IF sy-subrc <> 0.
          MESSAGE e150(FPRUNX).
          RETURN.
        ENDIF.
      ENDIF.
    * html control
      IF pdf_html_control IS INITIAL.
        CREATE OBJECT pdf_html_control
          EXPORTING
            parent = pdf_my_container
          EXCEPTIONS
            OTHERS = 1.
        IF sy-subrc <> 0.
          MESSAGE e150(FPRUNX).
          RETURN.
        ENDIF.
    *   alignment
        l_pdf_alignment = pdf_html_control->align_at_left  +
                        pdf_html_control->align_at_right +
                        pdf_html_control->align_at_top   +
                        pdf_html_control->align_at_bottom.
        CALL METHOD pdf_html_control->set_alignment
          EXPORTING
            alignment = l_pdf_alignment
          EXCEPTIONS
            OTHERS    = 1.
        IF sy-subrc <> 0.
          MESSAGE e150(FPRUNX).
          RETURN.
        ENDIF.
      ENDIF.
      PERFORM pdf_show USING g_pdf.
    ENDFORM.
    FORM pdf_show USING p_pdf_data TYPE xstring.
      STATICS: ls_url           TYPE i.
      TYPES: lt_pdf_table(1000) TYPE x.
      DATA:  l_myurl(80)        TYPE c,
             l_url(80)          TYPE c,
             l_pdf_data         TYPE STANDARD TABLE OF lt_pdf_table,
             l_pdf_size         TYPE i,
             l_pdf_line         TYPE lt_pdf_table,
             l_offset           TYPE i,
             l_len              TYPE i.
      l_pdf_size = XSTRLEN( p_pdf_data ).
      l_len = l_pdf_size.
      WHILE l_len >= 1000.
        l_pdf_line = p_pdf_data+l_offset(1000).
        APPEND l_pdf_line TO l_pdf_data.
        ADD 1000 TO l_offset.
        SUBTRACT 1000 FROM l_len.
      ENDWHILE.
      IF l_len > 0.
        l_pdf_line = p_pdf_data+l_offset(l_len).
        APPEND l_pdf_line TO l_pdf_data.
      ENDIF.
      ADD 1 TO ls_url.
      l_myurl(8) = ls_url.
      CONCATENATE l_myurl '.pdf' INTO l_myurl.
      SHIFT l_myurl LEFT DELETING LEADING space.
      CALL METHOD pdf_html_control->load_data
        EXPORTING
          url          = l_myurl
          size         = l_pdf_size
          type         = 'application'                          "#EC NOTEXT
          subtype      = 'pdf'                                  "#EC NOTEXT
        IMPORTING
          assigned_url = l_url
        CHANGING
          data_table   = l_pdf_data
        EXCEPTIONS
          OTHERS       = 1.
      IF sy-subrc <> 0.
        MESSAGE e152(FPRUNX).
        RETURN.
      ENDIF.
    * show data
      CALL METHOD pdf_html_control->show_data
        EXPORTING
          url    = l_url
        EXCEPTIONS
          OTHERS = 1.
      IF sy-subrc <> 0.
        MESSAGE e152(FPRUNX).
        RETURN.
      ENDIF.
    ENDFORM.

  • Internal table in adobe print forms

    hi there,
    in my WDA-application i use adobe print forms for output.
    i use a table for displaying an internal abap-table.
    in the formular-hierarchy it looks like this:
    table2
    --> line1
      --> cell1
      --> cell2
      --> cell3
    my problem is that i am a complete newbie in scripting in print forms.
    here is what i want to do:
    if cell1 = 'X' then the text in cell2 has to be bold or underlined.
    Can someone provide me with a code-example either in javascript or formclac???
    thx
    David

    thx for answering.
    first i tried the following code:
    data.T1.Tabelle2::ready:form - (JavaScript, Client) -
    this.Zeile1.Zelle2.font.weight = "bold";
    this.Zeile1.Zelle2.font.underline = "1";
    the result is, that cell2 is bold and underlined but only the first row of the table. i want all cell2 in all rows bold and underlined.
    then i tried this:
    data.T1.Tabelle2::ready:form - (JavaScript, Client) -
    if(this.Zeile1.Zelle1.rawValue == "01"
    this.Zeile1.Zelle2.font.weight = "bold";
    this.Zeile1.Zelle2.font.underline = "1";
    nothing happens and i dont understand why. The visible value in Zelle1 is "01"!

  • Unable to print to Adobe printer in any program including Office 2010

    My sustem is a Windows 7 64 bit.  I have Office 2010 installed as well as Adobe Acrobat Pro X ver 10.1.3.  I am unable to print to the Adobe PDF printer.  If I select it in Notepad it is Greyed out.  If I select it in an Office product like Word or Excel it shows that it is READY.  However if I select it so I can print to PDF I get an error message "Word cannot print.  There is no printer installed."
    If I got to Devices and Printers Adobe PDF is listed.  If I right click on it and select "Printing Preferences"  I get an error message "Operation could not be completed."
    If I select Printer Properties I get an error message "The "Adobe PDF Converter" printer driver is not installed on this computer.  Some printer properties will not be accessible unless you install the printer driver.  Do you want to install the driver now?"
    If I click YES a wizard pops up, the Add Printer Driver Wizard.  I select Next, choose either any of the Adobe PDF Converter Versions or HAVE DISK, the NEXT.  If I select have disk I go to the proper place "C:\Program Files (x86)\Adobe\Acrobat 10\Acrobat\Xtras\AdobePDF" and select the file AdobePDF.inf.  I then select the top Adobe PDF Converter and select Next.  It says You have successfully completed the Add Printer Driver Wizard.  You are about to add "Adobe PDF Converter, x64, Type - User Mode.  I click Finish and get another error.
    This error says "Unable to install Adobe PDF Converter, Type - User Mode, x64 driver.  Operation could not be completed (error 0x00000002)."  I select OK and Adobe PDF Properties pops up.  It has tabs like General, Sharing, Ports, Advanced, Color Management & Security. I can click on any of them and make any changes but once I click on OK and close the window and then Right Click on Adobe PDF there is no change to my results.  I still get all of the above errors.
    I have tried deleting the Adobe PDF printer and then selecting in Programs & Featues (Old ADD/REMOVE) the Adobe Acrobat X Pro item and right clicking on it and the selecting Change.  It goes through almost a reinstall, it adds the Adobe Printer back but NO CHANGE.  I still can't print to Adobe PDF.
    Can someone help?

    Can you try 'Print as Image' (Advanced button on Print panel).

  • Adobe Print Services in Java Instance on iSeries

    Comment by moderator: An english overview of this thread is given in an answer to this posting.
    Sehr geehrter Herr Hoelters,
    wir möchten gerne GTS on System i fahren. Für fast alle Module aus GTS
    braucht man die JAVA Instanz. Das soweit ist wohl kein Problem.
    Für die Adobe Printing Services brauchen wir die Java Instanz auch.
    Nun gibt es wie unten aus dem Buch zitiert non supported Platforms.
    Im Hinweis Hinweis 925741 wird eine Lösung mit einem zusätzlichen
    Applikationsserver empfohlen.
    Dadurch stellt sich raus, das wir doch einen zusätzlichen Windows
    Server für diese ADS benötigen.
    In der PAM kann man folgende Informationen finden:
    Freigaben Adobe Document Services Datenbank-Plattformen DB2/400...
    freigeg.
    Datenbankversion Betriebssystemversion Datum Status
    DB2/400 V5R3 WINDOWS SERVER 2003/IA32 32BIT 05.12.2005 Freigegeben
    DB2/400 V5R4 WINDOWS SERVER 2003/IA32 32BIT 14.02.2006 Freigegeben
    Bedeutet das jetzt das ich die ADS nicht ohne Windows Server nutzen
    kann ?
    mit freundlichen Grüßen
    Carsten Schulz
    Erstens:
    Book: Global Trade Services Using SAP® GTS 7.0
    Page 13
    Depending on our process, it can be necessary to set up the following
    additional instances:
    SAP NetWeaver Java Stack
    All print forms in SAP GTS are available in Adobe print technology. If
    you want to use printing functions the Adobe Document Server (ADS) is
    required that is icluded in the delivery of SAP NetWeaver Java Stack.
    Printing documents and forms can be necessary in the following areas:
    - SAP Customs Management
    - SAP Risk Management Preference Processing
    - SAP Risk Management Letter of Credit
    Zweitens:
    Book: SAP NetWeaver 2004s SR1 Java: IBM eServer iSeries
    2.4 Running Adobe Document Services on Non-Supported Platforms
    Adobe document services (ADS) are currently not supported to run
    natively on all platforms supported by
    SAP systems based on SAP NetWeaver, in particular on 64-bit platforms.
    Procedure
    To use ADS in SAP landscapes on non-supported platforms, install an
    additional standalone AS Java on a
    platform supported by ADS.
    For more information, see SAP Note 925741.
    Drittens:
    Hinweis 925741 - Adobe Doc. Services (ADS) auf nicht unterstützt.
    Plattformen
    Hinweis zu IBM iSeries
    Zusätzlich zu der beschriebenen Lösung können Sie einen zusätzlichen
    Microsoft-Windows-Applikationsserver für die ADS im Java-Stack
    einsetzen, wenn Ihre Umgebung auf einem IBM-iSeries-Server installiert
    ist.
    Message was edited by:
            Carsten Schulz
    Message was edited by:
            Carsten Schulz

    Hello.
    This question and its answer might be interesting for the non german speaking members of this community, too. So I made a short translation of the discussion. Not in every detail but it should be sufficient to get the idea. If you have any further questions don't hesitate to ask here. For future discussions I would like to encourage all of you to use english as the forum language. The members of this community are distributed all over the world and using english is the only way to get feedback from most of them.
    Now to the question:
    Mr Schulz is interested in using GTS on a system i. To use the Adobe Printing Services support in GTS it is necessary to set up a Adobe Document Server (ADS). At the moment ADS does not run natively on system i. The PAM states that ADS runs on DB2/400 using a windows server. SAP Note 925741 suggests to run an additional application server. The question is now if there is no way to run a ADS on a system i without a windows server.
    The answer given by Mr Hölters can be outlined as follows:
    In fact ADS is not supported under i5/OS. To allow usage of ADS without introducing a second database platform to your system landscape there is a solution given in SAP Note 925741. Instead of having a second NetWeaver installation on a different platform you can add an additional dialog instance to your application server running on system i. If this dialog instance is running under Windows you can install ADS there and don't have to use a second database platform.
    With kind regards,
    Jan Stallkamp

  • Adobe print forms - Intergration with Webdynpro ABAP

    Hi
    We are working on SAP Adobe print forms with Webdynpro ABAP. We are getting the PDF form's Hexadecimal content as a part of the FPFORMOUTPUT parameter when we execute the FM of the Form.
    I tried to assign that to a context variable and assigned that to the PDFSource of the form and tried to generate the PDF. But is is showing a black page.
    Can you please suggest a way if any to get this done.
    Regards,
    Srikanth.

    You can use the print form directly. I mean the same way as you would use the WD/ online form. Provide the form name, the data source and stuff and the form should work. If that would be an interactive one, you would not be able to change any values if the form is based on DDIC dictionary, but since you want to use the printform, this is not your concern.
    Regards Otto

  • I just installed Adobe CreatePDF desktop printer, when I try to use from Word or Excel, it does not work.  The Adobe print queue says "error" in the status screen.  I have uninstalled and re-installed.  Any ideas of what to do next?

    I just installed Adobe CreatePDF desktop printer on a Windows 7 home PC.  When I try to use from Word or EWxcel, it does not print.  The Adobe print device queue reports an "error" in the status column.

    Adobe retired this Feb 17, 2014.
    This app sent content to and got content from the web based services of "CreatPDF" and "PDF Pack".
    These are subscription services out in "the cloud". When the app was live you had to be online and signed into your account.  The user forum for CreatePDF has a DOC that speaks to the app removal.
    Be well...

  • How to install Adobe printer's 'postscript driver' in mac os x

    hello again,
    as posted recently hv a problem with adobe printer's postscript driver (ppd),In Indesign cs4 It shows ppd is missing while making Print File(.ps),
    pls suggest how to install ppd again, i tried to install ppd driver downloaded from adobe website, but it fails to install.
    pls help.

    I guess you didn't read the link I gave you inthe other thread...
    Here's one of the comments that you would have found:
    Short description to the workaround Solutions
    1) Usual workaround for printing with Distiller under SL and InDesign CS4:
    Copy the PPD called “ADPDF9.PPD” (download-link here in this topic) to Library/Printers/PPDs /Contents/Resources/en.lproj
    Works for CS4. Problem: Does NOT work for CS5.
    2) Workaround for InDesign CS5:
    - Go to Applications/Adobe Indesign CS5/Presets
    - Create a folder called “PPDs” (attention: foldername is case-sensitive!)
    - Copy the PPD called “ADPDF9.PPD” (download-link here in this topic) into this folder.
    - PostScript Printer will be useable within InDesign CS5
    Hope that helped and clears up all questions so far.
    Cheers, hi2hello

  • Adobe Printer In Acrobat 8.1.5 Hangs in Windows 7 Pro X64

    I have been trying to find some info on why the Adobe Printer Hangs when it prints. I Have Acrobat 8.0 & upgraded to 8.1.5 as a possible fix but so far to no avail. At least the Adobe Printer is listed and attempts to print but then it "Stops Responding" .  Of course I have Windows 7 professional & noticed around the forum allot of answers deals with upgrading to 9.0 , but has anyone a fix for the adobe printer fix?  All functions work great other than the Adobe Printer function
    it makes no sense to upgrade makes more sense for Adobe to make a patch to fix this issue as a gesture to loyal customers ! or is it greed?  Any hints on a fix?

    If you update AA8 (now at AA8.2.4) you may be successful. Part of this is a Win7 issue and part is a X64 issue. I think at least AA8.2 is needed for X64. Open Acrobat and do an update, or download all of the updates after 8.1.5 from the Adobe download site and install them (in order). If that does not do the job, I don't have other ideas. But that is your first step. The other is to search the forum for the wealth of comments on AA8 on Win 7.

  • Adobe print form - Purchase order MEDRUCK_PO

    Hi,
    Today I tried to make use of the MEDRUCK_PO adobe print form.
    This form is defined by SAP. They also updated the print program, which is SAPFM06P with entry ADOBE_ENTRY_NEU.
    The first problem I encountered was that the print program didn't find the PDF function module name. In stead it was looking for the FM of the smartform. I did a modification to this part so now the logic looks first at the type (Smartform, PDF of SapScript). This works but now I get an update termination.
    This error says that ULINE is not recognised.
    Did someone already this? I thinks its impossible to have the ULINE statement in a PDF form?!
    Thanks
    Bert

    Hi,
    I have sorted my problem out.  If you do not have transaction SAPLWMC you can use sm30 on view V_TNAPR.
    Now I am getting error messages when SAP generates the FM for the form.  It is complaining about currency fields that do not exist in the HEADER stucture of the interface.  Specifically it is complaining about WRF_POTB_CURRENCY-OTB_CURR which is referred to as the currency key for a couple of other fields.  The structure WRF_POTB_CURRENCY is included in the table EKKO and EKKO is included in the MMPUR_PRINT_EKKO which is used for the HEADER structure for the interface (both MEDRUCK and MEDRUCK_PDF).  Any ideas how to fix this?  I am probably going to have to create a new structure(s) to get this working.
    Regards,
    Dion

  • How to set up Adobe Printer to save .pdf in folder

    Good morning.
    I am looking for guidance on how one can set up a virtual "adobe" printer that saves a print job as a .pdf in a specific shared folder.
    Example:
    1. External application creates a print job
    2. Print job goes to a pre-named, virtual printer.
    3. The virtual printer accepts the print job
    4. The print job is turned into a .pdf document and the document is saved in a shared folder.
    Additionally, can the naming convention of the saved folders be "dynamic"?  In this scenario, a print job named "ABC123" is saved as "ABC123.PDF" and another print job named "XXX900" is saved as "XXX900.pdf", etc.
    Appreciate the help.
    medina

    Yes.
    Ideally it would be installed on the application server where the job is generated and sent to the specified printer (internal settings). Then when the job hits the printer it drops a .pdf in a shared folder.
    Appreciate the help.

  • I will try to print from word to the Adobe printer.  Sometimes it just freezes.  I cannot select another printer.

    I will try to print from word to the Adobe printer.  Sometimes it just freezes.  I cannot select another printer.  It’s like all my printers are gone.  Sometimes I get an “Unable to Connect” error and sometimes I get “1 document in printer queue”.  No matter what printer I choose after I try to go to Adobe, I cannot connect to a printer.  The only solution I have come up with is a clean reboot which I can't afford to do 4-5 times a day.
    Currently on Acrobat XI Pro 11.0.09

    Hi Tymuls,
    The first step I would try is delete the Adobe pdf printer and then repair Acrobat.
    Repairing Acrobat will bring back the pdf printer. We released an update yesterday i.e. 11.0.10. try updating to the latest version and check.
    Have you tried uninstalling the software and reinstalling it.
    You might also want to check the performance in a new admin user account.
    Regards,
    Rave

  • Display tree hierarchy in adobe print form scenario

    Hi
    Can someone suggest what is the best way to create a tree structure in adobe print scenario ? can we display icon also next to the text in the tree. For example I want to get folder and file icons also along with their names in hierarchial manner.
    Regards
    vishal

    hi,
    to populate the dropdown list you can do it...
    1). manually or 
    2). by code
    1). <b>manually</b> go to interactive form->edit
         go to Object tab->field tab ->
         you must see something like
         List Items :
         Text     + x
         click on the green + sign...
         it promps you to type. type in the value press enter... and so  on...
    2) <b>by Code...</b>
        //set up contents of a drop down list dynamically...
        IWDAttributeInfo countryInfo = wdContext.nodeTravelData().getNodeInfo().
                getAttributeInfo().getAttribute("DestinationCountry");
        ISimpleTypeModifiable countryType =
                countryInfo.getModifiableSimpleType();
        IModifiableSimpleValueSet countryValueSet  =
                countryType.getSVServices().getModifiableSimpleValueSet();
        countryValueSet.put("1","Germany");
        countryValueSet.put("2","UK");
    This will work....
    regards,
    -amol gupta

  • No Adobe Printer installed with Acrobat XI Pro

    I have recently replaced Acrobat 8 Pro by XI Pro on a machine running Win XP Pro SP3. After installation, the Adobe printer was missing in the printer menu, and attempts failed to use the "Make pdf" button from within MS Office applications. When prompted to re-install, I did so, but the problem remained. 

    What version of Office? Acro XI only supports 2007 ansd 2010. The printer should be available, though....
    Mylenium

  • I am unable to create pdf using adobe printer to a redirected folder on a server running windows server 2003

    I am unable to create pdf using adobe printer to a redirected folder on a server running windows server 2003

    In the app-server-ant.xml file, as indiacted in the error message i am getting, at line 145 it is suppose to get the path to \bin\asadmin.bat from the value of a paramater called 'asadmin'. This value is being set in the beginning of the file.
    The parameter value of 'asadmin' is further referring to value of another parameter called 'javaee.home' which is being set in tut-install/javaeetutorial5/examples/bp-project/build.properties
    I have checked the values of both these parameters and they are set correctly, so since it is still giving me problems, at line 145 i hard coded the path instead of the parameter name:
    I replaced line
    <exec executable="${asadmin}" failonerror="${failonerror}" dir="${javaee.home}">
    with
    <exec executable="c:/sun/appserver/bin/asadmin.bat" failonerror="${failonerror}" dir="${javaee.home}">
    This works.

Maybe you are looking for

  • Problem with podcasts in playlists

    I have a smart playlist set that plays only stuff put on my ipod that day - back in the old days (a couple of weeks ago) I used to be able to listen to music, and newly downloaded podcasts, all from the same playlist. Now, although everything added s

  • What files need to be cleaned periodically in Oracle Apps R12 ?

    Hi In Oracle Database, periodically we clean alertlog,trace files from bdump,udump,cdump directories and at AIX OS level, /usr/tmp, /var/tmp, /root,we clean .tmp,.log files. Similarly,what files needs to cleaned from Oracle Apps R12 directories perio

  • Message Status "Scheduled", Queue Status "Queue Stopped"

    Hi friends, My scenario is from Peoplesoft -> XI -> BI Message has reached BI, but in SXMB_MONI, its showing Message Status as "Scheduled" and Queue Status "Queue Stopped". How to proceed further ? How can I start that queue ? Thanks ain advance, Nee

  • Creating Excise Invoice in J1IJ

    Hi SAP Gurus, Iam trying to create Excise invoice for the current month  in J1IJ - depot sales, using the delivery number of previous month i.e; before March 31st. It is giving the new excise series number. The user was wanting the old  series for la

  • Problems after updating to ios6

    Just updated my 3GS to ios6 and cannot send emails or connect to my vehicle's bluetooth. My email states my email address has been "rejected by server". My passwords and ID's are correct. Any ideas what I'm doing wrong?