Submit button in interactive adobe form in abap web dynpro

Hi can anyone help me out to know hoe to use the submit button in adobe interactive form in abap web dynpro .
Iam creating a adobe form abap web dynpro . There i need to use the submit button to trigger some action in the adobe interactive form .
So i need to know how to use the submit button and coding for that in the abap web dynpro .
Vighnesh

Hi Michelle,
Could you tell me how you resolved the problem - as I'm facing exactly the same issue!
Many Thanks
Christine

Similar Messages

  • Handling Submit Button on the ADOBE form called from Web Dynpro

    Hi,
    I have placed a Button on the ADOBE Form. How to Handle the event on this button. When i click this button, i want to save the details of the form into a Custom table.

    Hi Majunath.
    Create an event say, SUB_EVTin the view in WD where you have the Interactive Form UI element.
    Bind this event to the onSubmit of the Form.
    Now check the display type of the form. It will be either ActiveX or Native.
    Now go to the form designer and open Library palette. Navigate to Webdynpro ActiveX or Native Library(Depending on the form display Type in WD).
    Drag and Drop Submit button.
    On click of the button, the event handler in WD view namely, onActionsub_evt will be invoked. You can write your code in this handler.
    Now in order to read data from the form. Go to the form and go to Properties tab. Check the form layout type. If it is not ZCI, run transaction SFP_ZCI_UPDATE and convert the form to ZCI type.
    Now back to the event handler.
    as an example... I will use the following context node definitions
    PDF_DATA  1..1
      ACTUAL_DATA 0..n
        ATTRIB01
        ATTRIB02
    Assume the the node PDF_DATA is bound to the data source of your form.
    Now in the event handler write the foll code
    data: lo_node type ref to if_wd_context_node,
            lt_data   type wd_this->elements_actual_data.
    lo_node = wd_context->get_child_node( name = wd_this-.wdctx_pdf_data ).
    lo_node = lo_node->get_child_node( name = wd_this-.wdctx_actual_data ).
    lo_node->get_static_attributes_table(
      importing
        table = lt_data ).
    This will get all the form data in the internal table lt_data.
    Now you can process the data the way you want and save it in your custom tables.
    Regards,
    Reema .
    Edited by: Reema Shahbazkar on Sep 16, 2008 11:39 PM
    Hope this helps!!

  • Develop forms using Adobe Forms and ABAP Web Dynpro

    Hi, 
    Could someone help me on how to learn forms development using Adobe Forms and ABAP Web Dynpro?  Any suggestion on Tutorials / Books / other helpful hints please?
    I have good knowledge of Smart Forms and used these to generate PDF Attachments via emails.
    Thanks.
    Regards
    Keshav

    http://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/d-f/faq%20on%20interactive%20forms%20based%20on%20adobe%20software.faq

  • Submit button  from Interactive adobe form in Web Dynpro ABAP

    Hi all,
    We seem to be having a problem with the 'submit' button on the Interactive Form for the Web Dynpro ABAP.  The submit button is from the Web Dynpro active X or web Dynpro Native in the form designer. The submit button doesn't trigger the action in Web Dynpro. we are currently running on support pack 9 for the ABAP stack. We have Internet Explorer browser version 6.  Could someone tell me if there are requirements for the IE version that will work in conjunction with a particular ABAP stack version.  And, are there specific IE security settings or administrative privilages required with this version of the ABAP stack.  Or, any other ideas as to why this does not seem to work. 
    Thanks in advance,
    Michelle Hong

    Hi Michelle,
    Could you tell me how you resolved the problem - as I'm facing exactly the same issue!
    Many Thanks
    Christine

  • Submit button within Interactive adobe form

    Hi,
        We have developed an Interactive adobe form and inserted a submit button within it We have installed ACI also.We tried putting the submit button both within the adobe form body and also within the webdynpro java view. In both the cases pressing the submit button does not result in any action. Please advise on what we are missing. We checked the forums for similar issues and found out that we are abiding by most of it.
    thanks
    anantharam

    Hi Anantharam,
    Please create and action in your view and attach it to your Interactive form UI element's onSubmit event. By doing this, whenecver you press the Submit button in the form, this action will be invoked. You can place any methots/code that you want to execute on click of submit button.
    If you are using the button outside the form, then you try printing one of the values that you filled in the form which is binded to context. This way you can test.
    If you are using WDP activex UI element s in the form then you need to have ACF installed on the machine and also ensure that the displayMode property of Interactive form is set to ActiveX.
    Hope this helps!!
    Regards,
    Arafat

  • Calling Adobe form via ABAP Web Dynpro

    Hi
    Ive followed the below WIKI and have encountered an issue and finding it rather frustrating to resolve
    http://wiki.sdn.sap.com/wiki/display/WDABAP/CallAdobeFormthroughABAPWebDynpro
    Im fairly new to this to pls excuse my ignorance
    The message Im getting when I check for errors in my MAIN view is
    ""A label must refer to element "DISPLAY_NO".""
    The procedure tells me the follow
    a) Create a label and bind its 'Label for' property to the UI element.
    b) Select the label's 'Text' property, bind it to an appropriate context attribute or, alternatively, set the quick info (or accessibility description - if one exists) for the UI element.
    c) Either set the visibility of the label to "visible" or set the element that the label refers to as invisible.
    Im just not sure where to correct this under my DISPLAY_NO element
    Im not sure if thisis the reason why im getting the UNCAUGHT_ EXEPTION - CX_WD_GENERAL runtime error as well
    Telling me my object Z************* does not exist
    Regards
    Justy

    Hi...
    in your view for element DISPLAY_NO, There is no label. So create one label and
    in corresponding label properties bind its 'Label for' property to the display_no ui element.
    And did you activate your component ? if above is the error, you will not able to activate the component. So first check and activate component. if you get any error related to DISPLAY_No, then follow the above procedure.
    if you have any doubts, post the same back
    Regards
    Srinivas

  • Problem in submit button on adobe form integrated with web dynpro

    Hello,
    I'm facing prob in triggering web dynpro event onSubmit for Interactive form.
    I've created a submit button from web dynpro activex pallete on adobe form (integrated with web dynpro) to send the form as email.
    Then in the web dynpro view where this form is embedded i have created an action against onSubmit event and called a method within this.
    However, on clicking Submit button this event is not getting triggered.
    Please let me know what is lacking in this process?
    Thanks.

    Hi,
    I am also facing the same problem. i have developed a simple scenario under which user have to input his/her details and on submit button it will be updated to database.
    I have tried the above solution but after adopting this solution all the editable fields become non-editable.
    so the above solution is not working for me could you help me out.
    I think ... try this....
    When you create the Adobe Form from WebDynpro, you need to follow one step in SFP Transaction or inSE80 transaction. Open the Adobe Form in any one the transaction and now in SAP menu bar "Utilities" in that you will find the "INSERT THE WEBDYNPRO SCRIPT" just click on that one. Then you will see a new Script Object is being created with the name "ContainerFoundation_JS" under the "Variables" in the Heirarchy of the Object Pallete of the Adobe Form.
    This step is mandatory to use the SUBMIT Button of the "WebDynpro Native", to trigger the OnSubmit event of the WebDynpro.
    Thanks
    Edited by: shailendra2sap on Mar 6, 2009 12:24 PM

  • Calling and manipulating data on an Interactive Adobe form from ABAP report

    Dear All,
    Can you please tell me how to call an interactive adobe from from a custom adobe form?
    If so how can we pass and receive data between the interactive adobe form and the abap report program?
    Thank you.
    Regards,
    Prosenjit.

    Hi,
    It is possible to call an Interactive Adobe form from ABAP report and pass data into the form. If you search the forum, you will get many threads explaining the process. Let me know if you have any specific questions on this.
    Regards,
    Sanoosh

  • How to print interactive adobe form in ABAP ?

    Dear all,
    I've create a static adobe form in ABAP environment using SFP transaction. But when i build the form and test print out, system raise an error "<b>Device type unsuitable for ADS documents</b>". So, which device type should I use to print ADS documents ?
    Thank you very much for your help,
    Best regards,
    Sylvecast.

    The printer selected for output must support Adobe forms (the default "local" printer does not).  If you don't already have a printer that supports Adobe output, you can create one via SPAD using (for example) device type PDF1.

  • Blank adobe form displayed in  web dynpro application

    Hi,
                 I have created an Interactive Adobe form using web dynpro Java. When I run the form (in IE), a blank page is displayed.
    If I keep the Adobe reader open and run the form on IE, the form is opened in reader and it's working.
    When I access the same form on a different system, there is no problem.
    Does this have anything to do with the IE settings or Adobe Reader version/ updates.
    I have checked the adobe reader version and it's the same on both the systems.
    Version:
    Adobe Reader Version : 8.1.2.
    Adobe Designer 7.1
    SAP NW 2004s - SP 15
    Thank you,
    Vasu

    Not sure what the problem could be, here are some suggessionsu2026
    Check whether you have enabled the option Display PDF in browser in the Adobe Reader.
    I should be under:   Edit > Preference > Internet
    Also, in your Web Dynpro Application, try to set the u201CdisplayTypeu201D property of your Interactive form to ActiveX
    Else, just try upgrading your Adobe Reader to latest version!
    Hope this helps,
    Harman

  • How to debug Adobe form attached to Web Dynpro for ABAP

    Hi,
    My developer has created an adobe form and rendered inside a Web Dynpro page in the SAP Portal. It communicates with the Web Dynpro framework in the backend SAP system (Web Dynpro for ABAP).
    My question is, how would I know what infotype access this form requires, in the form of backend authorization role? Is there any way (not trace, ST01) to debug Abobe form on Portal or in backend SAP system?
    Thanks,
    Karan.

    Julius Bussche wrote:
    > I am not sure whether this will work in this case, but principally if your trace is recording a * value for a field in an authorization check, then it must be defined somewhere, and there is an option in the trace file to jump from the check to the source code location where it occurred.
    Yes, that's possible since the trace also records the information on the ABAP source code location where the AUTHORITY-CHECK statement (or other ABAP statements which internally trigger authorization checks) is executed. If I'm not wrong then there is a button (in ST05) which allows a direct source code navigation. Alternatively you might just click on the ABAP source code information displayed in the ST05 trace results (for recorded authorization checks).
    Cheers, Wolfgang

  • Adobe Form dumps in Web Dynpro ABAP Application but opens up by Report

    Hello Experts,
    I created a form and tested it by creating a report which contains following code,
       call function 'FP_FUNCTION_MODULE_NAME'
            exporting
              i_name     = lv_form_name "my form name
            importing
              e_funcname = iv_function_name.
    *retrieve data in lt_items
      call function iv_function_name
        exporting
          /1bcdwb/docparams  = fp_docparams
          it_item            = lt_items
          is_header          = is_header
          control_parameter  = ls_control_parameters
        importing
          /1bcdwb/formoutput = fp_formoutput
        exceptions
          usage_error        = 1
          system_error       = 2
          internal_error     = 3.
    However when I try to do it on click of a button in my Web Dynpro Application, it dumps (the action has very much the similar code).
    The error is: USAGE_ERROR
    SY-TITLE HTTP Control
    SY-MSGTY E
    SY-MSGID FPRUNX
    SY-MSGNO 111
    Thanks in advance for your help.
    Best regards,
    Abir

    Hi Otto,
    I try to paste the ST22 log below.
    Short text
        Exception condition "USAGE_ERROR" raised.
    Error analysis
        A RAISE statement in the program "SAPLFPCALL" raised the exception
        condition "USAGE_ERROR".
        Since the exception was not intercepted by a superior
        program, processing was terminated.
        Short description of exception condition:
        For detailed documentation of the exception condition, use
        Transaction SE37 (Function Library). You can take the called
        function module from the display of active calls.
    Source Code Extract
    Line  SourceCde
       16 *   Return of PDF is always possible.
       17     IF ie_outputparams-device IS NOT INITIAL AND
       18        ie_outputparams-device <> 'PRINTER'.
       19 *     Devices TELEFAX and MAIL are not allowed in many cases.
       20       IF ie_outputparams-nodialog = c_false
       21         OR ie_outputparams-preview = c_false
       22         OR ie_outputparams-noprint = c_false
       23         OR ( ( ie_outputparams-arcmode = '2' OR ie_outputparams-arcmode = '3' )
       24              AND ie_outputparams-noarchive = c_false ).
       25 *       Dialog or no preview; preview only if no output or archiving requested.
       26         MESSAGE ID 'FPRUNX' TYPE 'E' NUMBER '110'
       27             WITH ie_outputparams-device RAISING usage_error.
       28       ENDIF.
       29     ENDIF.
       30   ENDIF.
       31
       32 * Call the internal interface.
       33   move-corresponding ie_outputparams to l_params.
       34
       35   call function 'FPCOMP_JOB_OPEN'
       36     changing
       37       ie_outpar            = l_params
       38     exceptions
       39       cancel               = 1
       40       usage_error          = 2
       41       system_error         = 3
       42       internal_error       = 4.
       43   case sy-subrc.
       44     when 0.
       45     when 1. raise cancel.
    >>>>>     when 2. raise usage_error.
       47     when 3. raise system_error.
       48     when 4. raise internal_error.
       49   endcase.
       50
       51   move-corresponding l_params to ie_outputparams.
       52
       53 endfunction.
    Contents of system fields
    Name     Val.
    SY-SUBRC 2
    SY-INDEX 7
    SY-TABIX 0
    SY-DBCNT 0
    SY-FDPOS 70
    SY-LSIND 0
    SY-PAGNO 0
    SY-LINNO 1
    SY-COLNO 1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE HTTP Control
    SY-MSGTY E
    SY-MSGID FPRUNX
    SY-MSGNO 111
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO 0
    SY-DATUM 20101110
    SY-UZEIT 091449
    SY-XPROG SSO2GETPARAM
    SY-XFORM GET_PARAMETER
    Chosen variables
    Name
        Val.
    No.      20 Ty.          FUNCTION
    Name  FP_JOB_OPEN
    IE_OUTPUTPARAMS
        PRINTER XX                                   00#䄀###   #䄀###      X   ##00000000000000   00>
        0000000000000000000000000000000000000000000000004000000040000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000001000000010000000000000000000000000000000000000
        5544545255222222222222222222222222222222222223300000222000002222225222003333333333333322233344
        029E4520880000000000000000000000000000000000000000000000000000000080000000000000000000000000C9
        005000520049004E005400450052002000580058002000200020002000200020002000200020002000200020002000
    SYST-REPID
        SAPLFPCALL
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
        5454454444222222222222222222222222222222
        310C6031CC000000000000000000000000000000
        005300410050004C0046005000430041004C004C002000200020002000200020002000200020002000200020002000
    %_SPACE
        0
        0
        2
        0
        0020
    SY-SUBRC
        2
        0000
        0002
        00000002
    SY-REPID
        SAPLFPCALL
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
        5454454444222222222222222222222222222222
        310C6031CC000000000000000000000000000000
        005300410050004C0046005000430041004C004C002000200020002000200020002000200020002000200020002000
    %_DUMMY$$
        0000
        0000
        2222
        0000
        0020002000200020
    SY-MSGV3
        00000000000000000000000000000000000000000000000000
        00000000000000000000000000000000000000000000000000
        22222222222222222222222222222222222222222222222222
        00000000000000000000000000000000000000000000000000
        0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000
    SY-MSGNO
        111
        000
        000
        333
        111
        003100310031
    %_VIASELSCR
        0
        4
        04
    SY-MSGV4
        00000000000000000000000000000000000000000000000000
        00000000000000000000000000000000000000000000000000
        22222222222222222222222222222222222222222222222222
        00000000000000000000000000000000000000000000000000
        0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000
    SPACE
        0
        0
        2
        0
        0020
    Application Calls
    Index Calls
        1 R=7 P=/sap/bc/webdynpro/sap/INM_WORKCENTER_APP/
    Internal notes
        The termination was triggered in function "ab_jfune"
        of the SAP kernel, in line 3058 of the module
         "//bas/720_REL/src/krn/runt/abfunc.c#3".
        The internal operation just processed is "FUNE".
        Internal mode was started at 20101110091356.
    Lock Shared Objects
    ModeLockRe Area Name
    Instance Name                                                                    Clt Lock Type
    VersionId  Label                Include                                  Line       Time Stamp
             1 CL_WDR_CONF_APPL_SHM
    INM_WORKCENTER_APP.                                                              102 R
           178                 5690 CL_WDR_CONF_APPL_SHBROKER=====CM001               9 20101110091356
             2 CLUR_NW7_MESSAGE_AREA
    E                                                                                R
            10                   10 CLUR_NW7_MESSAGES=============CM003              11 20101110091356
             3 CL_WDR_CFG_COMP_SHM
    INM_WORKCENTER_COMP.AD4B75FF707A473CD26008949EBB0A69.07..E                       102 R
            11                   12 CL_WDR_CFG_COMP_SHBROKER======CM006              29 20101110091359
    Directory of Application Tables
    Name                                     Date       Time       Lngth
        Val.
    Program  SAPMHTTP
    SYST                                       .  .       :  :     00004612
        \0\x0007\0\0\0\0\0\x0001\0\0\0\0\0\x0001\0\0\0\0\0\0\0\0\0
    SY                                         .  .       :  :     00004612
        \0\x0007\0\0\0\0\0\x0001\0\0\0\0\0\x0001\0\0\0\0\0\0\0\0\0
    Program  SAPLHTTP_RUNTIME
    ICFBUFFER                                  .  .       :  :     00005624
    ICFSERVICE                                 .  .       :  :     00004040
        SAP            0000000000000000000000000DFFAEATGKMFLCDXQ04
    Program  CL_HTTP_SERVER================CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  SAPLLANG
    T002                                       .  .       :  :     00000010
        ES1EN|
    Program  SAPLSSFG
    SSFARGS                                    .  .       :  :     00001734
    Program  CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    INDX                                       .  .       :  :     00003104
        102BMWD_SP_LEVEL           \0\0\0  00000000
    Program  CONTEXT_X_TR_SYS_PARAMS
    CONTEXTB                                   .  .       :  :     00002992
        102EBTR_SYS_PARAMS       000007000100000000000000\0\0\0\0
    TCONT                                      .  .       :  :     00000068
        TR_SYS_PARAMS       20100623230418|
    Program  CL_WDR_TRACE_TOOL=============CP
    INDX                                       .  .       :  :     00003104
        102BMSWD_TRACETOOL_ACTIVEAR\0\0\0  00000000
    Program  SAPLSKWF_NAMESPACE
    SKWF_URLIO                                 .  .       :  :     00000384
        102BBMIME/sap/public/bc/ur/nw5/themes/custom
    Program  SAPLSDCL
    SDOKIOCL                                   .  .       :  :     00000600
    SDOKIOCLT                                  .  .       :  :     00000150
    SDOKLOCL                                   .  .       :  :     00000754
                              00000000000000            0000000000
    SDOKLOTAB                                  .  .       :  :     00000362
    SDOKPHTAB                                  .  .       :  :     00000662
    Program  SAPLISOC
    T002                                       .  .       :  :     00000010
        ES1EN|
    Program  CL_CALENDAR_DEFINITION_CALLER=CP
    INDX                                       .  .       :  :     00003104
        102ARCAL_DEF               \0\0\0  00000000
    Program  CL_WDR_LS_JS_TIMESTAMP========CP
    INDX                                       .  .       :  :     00003104
        102BMCL_WDR_LS_JS_TIME...  \0\0\0  00000000
    Program  CL_WDR_WINDOW=================CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  CL_WDR_DELEGATING_VIEW========CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  CL_CGPL_USER_OPTIONS==========CP
    CGPLT_OPT_INDX                             .  .       :  :     00003040
        102OP*           RPM                                \0\0 0
    Program  SAPLBDLS
    T000                                       .  .       :  :     00000214
        102GCC:GTv1-5.IK.PLN Dev CltGDC                      CHF
    Program  SAPLSDEX
    DD07L                                      .  .       :  :     00000120
        /GLB/7PTIR_GLB_PROJSTATUS     A00020000R
    Program  SAPLSSCU
    USR02                                      .  .       :  :     00000942
        102ARAYCHA     \0\0\0\02010032499991231AGCCSC_EU    \0
    Program  SAPLPRGN
    AGR_DEFINE                                 .  .       :  :     00000266
        102TM15_GLB_XX_ZR4026A_PLN01
    Program  SAPLSDOC
    DOKHL                                      .  .       :  :     00000306
        TXLG1B0000062000009
    DOKTL                                      .  .       :  :     00000296
    Program  SAPLSI63
    IWBSETTING                                 .  .       :  :     00000260
    Program  SAPLSR11
    TADIR                                      .  .       :  :     00000464
    Program  SAPLSUGU
    CVERS                                      .  .       :  :     00000102
        SAP_BW                        702       0004      W|
    Program  SAPLSUG2
    SVERS                                      .  .       :  :     00000144
        702
    Program  CONTEXT_X_IWB_CLASS_PROPS
    CONTEXTB                                   .  .       :  :     00002992
        102IBIWB_CLASS_PROPS     000007000300000000000000\0\0\0\0
    TCONT                                      .  .       :  :     00000068
        IWB_CLASS_PROPS     20010206162330|
    Program  SAPLTIW1
    IWTESTFCTS                                 .  .       :  :     00000052
                                  |
    Program  SAPLSDCS
    SDOKDOCSP                                  .  .       :  :     00000148
    Program  SAPLSDSD
    DDSHOFFLD                                  .  .       :  :     00003020
        IF/RPM/TS_ITEM_D_DATA_CUST      YYGLB_SEVERITY
    Program  /1BCWDY/EI2AA7ZECUCSFD0NKHM6==CP
    RSJOBINFO                                  .  .       :  :     00000164
                                        00000000000000
    Program  SAPLSUNI
    TFDIR                                      .  .       :  :     00000268
    Program  SAPLBDS_METHODS
    BDS_LOCL                                   .  .       :  :     00000350
        DEVC_STXD_BITMAP              OTBDS_LOC3  BDS_POC3  BDS_RE
    I really appreciate your help.
    Many thanks and best regards,
    Abir

  • Offline  Adobe forms with Out Web Dynpro

    Hi All,
    I am new to Adobe Forms.
    In one of my requirement, I have to create an Adobe forms  .In that Adobe forms user entered the data
    Manually  and in that forms  one button will be there, when  the user clicks the button the data in the
    forms uploaded to SAP CRM system.
    Please porvide me some input.
    Thanks & Regards
    R R Pradhan

    hi
    this link might be helpful, Support of Interactive Forms in SAP CRM 7.0

  • ZCI and ADS problem when creating forms in ABAP WEB DYNPRO

    1.)
    My ZCI problem is, whenever I try to create a form, i choose ZCI layout, then want to insert Web Dynpro Script, i get the message:
    "Error when inserting Web Dynpro Script"
    Therefore I cannot activate my forms.
    2.)
    I also tried to configurate ADS in transaction SM59. When trying the Check connection button, it works, but when trying report FP_PDF_TEST_00, a logon window pops up, whichafter I get the errormessage:
    ERRORCODE : 100.101
    Why is that, and how can I solve this?
    Thanks, Bye,
    Peter

    Hi !
    I found 5 server logs.
    In server.2.log I found this, that' s probably the exception I caused:
    #1.5#0013D3EA4A430047000005330000031800043F71AC53F84C#1195657361859#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.ads.request.RenderErrorLog#ADSUSER#35491#SAP J2EE Engine JTA Transaction : [172ffffff803e00333]####SAPEngine_Application_Thread[impl:3]_10##0#0#Warning#1#com.adobe.ads.request.RenderErrorLog#Plain###Cannot generate Log.pdf#
    #1.5#0013D3EA4A430047000005340000031800043F71AC53F8BE#1195657361859#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#35491#SAP J2EE Engine JTA Transaction : [172ffffff803e00333]####SAPEngine_Application_Thread[impl:3]_10##0#0#Error#1#com.adobe.AdobeDocumentServicesWorker#Plain###General exception while merging XMLForm Module Render log data into log.pdf#
    #1.5#0013D3EA4A430047000005360000031800043F71AC53FC53#1195657361859#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#35491#SAP J2EE Engine JTA Transaction : [172ffffff803e00333]####SAPEngine_Application_Thread[impl:3]_10##0#0#Error#1#com.adobe.AdobeDocumentServicesWorker#Plain###Processing exception during a "Render" operation.
    Request start time: Wed Nov 21 16:02:41 CET 2007
    com.adobe.ads.destination.DestinationException: File Not Found while reading Dest URL: http://nw04s.dyndns.org:50200/sap/bc/fp/form/layout/ZZ_PB_ATTEMPT.XDP?fp-language=EN
    Not Found
    Exception Stack Trace:
    com.adobe.ads.destination.DestinationException: File Not Found while reading Dest URL: http://nw04s.dyndns.org:50200/sap/bc/fp/form/layout/ZZ_PB_ATTEMPT.XDP?fp-language=EN
    Not Found
         at com.adobe.ads.destination.Destination.readUrlStream(Unknown Source)
         at com.adobe.ads.destination.Destination.readTemplate(Unknown Source)
         at com.adobe.ads.data.DestURLData.setData(Unknown Source)
         at com.adobe.ads.data.DestURLData.<init>(Unknown Source)
         at com.adobe.ads.data.PDFData.createFromURL(Unknown Source)
         at com.adobe.ads.data.PDFData.create(Unknown Source)
         at com.adobe.ads.request.Template.setPDFData(Unknown Source)
         at com.adobe.ads.request.Template.initialize(Unknown Source)
         at com.adobe.ads.request.Renderer.initializeTemplates(Unknown Source)
         at com.adobe.ads.request.Renderer.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.processRender(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         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)
    #1.5#0013D3EA4A4300500000011B0000031800043F71CEEDC838#1195657942250#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.ads.request.RenderErrorLog#ADSUSER#35551#SAP J2EE Engine JTA Transaction : [172ffffff803e0033f]####SAPEngine_Application_Thread[impl:3]_12##0#0#Warning#1#com.adobe.ads.request.RenderErrorLog#Plain###Cannot generate Log.pdf#
    #1.5#0013D3EA4A4300500000011C0000031800043F71CEEDC8B3#1195657942250#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#35551#SAP J2EE Engine JTA Transaction : [172ffffff803e0033f]####SAPEngine_Application_Thread[impl:3]_12##0#0#Error#1#com.adobe.AdobeDocumentServicesWorker#Plain###General exception while merging XMLForm Module Render log data into log.pdf#
    #1.5#0013D3EA4A4300500000011E0000031800043F71CEEDCC40#1195657942250#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#35551#SAP J2EE Engine JTA Transaction : [172ffffff803e0033f]####SAPEngine_Application_Thread[impl:3]_12##0#0#Error#1#com.adobe.AdobeDocumentServicesWorker#Plain###Processing exception during a "Render" operation.
    Request start time: Wed Nov 21 16:12:22 CET 2007
    com.adobe.ads.destination.DestinationException: File Not Found while reading Dest URL: http://nw04s.dyndns.org:50200/sap/bc/fp/form/layout/ZZ_PB_ATTEMPT.XDP?fp-language=EN
    Not Found
    Exception Stack Trace:
    com.adobe.ads.destination.DestinationException: File Not Found while reading Dest URL: http://nw04s.dyndns.org:50200/sap/bc/fp/form/layout/ZZ_PB_ATTEMPT.XDP?fp-language=EN
    Not Found
         at com.adobe.ads.destination.Destination.readUrlStream(Unknown Source)
         at com.adobe.ads.destination.Destination.readTemplate(Unknown Source)
         at com.adobe.ads.data.DestURLData.setData(Unknown Source)
         at com.adobe.ads.data.DestURLData.<init>(Unknown Source)
         at com.adobe.ads.data.PDFData.createFromURL(Unknown Source)
         at com.adobe.ads.data.PDFData.create(Unknown Source)
         at com.adobe.ads.request.Template.setPDFData(Unknown Source)
         at com.adobe.ads.request.Template.initialize(Unknown Source)
         at com.adobe.ads.request.Renderer.initializeTemplates(Unknown Source)
         at com.adobe.ads.request.Renderer.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.processRender(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         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)
    #1.5#0013D3EA4A430051000001570000031800043F71DDC53630#1195658191203#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.ads.request.RenderErrorLog#ADSUSER#35577#SAP J2EE Engine JTA Transaction : [172ffffff803e003317]####SAPEngine_Application_Thread[impl:3]_13##0#0#Warning#1#com.adobe.ads.request.RenderErrorLog#Plain###Cannot generate Log.pdf#
    #1.5#0013D3EA4A430051000001580000031800043F71DDC536AC#1195658191203#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#35577#SAP J2EE Engine JTA Transaction : [172ffffff803e003317]####SAPEngine_Application_Thread[impl:3]_13##0#0#Error#1#com.adobe.AdobeDocumentServicesWorker#Plain###General exception while merging XMLForm Module Render log data into log.pdf#
    #1.5#0013D3EA4A4300510000015A0000031800043F71DDC53A39#1195658191203#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServicesWorker#ADSUSER#35577#SAP J2EE Engine JTA Transaction : [172ffffff803e003317]####SAPEngine_Application_Thread[impl:3]_13##0#0#Error#1#com.adobe.AdobeDocumentServicesWorker#Plain###Processing exception during a "Render" operation.

  • Adobe forms developed with web dynpro

    I developed a standard adobe forms from webdynpro. After deploy to EP, i noticed two thing
    if i test the result using adobe v7.0.9, the form load in seconds;
    if i test the result using adobe v8.1.1 adobe reader will suck the available physical memory on my computer and paging is increase dramatically. eg: it takes more than 1G before the form can be loaded, and i neeed to wait for about 10min.
    is there any particular solution for this?
    thanks.

    Hi Eng Beng Lee,
                                Hope this may help u.
    /people/r.eijpe/blog/2007/01/08/performing-sap-interactive-forms-by-adobe
    regards
    Sumit

Maybe you are looking for