Adobe Form - non-Interactive Pdf Print - Access to table cell

Hi experts
I am new to Adobe Print Form (non-interactive flowed form) and I am desparately need your help.
I am merging table data from a context into a table on a form layout and then use function call to generate a print form and send it out as an email. Sofar, everything works fine - except one of the requirement that if , on any row, a cell value in column 1 > 5 (i.e. example), set the font color to red.
I tried all sort of ways (in JavaScript) - but cannot get hold of the cell to check the value. Please show me
1) how to get to the cell in Javascript
2) in What event that I must place the Javascript in
At the moment, I have the form layout as followed:
Data
| Report
| | Table1
| | | Header
| | | | ...........H_Fd1
| | | | ...........H_Fd2
| | | Row
| | | | ...........R_Fd1
| | | | ...........R_Fd2
etc...
There are no reference to "table" object in Adobe lc designer - If you have please also send me some
Thanks
Points will be rewarded for any reply.

Hi
  JS to fetch a the value of a field in a table is
xfa.resolveNode("form_name.subform_name.table_name.Row1["Row Index"].column_name[0]").rawValue;
You can write the code in the exit or validate event of the second column
Thanks
Gopal

Similar Messages

  • Digital Signatures in Adobe Forms (Non-Interactive)

    Hi everyone,
    I need to sign a receipt that will be sent by e-mail. The form is non-interactive, it´s only a simple receipt. This form may be printed or sent by e-mail; in case of being sent it must be signed before sending it. The receiver should be able to open it using Adobe Reader.
    I´ve read other posts/help about singatures in Adobe Forms, but none of them of non-interactive forms; I need to know if it is possible to do this if the form is not interactive, and how it can be done.
    Thanks!
    Pablo

    Hi Jinal,
    Here it goes:
    report fp_pdf_test_07.
    * set signature
    class cl_fp definition load.
    selection-screen begin of block s_files with frame title text-100.
      parameters: p_pdf(64)    type c lower case obligatory,
                  p_out(64)    type c lower case obligatory.
    selection-screen end of block s_files.
    selection-screen begin of block s_conn with frame title text-101.
      parameters: p_dest       type rfcdest default 'ADS' obligatory.
    selection-screen end of block s_conn.
    selection-screen begin of block s_sig with frame title text-102.
      parameters: s_key(64)    type c lower case,
                  s_field(64)  type c lower case,
                  s_reason(64) type c lower case,
                  s_loc(64)    type c lower case,
                  s_cinfo(64)  type c lower case.
    selection-screen end of block s_sig.
    types: ty_raw(255) type x,
           ty_tab type standard table of ty_raw.
    data: l_filename_pdf   type string,
          l_filename_out   type string,
          l_fp             type ref to if_fp,
          l_pdfobj         type ref to if_fp_pdf_object,
          l_pdf            type xstring,
          l_out            type xstring,
          l_fpex           type ref to cx_fp_runtime.
      l_filename_pdf = p_pdf.
      l_filename_out = p_out.
      perform load_file using    l_filename_pdf
                        changing l_pdf.
    * get FP reference
      l_fp = cl_fp=>get_reference( ).
      try.
    *   create PDF Object
        l_pdfobj = l_fp->create_pdf_object( connection = p_dest ).
    *   set document
        call method l_pdfobj->set_document
          exporting
            pdfdata = l_pdf.
    *   set signature
        call method l_pdfobj->set_signature
          exporting
            keyname     = s_key
            fieldname   = s_field
            reason      = s_reason
            location    = s_loc
            contactinfo = s_cinfo.
    *   execute, call ADS
        call method l_pdfobj->execute( ).
    *   get result -> l_out
        call method l_pdfobj->get_document
          importing
            pdfdata = l_out.
      catch cx_fp_runtime_internal into l_fpex.
        perform error using l_fpex 'INTERNAL ERROR'.
      catch cx_fp_runtime_system into l_fpex.
        perform error using l_fpex 'SYSTEM ERROR'.
      catch cx_fp_runtime_usage into l_fpex.
        perform error using l_fpex 'USAGE ERROR'.
      endtry.
      check l_fpex is initial.
    * download PDF
      data: l_len      type i,
            l_tab      type tsfixml.
      call function 'SCMS_XSTRING_TO_BINARY'
        exporting
          buffer                = l_out
        importing
          output_length         = l_len
        tables
          binary_tab            = l_tab.
      call method cl_gui_frontend_services=>gui_download
        exporting
           bin_filesize            = l_len
           filename                = l_filename_out
           filetype                = 'BIN'
        changing
           data_tab                = l_tab
        exceptions
           others                  = 1.
      if sy-subrc = 0.
        write:/ 'Datei erfolgreich geschrieben'(001).
      else.
        write:/ 'Fehler beim Schreiben der Datei'(002).
      endif.
    form error using p_fpex type ref to cx_fp_runtime
                     p_str  type string.
    data: l_errcode  type i,
          l_errmsg   type string,
          l_string   type string.
      write:/ '***************************************************'.
      write:/ '***', p_str.
      write:/ '***************************************************'.
      skip 2.
      call method p_fpex->get_errall
        importing
          errcode  = l_errcode
          errmsg   = l_errmsg.
      write:/ 'ERROR CODE       : ', l_errcode.
      write:/ 'ERROR MESSAGE    : ', l_errmsg.
      l_string = p_fpex->get_text( ).
      write:/ l_string.
    endform.
    form load_file using    p_filename type string
                   changing p_content  type xstring.
    data: l_rawtab type ty_tab,
          l_len    type i.
      call method cl_gui_frontend_services=>gui_upload
        exporting
          filename                = p_filename
          filetype                = 'BIN'
        importing
           filelength             = l_len
        changing
          data_tab                = l_rawtab
        exceptions
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          not_supported_by_gui    = 17
          error_no_gui            = 18
          others                  = 19.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                   with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      perform convert_tab_to_x using    l_rawtab l_len
                               changing p_content.
    endform.
    form convert_tab_to_x using    p_rawtab type ty_tab
                                   p_len    type i
                          changing p_xstr   type xstring.
    data: l_line  type ty_raw,
          l_count type i,
          l_len   type i,
          l_rest  type i.
      describe table p_rawtab lines l_count.
      loop at p_rawtab into l_line.
        if sy-tabix = l_count.
          l_rest = p_len - l_len.
          concatenate p_xstr l_line(l_rest) into p_xstr in byte mode.
        else.
          concatenate p_xstr l_line into p_xstr in byte mode.
          add 255 to l_len.
        endif.
      endloop.
    endform.
    Good Luck!
    Pablo

  • Adobe forms, non-interactive (HR)

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generate the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generate the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

  • Adobe form -Non Interactive - Line across when we have any entry

    Hi,
    In my line items I need a horizontal line separtor based on a field.
    I mean when there is an entry(ITEM A) I need it to be underlined alll through the form horizontally or a horizaontal separator line.
    I have follwoing output
    ITEM A         10.00        20.00
                        40.00        60.00
                        65.00        80.00
    ITEM B         30.00        40.00
                        70.00        45.00
                        23.00        22.00
    ITEM C         32.00        20.00
                        221.00      60.00
                        65.00        80.00
    I need output
    ITEM A         10.00        20.00
                        40.00        60.00
                        65.00        80.00
    ITEM B         30.00        40.00
                        70.00        45.00
                        23.00        22.00
    ITEM C         32.00        20.00
                        221.00      60.00
                        65.00        80.00
    I am expecting we should do this via javascript.
    Any ideas?
    Rgds
    Vara
    Edited by: Vara K on Apr 20, 2009 4:57 PM
    Edited by: Vara K on Apr 20, 2009 5:11 PM

    Petr,
    I am following you now.
    I have created a group section with both rows.I went into edit alternatives .
    Now I have 2 rows with DATA(0)  and DATA(1).
    Basically I have to use underlined DATA(0) one  when field has no value
    and other DATA(0) when field has value.
    So basically my pop -up box has javascript
    Name: DATA[0]      Binding : DATA
    Expression:
    PHCODE.value == ""
    Name: DATA[1]      Binding : DATA
    Expression:
    PHCODE.value != ""
    Do i need to write something else in expression for this?
    Although I don't have value for that rows Now I am getting bottom lines for every row.
    If i use null like below I am only getting rows with bottom lines and remaining are disappearing.
    Expression:
    PHCODE.value == null
    Name: DATA[1]      Binding : DATA
    Expression:
    PHCODE.value != null
    Is my expression correct?
    What is operator for checking not equal to in javascript? is it !=? or !==?
    Rgds
    Vara
    Edited by: Vara K on Apr 23, 2009 6:05 AM

  • Non-interactive PDF forms & licences

    Hello,
    I need an advice. I created WD application using non-interactive PDF form. Actually I used UI element InteractiveForm but we didn't place any editable element (text box, dropdown list, ...) into it. We just want to generate the PDF form dynamically. And now we need to know whether it's necessary to buy any licence for this use case. Does somebody know that?
    After deployment I can't open the PDF form. The report "500   Internal Server Error ..." is displayed and there is message "... The error is: com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to UPDATEDATAINPDF ..." in defaltTrace file.
    Thank you in advance!
    Regards
    Zbynek

    Thank you very much! The answer was really helpful. But I have one more question. I have changed preview type from INTERACTIVE FORM to PRINT FORM as you recommended but it still doesn't work.
    There is written "
    ...PDFObjectRuntimeException: Processing exception during a "UsageRights" operation.
    com.adobe.ProcessingException: Could not retrieve a password for credential: ReaderRights.
    " in defaultTrace file.
    Till now I didn't asked SAP for sending credential. Now I did that. Do you think that it could be the problem? I thought it's not necessary for non-interactive forms.
    Regards,
    Zbynek

  • Non - interactive PDF form needs to be typed in

    I have a PDF form, non-interactive, which I would like to type the answers into. Easiest and most effective way to do this? Thanks,
    Jay

    Hi Jay,
    "Into" is difficult. "Onto" is workable.
    Open the document in Preview.
    Go File > Save as... and choose PICT.
    Open a New AppleWorks Draw document.
    Drag the PICT version of the pdf document into the Draw doc (or go File > Insert to insert the file).
    If necessary, resize the image to fit the page.*
    For each answer:
    Choose the Text tool from the Tools palette, and drag a Text frame onto one of the answer spaces.
    Type in the answer.
    Repeat as necessary.**
    When finished, press command-P to get to the Print dialogue, then either Print the document, or click the PDF button to save it as a PDF file.*
    Regards,
    Barry
    *Use Scale by Percent, in the Arrange menu if the image is larger than the page space. Drag the handles at each corner of the image if they're all visible.
    **You can also type a few characters into the first answer space, then press command-D to duplicate the frame, and drag the duplicate(s) to the other answer spaces. Text frames drop off the document if they contain no text.
    *The PDF file will lose sharpness due to recompression each time it is changed and saved.
    B

  • Non-Interactive PDF Form scenario without rthe need of ACF

    Hello experts,
    i have a question for you. I implemented Dynamic Non-Interactive PDF Form scenario and it works fine. But ... If some user wants to generate the PDF form it's necessary to install Active Component Framework on his computer. Problem is that some users doesn't have admin permissions on their PCs and they are not able to install ACF. Do you have any idea how to walk around the problem? For example generate and save the PDF somewhere on server side and then offer download link to end-user....
    Thank you in advance for every reply!
    Best regards,
    Zbynek

    I use Adobe Reader 8.1.2 so I think the problem will be somewhere else.
    There is written
    Step-1: In NetWeaver Developer Studio (NWDS), set the "displayType"
            property of your Interactive Form UI element to "native"
            instead of "activex".
    Step-2: Use the Web Dynpro specific controls from the "Web Dynpro
            Native" library to design your interactive form.
    Step-3: When the application is developed completly, build and deploy
    the application on SAP J2ee engine.
    Step-4: Run the application without having the ACF installed on the
            browser machine.
    in the note 1055911. But I think that we use some controls from other libraries than Web Dynpro Native (step 2). Do you think it could be the problem? The Web Dynpro Native library contains very reduced set of controls.
    Regards,
    Zbynek

  • Change interactive pdf to non-interactive pdf

    Hi
    I have a requirement where by I need to take an existing interactive pdf and convert it into a non-interactive pdf. I'm using LiveCycle Forms 7.2.
    I know Forms can render both types of pdf's is it posible to render the form by value and not reference, what I mean is is it posisble to pass the existing pdf as a parameter in the renderForm() method and Form Server just creates a non-interactive version of the form?
    Thank you

    From the Developer Guide:
    You can render a form design that was created in LiveCycle Designer and saved as a PDF or an XDP file. Set
    the renderForm methods sFormPreference parameter to one of the following values:
    ● PDFFormRenders the form as an interactive PDF document.
    ● PDFRenders the forms as a non-interactive PDF document.
    ● PDFMergeMerges data into a prerendered PDF form.

  • Run Oracle form non-interactively

    I am using Oracle 8i.
    I want to be able to run a form non-interactively, that is, in batch mode.
    The reason for that is that the application is a "turn-key" package and I don't have access to the source. I want to be able to run the form from a UNIX script rather than having a human key in the input.
    I know what the screen fields need to be and which function key to "press".
    Has anyone run a form non-interactively?
    Is this possible?
    Can anyone suggest a way of doing this? I was thinking that the UNIX utility expect may help.

    I think it is better for you to ask this question in Oracle Forms/Oracle Forms Server development forum.
    This issue would better addressed in Development forums.
    Just my 0.02£
    Yury

  • Adobe Forms wo/Interactive Fields Completed in Workspaces?

    Can I complete an Adobe form without interactive fields in Workspaces?  If so, how?

    Unfortunately, there is no way to do this within Workspaces.

  • How to configure adobe forms in OMLV for printing picking slip

    Hello,
    I want to configure a adobe form in OMLV transaction. But there is no column for putting adobe forms.
    Can you tell me how do configure adobe forms for getting it printed from standard transaction whenever a transfer order is created.
    Thanks in advance.

    Hi Ajay,
    You are completely right that you cannot find anything with smartform in the customizing (OMLV). The reason for it: It is not there. It not even exists. Also the latest version of rlvsdr40 has nothing standard concerning smartforms.
    I do not know why it is really necessary to use adobe or smartforms.
    The only way is to build a new one (ZRLVSDR40). In that new one you have to use the sapscriptname (from OMLV)and treat it as a smartform- name.
    I hope my explanation helps. Success.
    Gr., Frank
    Below how a smartform is called (from invoice)
    determine smartform function module
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lf_formname
        IMPORTING
          fm_name            = lf_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
      error handling
        retcode = sy-subrc.
        IF sy-subrc = 1.
          MESSAGE e001(ssfcomposer).
        ENDIF.
        IF sy-subrc = 2.
          MESSAGE e002(ssfcomposer) WITH lf_formname.
        ENDIF.
        PERFORM protocol_update.
      ENDIF.
      CALL FUNCTION lf_fm_name
        EXPORTING
          archive_index        = toa_dara
          archive_parameters   = arc_params
          control_parameters   = ls_control_param
          mail_recipient       = ls_recipient
          mail_sender          = ls_sender
          output_options       = ls_composer_param
          user_settings        = ' '
          is_nast              = nast
          is_vbdka             = vbdka
          is_addres            = addr_key
        IMPORTING
          document_output_info = document_output_info
          job_output_info      = job_output_info
          job_output_options   = job_output_options
        TABLES
          it_vbdpa             = tvbdpa    "Item information
          it_vbdpau            = tvbdpau   "Subitem numbers
        EXCEPTIONS
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          OTHERS               = 5.

  • When will Adobe Reader support interactive PDF elements on iOS?

    When will Adobe Reader support interactive PDF elements on iOS? I don't want to hear the line that Apple won't allow Flash. Adobe needs to get a workaround PRONTO! We need detection of simple buttons and support for Mp4 and f4v - as exported inline by inDesign when creating PDFs.

    Pat Willener, Thank you for your message. I have done what you suggest. I could have sworn I started this topic in the general Adobe Reader discussion. So I have also placed a copy back where I thought I first had it so it can be found by other Windows users who, like me, are creating PDF files because they are meant to comply with an international cross-platform standard and not simply be the domain of one platform over the other.
    *******Enhancement / FMR*********
    Brief title for your desired feature: Support for interactive PDFs
    How would you like the feature to work? When I add a transparent frame containing a  basic Adobe Media encoded mp4 or f4v video, export to interactive PDF from Adobe InDesign, I want the PDF and its interactive videos to work on iPads. See an example file here: ***EXAMPLE PROVIDED***  Click the lefthand top and bottom corners to bring up interactive video elements which should open in floating window, maximized, then have an exit button to close and continue reading the PDF. Of course, this does not function under Adobe Reader for iOS. You also need to attend to audio files embedded in the same way and allow an exit button to close the audio window so the reader can continue reading the PDF on Windows.
    Why is this feature important to you? I create eReaders for schools across the whole country and they are taking up iPads at an unprecedented rate. If Adobe do not produce a solution for interactive PDFs on iOS then I will no longer use InDesign, Acrobat, Adobe Media Encoder or Photoshop to create works in the future. You're looking at a massive education market that will leave Adobe behind if this is not acted upon very very soon. For some publishers it's already too late and they have moved to app based creation tools.

  • Interactive-adobe form Converting into PDF without print dialog

    Hi Friends,
    I would like to convert Interactive - adobe form into PDF without print dialog.which adobe form interface type is Smart Forms-compatible Interface.I have tried for solution.but I could not succeeded.How can resolve the issue.please help me.
    Thanks
    Ramesh M

    Hi Friends,
    I would like to convert Interactive - adobe form into PDF without print dialog.which adobe form interface type is Smart Forms-compatible Interface.I have tried for solution.but I could not succeeded.How can resolve the issue.please help me.
    Thanks
    Ramesh M

  • Performance Problem with Adobe Print Forms (Non-Interactive)

    Hi Team,
    I have a <b>Web Dynpro ABAP</b> application with a print button which actually launces an Adibe print form (NOT Interactive) for the WDA data context. The scenario is for a Purchase Order in the ERP system. The problem is regarding performance when the line items are more then 150. The Adobe form is very simple WITH NO scripting and a plain tabular display of the line items. It takes around 4 minutes to load the form which has only 5 pages and is causing the WDA application to time out. Following are the configuration/Design details:
    ADS Version: 705.20060620101936.310918
    Adobe Reader 7.0, Version 7.0.9
    Adobe Live Cycle Designer 7.1, Version 7.1.3284.1.338866
    <b>FORM Element in WDA</b>:
    displayType = activeX (Should this be native for performance improvements?)
    "enabled" is not checked
    readOnly = 'X'
    <b>SFP Settings for the template Form</b>
    Layout Type in Properties = Standard Layout (Should this be xACF or ZCI for performance improvements?
    Interface type for the Form Interface = XML Schema-Based Interface
    <b>We are on 2004s release SP10</b>
    <b>Specific Questions:</b>
    1) Any recommendations for the above settings to improve performance?
    2) The form design is very simple with no complexity. The Table element is very basic and as per the blogs given in SDN. NO Scripting is performed.
    Any help, recommendations would be greatly appreciated.
    Regards

    Hi Sanjay,
    i would suggest you to have ZCI layout (native).
    Set the form properties to be cached on server (refer performance improvements in the Adobe LC Designer help).
    The performance will also depend on the ADS and also the network, including the R/3, as all these components come into picture.
    Hope these points, if you have not checked already, will help you.
    - anto.

  • Acrobat X Pro v10.1.9: Cannot print to Adobe PDF Printer (access is denied)

    Hello.
    Suddenly I was not able to print Office 2013 files / Autocad files / Internet Explorer pages directly to Adobe PDF Printer anymore on my WINDOWS 7 Ultimate x64 sp1 computer.
    I have tried to uninstall and reinstall Acrobat X Pro, but the issue was not resolved.
    Neither after updating to the latest version (10.1.9).
    When I try to print from any software (Office 2013 / AutoCAD 2012 / Others), are displayed two windows:
    a) the first one named "Printing (not responding)", with the information: "now printing the file..."
    b) the second one named "Save PDF File As", to where I do not have access to the filename fied to insert it neither to click the "cancel" button to abort the print dialog. It seems that this window is not active.
    I have to click on the red "X" button on the first window to shutdown the application. Here is the error dialog I got:
    Description:
      A problem caused this program to stop interacting with Windows.
    Problem signature:
      Problem Event Name: AppHangXProcB1
      Application Name: EXCEL.EXE
      Application Version: 15.0.4551.1510
      Application Timestamp: 528bece9
      Hang Signature: c8e1
      Hang Type: 32
      Waiting on Application Name: acrotray.exe
      Waiting on Application Version: 10.0.0.396
      OS Version: 6.1.7601.2.1.0.256.1
      Locale ID: 1033
      Additional Hang Signature 1: c8e100fcd630e6760c7abd2fba3f982e
      Additional Hang Signature 2: ae17
      Additional Hang Signature 3: ae17043737b8c27016deab1151342ddf
      Additional Hang Signature 4: c8e1
      Additional Hang Signature 5: c8e100fcd630e6760c7abd2fba3f982e
      Additional Hang Signature 6: ae17
      Additional Hang Signature 7: ae17043737b8c27016deab1151342ddf
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    When I try to print a webpage in Internet Explorer using the same printer, I get an "Adobe PDF" window stating "Access is denied".
    Can anyone help me restoring this feature?

    The reinstall is typically the last ditch effort to do. The first step is Help>Repair and Help>Updates. As far as Office 2013, the PDF Maker of AA X is not compatible and you can only print. In your list of errors it showed a problem with AcroTray.exe. As a first step, go to the print and select print-to-file. The file will be a PS file (maybe with a PRN extension). Once the printer if finished, open the file in Distiller to complete the process. If that is successful, then the problem is with AcroTray. Check your running tasks to be sure AcroTray is indeed running. If not, that is likely the problem. If it is, then restart it (it is located in the Acrobat folder). AcroTray provides the interface between the PS creation and Distiller to automate the process of creating the PDF.

Maybe you are looking for