ADOBE Interactive Form not getting displayed in Browse

Hi,
Currently I am working on EhP4 project on ECC 6.0 environment. For HCM, We have interactive ADOBE forms for MSS. While testing we found that all buttons are displayed in a browser (we are are window 7 IE 8 ) but interactive form is not getting displayed in the browser (Fill out Form as part of MSS).  It only displays a line
Checked ADS configuration as per oss note and works ok. Did HTTPWATCH - browser is getting (GET) the Adobe forms with values but not displaying it. If I copy URL from HTTPWATCH GET line in a separate browser window it displays the form.
Thanks in advance your help.
Regards
Jitendra Pongurlekar

Hey Chris (and others),
We were having this same problem, and this Note fixed the issue (thanks!).  However, we are still experiencing another issue with HCM Processes and Forms under EhP4.  Before this Note, it took about ten minutes before "single line display" would show up.  Now after the Note, we get the full form, but it still takes ten solid minutes of waiting before it appears in the window.  We're pretty sure it's not a Portal issue, nor an ADS issue, but something with the web dynpros on the ABAP side.  However, we have not yet been able to resolve it.  Anyone else run into this performance problem with HCMP&F after upgrading to EhP4?  We don't have the problem with EhP3.
Best regards,
Matt

Similar Messages

  • Adobe Form NOT getting displayed in WebDynpro Modal Window  (Pop Up)

    Hi,
    I am trying to display the table data in a Interactive Form. I have used TABLE UI element in Interactive Form. When the user clicks on a EXPORT button this form is displayed in a pop up window (Modal Window). This form is not getting displayed for most of the users. In some PC's it is getting displayed, strange is all their browser versions and OS versions are same.
    Portal Version: NW04s SP8
    NWDS Version : NW04s SP8
    Adobe Live Designer: 7.1
    Acrobat Reader: 7.0.8
    I tried changing the display type (property of Interactive Form Element) to NATIVE, it is not working at all. If i change it to "activeX", then it works in some PC's.No logs are found in the server as well as in the client PC as well.
    Please let me know if you have come across this problem, looking forward to your solution.
    Thanks
    Senthil

    Hi,
    It seems to be available only for ABAP version. I cant find it in the java version.. check this..
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/656442a1c4de54e10000000a155106/frameset.htm">Help SAP Link for Java Reference</a>
    And even in ABAP , the pre-requisite seems to be installation of ACF,
    The exact words
    <i>
      Adobe Reader (>= 7.0) and, if you are creating interactive forms, also the ActiveX Control Framework (ACF) installed on your computer. Also see SAP note 834573.</i>

  • Adobe Form not getting displayed in WebDynpro Modal Window

    Hi,
    I am trying to display the table data in a Interactive Form. I have used TABLE UI element in Interactive Form. When the user clicks on a EXPORT button this form is displayed in a pop up window (Modal Window). This form is not getting displayed for most of the users. In some PC's it is getting displayed, strange is all their browser versions and OS versions are same.
    Portal Version: NW04s SP8
    NWDS Version : NW04s SP8
    Adobe Live Designer: 7.1
    Acrobat Reader: 7.0.8
    I tried changing the display type (property of Interactive Form Element) to NATIVE, it is not working at all. If i change it to "activeX", then it works in some PC's.No logs are found in the server as well as in the client PC as well.
    Please let me know if you have come across this problem, looking forward to your solution.
    Thanks
    Senthil

    Hi,
    even though this is quite an old post, it still could be worth for someone to have a look at Note 1342716.
    Michal

  • Adobe Form not getting displayed on the portal

    Hi,
    From the MSS portal when I run the process, the associated adobe form(using HCM) doesn't get displayed on the portal. Initially the problem was with higher version of acrobat reader but now it is solved. Now I am not getting any error or warning but adobe form still not getting displayed.
    Please help.

    Later

  • Adobe Interactive Form Not Editable

    Hi,
        I have created Adobe Interactive Form using Web Dynpro Java Application.When i run the application i get the pop up message [The document enabled extented features in Adobe Reader.The document has been changed since it was created and use of extended features is no longer available.please contact the author for the original version of this document.].When i click for the pop up message the form is not interactive.If there is Adobe Life Cycle Designer and Adobe Reader version problem for this.Let me know if any one facing the same issue.
    Regards,
    SatheshKumar R

    Hi Satheesh,
    1. Check the Adobe form Version (from 7.1 to 8)
    2. Installed Adobe form Extended Language Support Font Pack to Adobe ,if you are using some other   language in Adobe form
    3. Check the ADS Version.

  • Form not getting displayed in sap b one

    I have created a form using screen painter.But it is not getting displayed in sap b one.When I debugged the form it doesnot show any error.

    Option Strict Off
    Option Explicit On
    Friend Class frmEmployee
        Private WithEvents SBO_Application As SAPbouiCOM.Application
        Private objForm As SAPbouiCOM.Form
        Public Sub New()
            MyBase.New()
            '// set SBO_Application with an initialized application object
            SetApplication()
            LoadFromXML("frmEmployee.xml")
            'LoadFromXML("MySimpleFormxml")
            '// Get the added form object by using the form's UID
            objForm = SBO_Application.Forms.Item("F_4")
            '// Show the loaded Form
            objForm.Visible = True
            '// Saving the Form as an XML file
            '// although it already exist as an XML file
            '// it is good for practice
            'SaveAsXML(objForm)
        End Sub
        Private Sub SetApplication()
            '// Use an SboGuiApi object to establish connection
            '// with the SAP Business One application and return an
            '// initialized appliction object
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            '// by following the steps specified above, the following
            '// statment should be suficient for either development or run mode
            sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
            '// connect to a running SBO Application
            SboGuiApi.Connect(sConnectionString)
            '// get an initialized application object
            SBO_Application = SboGuiApi.GetApplication()
        End Sub
        Private Sub LoadFromXML(ByRef FileName As String)
            Dim oXmlDoc As Xml.XmlDocument
            oXmlDoc = New Xml.XmlDocument
            '// load the content of the XML File
            Dim sPath As String
            'sPath = IO.Directory.GetParent(Application.StartupPath).ToString
            sPath = "D:\Final\Forms"
            oXmlDoc.Load(sPath & "\" & FileName)
            '// load the form to the SBO application in one batch
            SBO_Application.LoadBatchActions(oXmlDoc.InnerXml)
        End Sub
        Private Sub SaveAsXML(ByRef Form As SAPbouiCOM.Form)
            Dim oXmlDoc As Xml.XmlDocument
            Dim sXmlString As String
            oXmlDoc = New Xml.XmlDocument
            '// get the form as an XML string
            sXmlString = Form.GetAsXML
            '// load the form's XML string to the
            '// XML document object
            oXmlDoc.LoadXml(sXmlString)
            Dim sPath As String
            'sPath = IO.Directory.GetParent(Application.StartupPath).ToString
            sPath = "D:\Final\Forms"
            '// save the XML Document
            oXmlDoc.Save((sPath & "\frmEmployee1.xml"))
        End Sub
    End Class

  • Adobe field values not getting displayed in UWL workitem

    Hi,
    We filled a ISR Adobe form and submitted it and generated the corresponding notification number.
    On clickng the 'display and print form', the form is gettin displayed properly.
    But on checking the form at the approvers UWL, the field values are not getting properly filled.
    The form is getting properly displayed at R/3  through IQS22 and also the data values are properly attached to the notification number( checked through ISR_PROCESS_EVENT ).
    Kindly help.
    Thanks and Regards,
    Anto.

    Thanks for publishing your own solution!
    Cheers,
    Noë

  • Multiple search helps in ABAP Adobe interactive forms not working....

    Hello,
    I am working on my first interactive form. I have a couple of fields to which I have attached a search help. However, I am able to use the search help for only one field in a session. If I use the search help on one field then I am unable to use it on another field which uses the search help.
    Can some one help? I am new to interactive forms and this is my first form.
    I appreciate your help in advance.
    Thank you,
    Leena

    Hi Leena,
    Are the Data dictionary fields which you are using contains value range. Because i am only getting value help only for the fields for which there is value range defined in the dictionary. The problem is only for the fields for which there is no value range defined. If you have solution to this problem I will definitely award points to you. But in your thread for me its not possible to reward points, so you can answer the following thread:
    [How to get Value help in Adobe forms;
    Will reward points if found your answer helpful.

  • While running adobe interactive forms application getting error

    Hi All,
    I have developed  one application which is in below link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bfbcd790-0201-0010-679d-e36a3c6b89fa
    I'm using WebAs 6.40 SP9
    but, after deploying and running i'm getting error like:
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:396)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:887)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: PDFDocument Processor failed to process Render Request.
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:55)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:98)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:121)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:341)
         ... 29 more
    Caused by: com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is:
         java.net.MalformedURLException: no protocol:
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:382)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.render(PDFObject.java:3710)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRenderHandler.handle(PDFDocumentRenderHandler.java:139)
         at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:52)
         ... 32 more
    Caused by: java.rmi.RemoteException: Service call exception; nested exception is:
         java.net.MalformedURLException: no protocol:
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:89)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:99)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:359)
         ... 35 more
    Caused by: java.net.MalformedURLException: no protocol:
         at java.net.URL.<init>(URL.java:537)
         at java.net.URL.<init>(URL.java:434)
         at java.net.URL.<init>(URL.java:383)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.HTTPTransport.createHTTPSocket(HTTPTransport.java:110)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.HTTPTransport.getRequestStream(HTTPTransport.java:319)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.outputMessage(MimeHttpBinding.java:548)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1425)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:82)
         ... 37 more
    Appreciated answers will be rewarded.
    Regards,
    Sri

    Hi Srikanth,
                    Did u mapped pdfSource & dataSource Properly. If yes check whether your Server Configured to run Adobe Forms. See wether ur ads settings are as per the following document
    Tutorial on Installing Credentials and Configuring ADS
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f03414f8-d4ce-2a10-d4b6-ab201b329d98
    f yes ur ADSUser password
    must have expired follow the steps to reset the password
    SAP NetWeaver '04 / 2004s
    1. Log on to the Visual Administrator.
    2. Follow the path:
    Server -> services -> Security Provider -> User Management tab
    3. Display the user ADSUser.
    4. Change the ADSUser password. (You can use the same password.) Check the checkbox
    'No password change is required'.
    Note: The below mentioned technical user role is available for the ADSuser as of
    NetWeaver 2004s SPS 7.
    5. Log on to 'User Management' of your AS Java:
    http://<AS Java server>:<http port> -> User Management
    6. Display the user ADSUser.
    7. In the 'Security policy' field, change the setting from 'Default' to 'Technical
    Users' and save.
    (For more information on the 'Security Policy' option, see the Release Notes in
    the SAP Help Portal at
    http://help.sap.com/saphelp_erp2005vp/he
    lpdata/en/44/04265816343fdbe10000000a11466f/frameset.htm.)
    After changing this option, the ADSUser password will not expire.
    Note that this feature is not available for SAP NetWeaver '04
    If not take the help of  System Administrator to configure it first.
    With Regards,
    RooP KumaR.
    Edited by: Roop kumar Annavarapu on Aug 21, 2008 3:00 PM

  • Adobe Interactive Forms complaining that document has changed

    Hi,
    We are trying to run an Adobe interactive form in a MS IE browser but when running the form we receive a message from Adobe... and I'll try to translate it from Dutch to English... "This document contains a number of priviledges for switching on special functions in Adobe reader. The document has been changed since it was last made and the priviledges are no longer active. Contact the author of the original document."
    For those few dutch speakers the message says "Dit document bevatte bepaalde rechten voor het inschakelen van speciale functies in Adobe Reader. Het document is gewijzigd sinds het is gemaakt en deze rechten zijn niet meer geldig. Neem contact op met de auteur van de oorspronkelijke versie van het document".
    After accepting the message the form is displayed but it is not possible to enter anything into the form - it is read only.
    We are completely lost as to why we receive this message. What document is it taking about? How can the document change? Can anyone explain?
    Incidently we were using the recommended versions of MS IE, the SAP AG activeX component SP15 and Adobe 7.0.1. We upgraded to SP16 and Adobe 7.0.7 but it has not made any difference. We have followed the configuration instructions so that the browser can run ActiveX components etc.
    Needless to say this works with no problems in a development environment, but the problems we experience above are in a production environment running Citrix Metaframe and where users have managed profiles. We thought it may be a problem with Windows policies, but the messages come from Adobe, not Windows.
    Help,
    Jonathan.

    Jonathan
    Did you solve this isssue ?. I am facing the same issue while accessing the Form via Citrix !
    Thanks
    Aju Paul

  • Firefox 3 crash when using an adobe interactive forms

    Hello,
    Because Firefox 2.0 isn't supported anymore by Mozilla, we plan to migrate to Firefox 3.
    When we display an Adobe Interactive Forms in Firefox 3, the browser crashes. We have reinstalled Firefox 2 and it works again.
    We tried with Adobe Reader 8.1.2 or 9.0.
    I've checked different sapnotes like 1089062 - FireFox Limitations for
    Unified Rendering and ACF
    Does anyone met the same issue and/or solved it ?
    Regards,
    LTN Redondie Simon
    Steps for Reconstruction                
    - Log into SAP portal with Firefox 3.0
    - Display an adobe interactive forms
    - Click on "save" or "close" button and the web browser crashes
    Edited by: Simon REDONDIE on Feb 3, 2009 5:15 PM

    Thank you for your answer, we did not start the deployment of FF3 yet.
    FF3 support is still under development (for NW 7.1)
    Do you mean that Firefox 3 will not be supported on NW 7.0 ?

  • How to display Adobe Interactive Form from ABAP (not WDABAP)

    I have created a WD ABAP application that creates an Adobe Interactive Form (ZCI) and submits it for workflow.  All of the data on the form is saved in custom itables in the SAP System.  The end-users are supposed to save a copy of the form at the last step in the workflow before they "Acknowledge" the task in UWL.  Once the acknowledge takes place, they can no longer display the form in UWL. They want an ABAP program that will read the data from the various custom tables and display a "print" version of the form (not interactive). 
    I am calling FM 'FP_FUNCTION_MODULE_NAME' to get the function module for the form. I then call FM 'FP_JOB_OPEN' with the parameter IE_OUTPUTPARAMS-REQNEW set to ABAP_TRUE. The call to the form FM has the following EXPORTING parameters:
        EXPORTING
        /1BCDWB/DOCPARAMS   =
          /1BCDWB/DOCXML         =
    I understand the /1BCDWB/DOCPARAMS but have no idea what needs to be done to for the /1BCDWB/DOCXML parameter.  Can anyone offer any advice or assistance?

    Joyce,
    this is really simple - the reason you have that /1BCDWB/DOCXML  is because you defined your form interface to have an XML based interface.
    While this is great for ABAP Web Dynpro, because the XML is generated for you, this is NOT the case with regular ABAP.
    You should choose ABAP Data Dictionary-Based Interface. You will then be able to add tables, structures and fields to your interface.
    For instance, here's code from a program where I call the form in regular ABAP
    data: ls_worksheet TYPE Zxxx_structure.
    * Fill the ls_worksheet structure here.
    * Call the generated function module
      CALL FUNCTION ls_function
        EXPORTING
          /1bcdwb/docparams  = fp_docparams
          worksheet          = ls_worksheet
        IMPORTING
          /1bcdwb/formoutput = ls_form_output
        EXCEPTIONS
          usage_error        = 1
          system_error       = 2
          internal_error     = 3
          OTHERS             = 4.
    Notice I do not have the /1BCDWB/DOCXML Exporting parameter.
    Just change your interface to a Data Dictionary Based, and add the tables/structures/fields to it.
    then, go to your calling program, fill them, and pass the data through the Exporting parameter.

  • Blank page getting displyed whn using adobe interactive forms

    Hi All,
    I am Facing one problem while using Adobe interactive forms in Web Dynpro.
    on deploy interactive form is not getting displayed.
    Deployment result shows blank view....
    m not getting the cause of the problem.
    kindly help if someone knows the cause/solution.
    Thanks,
    Amit

    Hi there,
    I am having the same problem. I deployed the same WD with IF on 2 different machines and there everything works fine. I using the same browser (IE6) on all the machines. Where  are using Native IF and running Adobe Reader 7.0.8. We are on NW04s SP9.
    I tested the ADS Webservice on the machine and that is working fine.....
    Hope somebody can tell me where to look.
    Thx in advance.
    Amit, when you are using IF type "native"  the at least run Adobe Reader 7.0.8. Maybe this solves the problem for you.
    Kind regards,
    Maarten.

  • Adobe Interactive Form is not working - Specify Stream Source

    Hi Experts:
    I am having an issue, where the system I am on is SAP ERP Central Component 5.0 (ECC5.0). There is no Layout Tab to define ZCI or xACF in transaction SFP. I'm not sure if this is relevant, except that, I cannot get my custom Interactive form to work.
    All PDF tests in SAP are passing, but being on ECC5.0, I do not have the following programs (among many others):
    FP_CHECK_DESTINATION_SERVICE
    FP_CHECK_HTTP_DATA_TRANSFER
    When I call my Adobe Interactive Form and set sfpdocparams-fillable = 'X' I get an error:
    Error creating PDF Document -PDF Exception: Stream does not represent a PDF document.
    I have applied the Usage Rights credential properly and my form displays read-only when sfpdocparams-fillable = BLANK. While in transaction SFP, I can see that my interactivity works when displaying the form through the Preview PDF tab.
    Also, I know that my credential works because when I test form ISR_FORM_SPEG, I do have interactivity.
    In parsing through the ADS log file of my custom AIF, I noticed the following:
        Parse template node
            Template:
                Source = Stream
                Name = TEMPLATE
    But I believe it should be something like:
         Parse template node
             Template:
                 Source = URL
                 Name = dest:FP_ICF_DATA_<My_System_ID>//sap/bc/fp/form/layout/<My_Form_Name>.
    Does anyone have any suggestions as to how I can change the source of my stream?
    Thanks for your time experts,
    Sean

    Hi Sean
    In the Visual Admin of the server that runs the ADS check under server->services->destinations click on http folder. There should be something under that called FP_ICF_DATA_<sid of backend>. If there is not then create one in there.
    Regards
    Thashin
    Edited by: Thoshin Naicker on Jan 12, 2009 7:09 AM
    Edited by: Thoshin Naicker on Jan 12, 2009 7:10 AM

  • Browser hangs when an Adobe Interactive Form is

    Hi Folks,
    I'm fairly new to ABAP (< 1 year) and am in the process of creating my first Adobe Interactive Form. In fact it will be the first IFbA at our company, when I get done with it!
    Here's the problem am facing: The Interactive Form that I'm building is called within an ABAP Web Dynpro application. If the displayType in the view is set to 'native', when the IFbA is called, the browser hangs and eventually shows the form after 5 full minutes. However, if it is set to 'activeX', it comes up with the form instantly. It does not matter what objects(WD activeX or native) I have on the form, It does the same thing.
    Our System information:
    SAP_Basis and SAP_ABA: 701 SP5
    ADS: 802.20100902045248.720952
    Adobe Reader 9
    I've looked at the SAP Note 999998 and have pretty much done what they've asked for. But, have had no progress with it. I'm pretty much at my wits end. So, somebody please help?!
    Thanks,
    CS

    Hi,
    Goto the Layout,
    Then goto Utilities->Insert WebDynproScript  and Activate.
    it will work.
    Uma

Maybe you are looking for