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

Similar Messages

  • 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

  • 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

  • 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

  • Error message display in web dynpro application?

    Hi All,
    In my web dynpro application I am displaying error messages but the focus does not go to the field where error occured and also if I click on the error message it does not lead to the place of error.
    And also when I navigate to another view the error message does not go.
    Below is my code:
    *    report message
          DATA err1_text TYPE syst-msgv1.
          err1_text = wd_assist->if_wd_component_assistance~get_text( key = '002' ).
          CALL METHOD lo_message_manager->report_t100_message
            EXPORTING
              msgid      = 'ZAA'
              msgno      = '005'
              msgty      = 'E'
              p1         = err1_text
            RECEIVING
              message_id = lo_text.
    Please suggest me the way to do it.
    Thanks & Regards
    Archana

    Hi,
    I got your point.. in the BIND_TABLE( set_intiail_elemts = abap_true) change this to ABAP_FALSE.
    Because of this you are gettng the intiial values. Eventhough your table has no BALNK/space records.
    bind a single element
      node->bind_table(
        new_items             =  lt_year_list
        set_initial_elements = abap_true ).
    change as
    bind a single element
      node->bind_table(
        new_items             =  lt_year_list
        set_initial_elements = abap_false ).
    You can use this code - I have tjhe dropdwon for projects event I'm doing the same.
    navigate from <CONTEXT> to <PROJECT> via lead selection
      lo_nd_project = wd_context->get_child_node( 'PROJECT' ).
    ***Gets the selected project id from drop down
      if lo_nd_project is not initial.
        CALL METHOD lo_nd_project->GET_LEAD_SELECTION
          RECEIVING
            ELEMENT = lo_el_project.
    get all declared attributes
        if lo_el_project is not initial.
          lo_el_project->get_static_attributes(
            IMPORTING
              static_attributes = ls_project ).
    change your code to 
    lo_nd_year_list = wd_context->get_child_node( name = wd_this->wdctx_year_list ).
    ***Gets the selected project id from drop down
      if lo_nd_year_list is not initial.
        CALL METHOD lo_nd_year_list->GET_LEAD_SELECTION
          RECEIVING
            ELEMENT =  lo_el_year_list .
      IF lo_el_year_list IS NOT INITIAL.
        get single attribute
        lo_el_year_list->get_attribute(
          EXPORTING
            name =  `YEAR`
          IMPORTING
            value = lv_year ).
    Regards,
    Lekha.

  • 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

  • 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 interactive with web dynpro

    I wanna get the user typed text from the form into web dynpro but get none.
    After user typed the comment in a input field and press the button in the web dynpro, the program will get the pdf source from the context and parse it. The program get other text pre-defined in the form generation but doesn't get the user typed text.
    I tried to change the form type to ZCI use t-code sfp_zci_update. But still failed to get the user typed text.
    What's the problem?

    Dear Ralf,
    Thanks for your prompt replies. I appreciate it.
    I've copied the following code mentioned in the note and pasted it in my wddomodifyview method.
    But after activating and executing the application, the application time outs and gives ADS time out error.
    I've checked and am sure that it is the below code that makes it time out.
    I would also like to draw your attention to the fact that when i then run prog. FP_TEST_00, it also hangs.
    Please help.
    500 Connection timed out
    Error: -5
    Version: 7000
    Component: ICM
    Date/Time: Tue Mar 22 09:52:18 2011 
    Module: icxxthr_mt.c
    Line: 2707
    Server: AIERD_AED_00
    Error Tag: {-}
    Detail: Connection to partner timed out after 180s
    Code is:
    data: LR_INTERACTIVE_FORM  type ref to CL_WD_INTERACTIVE_FORM,
          LR_METHOD_HANDLER    type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.
          check first_time = abap_true.
          LR_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT( 'IFORM').
          LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM->_METHOD_HANDLER.
          LR_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( abap_true ).
    Edited by: User on Mar 22, 2011 5:44 AM

  • How to combine two or more adobe forms in Java web dynpro

    Hi All,
             I have a scenario where I have few screens each  - a separate adobe form. For e.g. One adobe form for item creation, one fore details, one for planning. I need to combine all this into one and save a copy of the PDF.
    Save PDF option is present in the adobe options but it saves only the current form. I want to combine few forms and save the whole thing into 1 PDF document. Is there anyway we can do this?
    I am using web dypro java for Adobe forms on NWDS 7.0
    Adobe Live cycle designer - 7.1
    Adobe Reader - 8.1
    SAP NW SP 12
    PLease help!
    Thank you,
    Vasu

    Hi Amit,
    Thanks for the response but my requirement is different.
    I have to combine the contents of three PDFs (different adobe forms in different views in one web dynpro component) into one PDF ( a separate Adobe Form in different view in the same web dypro component).
    I would be glad to know if you have a solution for such scenario. I am working on this since 4 days with no solution yet.
    Thank you,
    Vasu

  • 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!!

  • 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

  • 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

  • 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

  • Accessing Web Dynpro application outside portal

    Hello alles,
    Our customer wants to display a Web Dynpro application result on a regular hmtl intranet page, i.e. without showing the portal.
    We have tried with html frames, but end up with a flickering or empty screen. The problem occurs both with a quick link to the application within the portal, an SSO link, a link to the iView, a webdynpro/dispatcher address ...
    It seems as if the problem occurs with all WD iViews, but not with e.g. a regular News iView.
    Do you have any suggestion on how we could solve this? Reasons?
    Thank you in advance!
    Brgds,
    Caroline
    Message was edited by:
            Caroline Janzon

    hi
    good
    go through this link,hope this ll help you to solve your problem
    http://www.sap-press.de/download/dateien/1103/sappress_maximizing_web_dynpro_for_java.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20java/wd%20tutorials/using%20ejbs%20in%20web%20dynpro%20applications.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b5380089-0c01-0010-22ae-bd9fa40ddc62
    thanks
    mrutyun^

  • Umlaut characters getting distorted while displaying in Web dynpro java

    Hi All,
    I have a scenario where I am reading some string values from  a properties file placed in java DC.
    The values read from properties file are to be displayed in  Web Dynpro application.
    The string values contain some umlaut characters eg (ü,ä).
    While displaying in web Dynpro application the umlaut characters  are getting  distorted.
    Any pointers for the same?
    Regards
    Radhika Kuthiala

    Hi Radhika,
    Solution1> you can convert the property file in the encoded format, in the DC having the pr0perty file.
    use this command in the command line:-->native2ascii -encoding utf8 file.txt file2.txt
    Are we renaming hte files after changing the format?
    In one of my previous project we have property file with the french character so we got error, to avoid this we have manually transtaled the file and utilized in the application and used the command in dos promt:-
    native2ascii -encoding utf8 source.txt destination.txt ,
    here if you want to replace the existing file u have to give same name source and destination file. But we have created 2 seprate file. after translation you will something like Fre/uooch king of output.
    Solution3> you can read the file and save in the Strign format and use java package import java.nio.charset.; and encode the string. ---
    Pls refer the below link:-
    http://mindprod.com/jgloss/encoding.html
    Hope this may help you.
    Deepak!!!

Maybe you are looking for

  • When I tried to burn a CD

    After I tried to burn a CD it quit and said:  The burn to the OPTIARC DVD RW AD5690H drived.  Failed  The burn failed because of a medium write error.

  • Alerts in Integration Process (BPM)?

    We are just beginning to use Alerts in PI 7.1.  If an error occurs in an integration process (BPM), will it trigger an alert if the Alert Rule is defined wide open?  Or do you actually have to trigger the alert in the integration process with an addi

  • Parental controls

    Since "Parental control" on Leopard is currently "busted", see thread: http://discussions.apple.com/thread.jspa?threadID=1618967&start=0&tstart=0 What are some other effective 3rd party parental control apps available that is recommended? I've done g

  • Live Cache DR Setup

    Dear All, I am planning to make a standy server for Livecache for my SCM system. Server Details is as follows: Scm : SAP SCM 5.10 Lc version :KERNEL 7.7.04 BUILD 037-123-218-794 DBM Server : DBMServer 7.7.04 Build 037-123-218-794 O/s : AIX Database :

  • JMenu - actionListeners

    I have a file formatted like this: Google search----www.google.com Yahoo!----yahoo.com MSN----www.msn.comI'm trying to read file so that each line would be made into a seperate JMenu. The string before "---" is jMenuItem's title. The string after "--