Adobe Reader error with SAP interactive form in Web dynpro ABAP

Hi,
We are having a strange intermittent problem with Adobe Reader. When we try to open PDF files from SAP Frontend we get an error pop-up. The pop-up does not have any text. The title of the pop-up has "Adobe Reader". There is a blue question mark and an OK button. The form is inserted into Web Dynpro ABAP page. This web dynpro application is executed in SAP GUI by this program:
REPORT  TEST1 MESSAGE-ID SWDP_RUNTIME.
start-of-selection.
  CALL FUNCTION 'WDY_EXECUTE_IN_PLACE'
    EXPORTING
     PROTOCOL               = 'HTTPS'       " HTTP | HTTPS
    INTERNALMODE           = 'X'    "SPACE - browser is started
    PARAMETERS             =
      APPLICATION            = 'Z_FORM'
     CONTAINER_NAME         = 'TEST'
    EXCEPTIONS
      INVALID_APPLICATION    = 1
      BROWSER_NOT_STARTED    = 2
      OTHERS                 = 3.
  IF sy-subrc EQ 1.
    MESSAGE a400.
  ELSEIF sy-subrc = 2.
    MESSAGE a401.
  ELSEIF sy-subrc = 3.
    MESSAGE a667.
  ENDIF.
Adobe Reader version is 9.1.2
Is there any solution for this?
Many thanks for answer.

Jiri,
The reason why I thought downgrading would help is because Reader 9 and above is probably not fully supported by SAP yet.
You can maybe open an OSS and see if Adobe 9 is fully supported or not.
Chintan

Similar Messages

  • How to View Smartforms or SAP Script Forms in Web Dynpro ABAP

    Do anyone have idea of how to View Smartforms or SAP Script Forms in Web Dynpro ABAP?
    Please let me know. Thanks

    Hi Sameeksha,
    You can display an smartform in WDA as an pdf file. Try go through this [article |https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0de1eb8-0b98-2910-7996-8a3c2fcf6785]where Nanda does explain about the same.
    Regards,
    Uday

  • Interactive form in web dynpro abap

    hi experts,
                   i am beginner to adobe interactive form in web dynpro using abap.
    my scenario:
                        To  use  interactive form ui element  and place all fields of lfa1 in view.
         my context look like
                       context:
                                    adobe(node 1, 1:n, singleton = true)
                                       lfa1(node2,1:n,singleton =true) with its fields.
                                       pdf_source(attribute)
                       layout type : zci layout and xml interface.
        my view look like:
                                    all fileds of lfa1.
                                    button-add.(to add to below table)
                                    table.
                                    button-submit to sap.
    i want to place all fields in view and get values from the user online and need to display the same in an table in same view and
    when the user click ok entered values should be displayed  in table  and after clicking submit to sap it should hit the database table.
    as i am beginner dont know how to do.pls i need ur help in finishing it.thanks in advance.
    cheers,
    vinoth.

    hi all,
             expecting reply from u all. pls help me and give some sugesstion.
    regards,
    vinoth.

  • ADOBE INTERACTIVE FORMS in Web dynpro ABAP

    Hi
    Iam new to this Web dynpro ABAP.I can able to import the pdf file in the Web dynpro ABAP.While i was taking the values in the "Data View"....Iam getting
    "Adobe live cycle designer" has encountered a problem.we are sorry for the inconvinience..."
    Please help me where i went wrong.
    Regards
    Sushma

    Hi,
    i am getting warnings in the pdf.
    "Field f1 may not work properly.Using Normal Data Binding when the default data connection is defined and produces undefined data results.
    can you give more details...so that i shall try to help you.
    any how one more advise we have sepate forums for adobe forms try in this too.
    [Web Dynpro ABAP;
    Regards,
    Mahesh.Gattu

  • Interactive Form within Web Dynpro ABAP

    Hi,
    I've an Adobe interactive form element within Web Dynpro ABAP view. I've more than one WebDynproActiveX buttons within the Interactive form (like Submit, Cancel, Clear).
    How can I differentiate the user selection within Webdynpro  ? Whether the user selected Submit or Cancel or Clear ? Can we associate any function code for each button ?
    Thanks
    Ravikumar

    Hi Ravi,
    You can take a context attribute lets say "STATUS"(string) in your form context.  For your buttons in the form, in click event set the value. like
    STATUS.rawValue = "1";      (eg Submit)
    STATUS.rawValue = "2";      (eg Cancel)
    And in your submit event read this context attribute and you can use CASE like when 1 , when 2 etc and you can execute your code accordingly.
    it should solve your problem.
    With Regards,
    Ravi.D

  • Dropdown help on Interactive form in Web Dynpro ABAP.

    Hi all,
    we are creating an SAP Interactive forms for the Material Master Creation.
    We want the value help to be displayed in dropdown boxes for various mandatory fields to be filled up by the user.
    Please suggest how to do that??
    These helps are there when we create a material master through Transaction mm01.

    Hi Sasidhar,
    Could you please clarify.
    I had taken a value node in the Context of the view for the field for which i have to display the value help.
    I have also bound this value node to the dropdown list on the form by specifying it in the binding tab. Still i am not getting the help.
    Do we have to write some code for that in the method tab of the view??

  • Adobe Interactive Form in Web Dynpro ABAP

    Hi all.
    I want to create an web dynpro application in ABAP using an Adobe Interactive Form. Can anybody share the document regarding this or any articles.
    Thanks & Regards
    Sagar Ingalwar

    Hi,
    it is so simple..
    1) Create AdobeInteractiveForm UI element in your screen.
    2) Create pdf_source for pdf source  attribute to bind it should be byte data.
    3) Create node for data Source. (The data which you want to place on the pdf form)
    4) right click on interactive form UI element & edit
    5) PDF editor will be open.
    6) drag the required data fields from data source to the form.
    7) place submit button on the form.
    Finally there are two kinds of interactive modes
    1) native mode (it runs on firefox browser)
    2) active X mode (it runs on Internet Explorer 6)
    Please use appropriate submit button on the form (i.e. native/ActiveX submit button)
    Best Regards
    Ravi

  • Interactive form and web dynpro abap

    Hi All,
    I'm working on a web dynpro application that embeds an interactive forms.
    When I sent the property "enabled" of the interactive form to false , the form is displayd.
    When I sent the property "enabled" of the interactive form to true, the application dumps :
    "WebDynpro Exception: The ADS call has failed. You can find information about the cause in the error.pdf on the application server "
    Do you know where this comes from?
    Thanks,
    Archana

    It looks like the ADS (adobe document services) is not (properly) installed.
    There are some test reports to check this:
    FP_PDF_TEST_00
    (FP_PDF_TEST*)
    Edited by: Micky Oestreich on May 29, 2009 2:58 PM

  • Adobe Reader error when downloading a Form (IMM5257E - required for CIC - Canadá)

    I received an error when downloading a file viwh the Adobe Reader version 11.0.07.
    A message like this appear:
    To view the full contents of this document, you need a later version of the PDF viewer.

    Pat Willener!
    GREAT THANKS! GREAT THANKS! GREAT THANKS!
    I was using Google Chrome, and did not suspect that this could be the
    problem.
    I used I.E. and the download worked. So that's it.
    Great thanks again.
    Vilson Drehmer
    Rua Balduíno Pedro Vier, 693
    CEP 95.880-000 - Estrela - RS
    Fone: (51) 8401.2253
    E-mail: [email protected] <[email protected]>
    CRA-RS 6364
    2014-05-28 5:26 GMT-03:00 Pat Willener <[email protected]>:
        Adobe Reader error when downloading a Form (IMM5257E - required for
    CIC - Canadá)  created by Pat Willener<https://forums.adobe.com/people/pwillener>in *Adobe
    Reader* - View the full discussion<https://forums.adobe.com/message/6414530#6414530>

  • Adobe Interactive Forms without Web Dynpro and ACF???

    Hi All, we would like to build an interactive forms solution based on the Adobe software integrated into WAS. However, the customer requires a true thin client application with no additional installation on the client. Integrating Adobe Interactive Forms into Web DynPro however requires the Active Component Framework (ACF) to be installed since these forms are integrated into the page within an ActiveX container.
    So the question is whether there is a way to use Adobe Interactive forms including the Adobe Documents Service within WAS but without(!) using Web Dynpro?(the full blown Adobe LifCycle Forms solution is not an option). Any suggestions on this are highly appreciated!
    Tanks!
    Frodo

    Hello everyone,
    I would like to add a couple of points from the SAP Product Management perspective.
    Adobe has a number of stand-alone products that are the foundation for what SAP can now offer thanks to our partnership. This is exactly why we decided on a partnership that provides us with established technology, which is now integrated.
    It is true that Web Dynpro is the main SAP way of integrating the interactive functions of the solution. We made this decision consciously, because the development and run-time environments provide very useful features that reduce the need for manual coding, such as the possibility of passing the data back to the backend using the Web Dynpro context. The automatism we offer here needs to be implemented from scratch with any other solution, including the Adobe stand-alone one.
    While it is true that the ACF constitutes a certain limitation for the reasons you mention, Adobe will remedy this in 2005. The Reader/Web Dynpro integration will be available later this year for multiple platforms (OS, browsers) and will not require ACF anymore.
    If you do not want to use a full-blown Web Dynpro application for your concrete scenario, consider developing an application that provides nothing but the interactive PDF form to the end user, to be filled in using the stand-alone Reader. The submit of the form data (with or without the PDF itself) could then happen via HTTP or e-mail.
    Kind regards,
    Markus Meisl
    SAP NetWeaver Product Management

  • Adobe interactive forms in Web Dynpro.

    Hi all,I'm facing a problem about the interactive form, in Web Dynpro I add a interactive form to a view, when the property "Enabled" is unchecked, the form displayed with no interactivity functions, when I changed it to "checked", the system displayed a error.
    the form layout type I chose is "xACF", and the display mode is active X.
    in SFP, I add a text-field and a button in the form.
    Could anyone help me?
    Edited by: huaizhi lee on Mar 10, 2008 3:14 AM

    Go Through the following document.
    It will give you good overview.
    Interactive Forms-->Functionality
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0401535-f81c-2a10-0192-ffd41e8e8d59
    Cheers
    Satya

  • Adobe interactive forms in web Dynpro java

    Hi Everyone,
    I am new to webDynpro development and as I am working on Interactive forms, I need pdf's and related materials for the same.
    I mean pdf's for how to create Adobe interactive forms in web Dynpro java.
    Thanks in advance.

    Go Through the following document.
    It will give you good overview.
    Interactive Forms-->Functionality
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0401535-f81c-2a10-0192-ffd41e8e8d59
    Cheers
    Satya

  • Problem when generating an non-interactive form in Web Dynpro java.

    Hi,
    I'm trying to create a PDFDocument using a creation context in java. Everything works fine when the Interactive property of the creation context is set to true. When I change it to false however, the Web dynpro application hangs and eventually throws the following exception:
    java.net.SocketTimeoutException: Read timed out
       at java.net.SocketInputStream.socketRead0(Native Method)
       at java.net.SocketInputStream.read(SocketInputStream.java:129)
       at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
       at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
       at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.readLine(HTTPSocket.java:806)
    I'm wondering why this exception occurs when i'm generating a non interactive form and never appears when i'm generating a form with the Interactive property set to true.
    Any ideas?
    Edited by: Arjan Nieuwenhuizen on Feb 25, 2008 3:24 PM

    Yeah I know changing the form properties will solve my problem, but since i'm developing a training for Interactive Forms in Web Dynpro Java, I wanted to figure out why the (static / non-interactive) combination didn't work, turned out to be a template problem, which i still didn't figure out, except the fact that having flowed content on your template is not the problem.
    My ideas about your question:
    When we have the layout of an Interactive Form, its clear if it's meant to be static or dynamic, we don't know however, if it's interactive or non-interactive.
    I don't think we can judge a layout to have an Interactive or non-interactive purpose, can depend on the situation in which the same form is shown/used:
    - One moment it can be interactive, e.g. user is filling in the form, can enter data etc.
    - Next moment it can be non-interactive, e.g. form is shown to another user.
    So it's more the scenario/situation that determines if the form is interactive or non-interactive.

  • Calling adobe form from Web Dynpro ABAP

    Hi Friends,
                        This is the following error, which i got when i tested my application. Calling adobe form from Web Dynpro ABAP.
      WebDynpro Exception: ADS: Request start time: Tue Nov 16 14:00:22 YEKT
      2010(200,101).
                        Can some one tell me how to solve this....
    Regards
    Sankar

    Hi,
    Please refer to this same link in forum
    WebDynpro Exception: ADS: Request start time, start Interactive Form
    WebDynpro Exception: ADS: Request start time
    Thanks
    Pradeep

  • Interactive forms in web Dynpro 4 ABAP

    Hi,
    where can i get the step by step procedure to use INTERACTIVE form in Web Dynpro4 ABAP
    Thanks
    SAI

    Hi,
    see http://help.sap.com/saphelp_nw2004s/helpdata/en/2c/241a427ff6db2ce10000000a1550b0/frameset.htm
    and also have a look at the e-learning tutorials by Thomas Jung in SDN.
    Regards, Heidi

Maybe you are looking for

  • How to handle Back button in IA06 BDC

    Hi all, I am calling IA06 inspection screen for an task list operation using BDC from my custom program. on this screen user can change the SAP data. if I save the task list then it's working fine. But I have one issue how to control back button, whe

  • Data lost when subtotaled

    Good time of the day to all the experts! We've hit an issue in Analysis Services that we have a very hard time explaining. We've noticed that the issue occurs more often than not, when there are data changes to one of the hierarchies in the cube. Let

  • Hyper-V Failover Cluster - 4 NIC - QoS

    Dear All,            Please have a look at the link below: http://technet.microsoft.com/en-us/library/jj735302.aspx#bkmk_1 I am trying to achieve the third configuration (4 NICs in two teams), which is thrid on the list. I have built two NIC Teams as

  • Local Storage Used When Using iMatch?

    I'm using iMatch and streaming music to my iOS device.  I'm curious if I'm using local storage space on my iOS device when doing so, and if so, is there a way to clear space as needed?

  • How can I get a copy of OS X leopard

    I bought my iMac about 6 months ago but it did not come with, a cd or dvd for leopard installation. Who should I contact to receive a copy of such discs.