Short dump in web dynpro

Hi All,
I am new to web dynpro.I developed one web dynpro apllication in my personal system.when i try to execute this web application it was going to short dump after entering into the logon pad.
                                         Any other tcode is there to execute web applications, plz help me to overcome this short dump in web application.
Thanks in advance.
Thanks,
Ram

Hi,
If it is giving short dump then you please mention that dump. or you can go to st22 and get the details and do some modification. you can go to se 80 and  make your application again and than try to execute it.
hope it will useful.
thanks
hemant ghiya

Similar Messages

  • Short dumps in Web Dynpro

    Hi Experts,
    Problem is:
    We created an interactive form with web dynpro abap for one of our client and integrated it into portal sytem. We tested in our development system and it was working fine.
    After go live we started getting following short dumps in the production system which we never got in our development system.
    For some of the users it is working fine. Where as for some users following short dumps are coming. Is it some thing to do with adobe version the user has or any basis settings? Please suggest me.
    Some users getting this error:
    u201C$$$/com/adobe/document/xmlform/msg.XFA=Invalid version: The current version of the XFA template model exceeds the capability of Acrobat / Adobe Reader 7.0.5.u201D
    1. ASSERTION_FAILED exception in method IF_WDR_UPDATE_SERVER_PEER_DATA~CLOSE_WINDOW of class CL_WDR_CLIENT_APPLICATION.
    Error Analysis: The following checkpoint group was used: "No checkpoint group specified"
    If in the ASSERT statement the addition FIELDS was used, you can find
    the content of the first 8 specified fields in the following overview:
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    2. CX_WDR_RT_EXCEPTION exception in method ADD_VIEW_CONTROLLER of class CL_WDR_COMPONENT.
    Error Analaysis:
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_WDR_RT_EXCEPTION', was not caught
    and
    therefore caused a runtime error.
    The reason for the exception is:
    Instance of the view WND_EXTENDED_OPTIONS already exists in component
    3. OBJECTS_OBJREF_NOT_ASSIGNED exception in method IF_WDR_ADAPTER_EVENT_HANDLER~HANDLE_EVENT of CL_WDR_CONTEXT_MENU_HANDLER class
    Error Analysis:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: " ").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    Error in the ABAP Application Program
    The current ABAP program "CL_WDR_CONTEXT_MENU_HANDLER===CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    Please let me know what can be the issue and how to fix this at the earliest.
    Thanks a lot in advance,
    Regards,
    Phani.

    Hi Shankar,
    The NULL object ref error occurs when you try to use an object reference that has not been created.
    For example : if you want to bind data to a node and write code some like this
    lo_nd_table->bind_table( lt_table ).
    if there is no instance of lo_nd_table availabe at this time the program will dump. to avoid this you can code some like this
    if not lo_nd_table is initial.
      lo_nd_table->bind_table( lt_table ).
    endif.
    just check ue code to see if any access is made to an obj ref which is not yet created. put a break point in ur code and debug to see where exactly it fails.
    Thanks,
    Abhishek

  • 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

  • Short dump when trying to open FPM for Web Dynpro Application

    Hi,
    I am receiving a short dump while trying to open a Web Dynpro Application in FPM.  I go to SE80 and open the Web Dynpro component 'FPM_OIF_COMPONENT'.  I then choose the application '/sapsrm/wda_l_fpm_oif'.  I then click Web Dynpro Application -> Test -> Execute in Administration Mode.  A new IE browser is opened and I then receive a short dump.  The name of the short dump runtime error is 'OBJECTS_OBJREF_NOT_ASSIGNED_NO' and the exception is 'CX_SY_REF_IS_INITIAL'.
    I have not used FPM before.  I would like to use it to remove the 'Close' button from this application.  Do I need to initialize FPM before using it?
    Please help.
    Thanks,
    Jeff

    >
    Chinnu wrote:
    > Hello Jeffery Andersen,
    >
    > If I understand correctly, you are trying to preview FPM_OIF_COMPONENT.
    >
    > I think this component can not be executed as it just is a template for creating a FPM applications. In other words, it is an interface that can be used to created a WD ABAP application from work bench.
    >
    > This [Floor Plan Manager - ABAP|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/90f3cfd2-46d0-2b10-b3ab-eabf3452cc50&overridelayout=true] can help you understand better.
    >
    > Best regards,
    > Chinnu
    Hi Chinnu,
    Your understanding is not correct, he is trying to execute the application /sapsrm/wda_l_fpm_oif'.
    Hallo Jeff,
    everyone have suggested lots of possibilities. Nothing works for you. I would suggest the following.
    Go and execute any other FPM application which uses FPM_OIF_COMPONENT,does it work ?
    If it works then you can narrow down that /sapsrm/wda_l_fpm_oif is not working and you can raise a OSS ticket.
    If it is not working then you have to see if you have right BASIS versions to use FPM.
    Edited by: Baskaran Senthivel on Dec 6, 2010 1:09 PM

  • ECATT abends during recording when lead selection is set to 0 on web dynpro

    We have a web dynpro application that works ok when running by itself.   When we tried to record ECATT testing on it, it abended after we click on a selection from a list of values.    The error on the browser indicated an error on the "lead select".   After reviewing the dump, we found that it abends on an exception when the lead selection on the ALV is not set.   When we changed our code to set the lead selection to 1, the ECATT recording worked.
    We have a requirement to set the lead selection of ALV to 0 so we need to change back our code.   We just did the setting to 1 just to get ECATT recording to work for now.    Does anybody know why ECATT requires this?   Is there a support packs that fixes this?
    Here is a snippet from ST22 for more details on this:
    Runtime Errors         UNCAUGHT_EXCEPTION
    Exception              CX_WD_CONTEXT
    Date and Time          2007/02/07 14:50:06
    Short text
    An exception occurred that was not caught.
    What happened?
    The exception 'CX_WD_CONTEXT' was raised, but it was not caught anywhere along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
    'CL_WDR_CONTEXT_NODE===========CP' has to be
    terminated.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_WD_CONTEXT', was not caught and
    therefore caused a runtime error.
    The reason for the exception is:
    The lead selection has not been set. VIEW_TABLE
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "UNCAUGHT_EXCEPTION" "CX_WD_CONTEXT"
    "CL_WDR_CONTEXT_NODE===========CP" or "CL_WDR_CONTEXT_NODE===========CM00V"
    "_RAISE_ELEMENT_NOT_FOUND"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    System environment
    SAP-Release 700
    Application server... "torsapd01"
    Network address...... "10.2.75.183"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "4x AMD64 Level"
    Character length.... 8 Bits
    Pointer length....... 64 Bits
    Work process number.. 0
    Shortdump setting.... "full"
    Database server... "TORSAPD01"
    Database type..... "MSSQL"
    Database name..... "PR3"
    Database user ID.. "dbo"
    Char.set.... "English_United State"
    SAP kernel....... 700
    created (date)... "Aug 28 2006 22:20:27"
    create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"
    Database version. "SQL_Server_8.00 "
    Patch level. 75
    Patch text.. " "
    Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory consumption
    Roll.... 16128
    EM...... 16759616
    Heap.... 0
    Page.... 0
    MM Used. 12713776
    MM Free. 4042608
    User and Transaction
    Client.............. 200
    User................ "SIC0010"
    Language Key........ "E"
    Transaction......... " "
    Program............. "CL_WDR_CONTEXT_NODE===========CP"
    Screen.............. "SAPMHTTP 0010"
    Screen Line......... 2
    Information on Caller ofr "HTTP" Connection:
    Plug-in Type.......... "HTTP"
    Caller IP............. "10.49.77.47"
    Caller Port........... 8000
    Universal Resource Id. "/sap/bc/webdynpro/sap/zpr3_base_price/"
    Information on where terminated
    Termination occurred in the ABAP program "CL_WDR_CONTEXT_NODE===========CP" -
    in "_RAISE_ELEMENT_NOT_FOUND".
    The main program was "SAPMHTTP ".
    In the source code you have the termination point in line 11
    of the (Include) program "CL_WDR_CONTEXT_NODE===========CM00V".
    Source Code Extract
    Line
    SourceCde
    1
    method RAISEELEMENT_NOT_FOUND.
    2
    data: l_count type I,
    3
    l_node_name type string.
    4
    5
    l_node_name = if_wd_context_node~get_path( ).
    6
    7
    l_count = if_wd_context_node~get_element_count( ).
    8
    if l_count = 0.
    9
    raise exception type cx_wd_context exporting textid = cx_wd_context=>NODE_EMPTY node_nam
    10
    elseif element_index = if_wd_context_node=>use_lead_selection.
    >>>>>
    raise exception type cx_wd_context exporting textid = cx_wd_context=>NO_LEAD_SELECTION n
    12
    else.
    13
    raise exception type cx_wd_context exporting textid = cx_wd_context=>ELEMENT_NOT_FOUND n
    14
    endif.
    15
    endmethod.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    1
    SY-TABIX
    0
    SY-DBCNT
    2
    SY-FDPOS
    0
    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
    TD
    SY-MSGNO
    600
    SY-MSGV1
    000003587101
    SY-MSGV2
    0001
    SY-MSGV3
    EN
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20070207
    SY-UZEIT
    145005
    SY-XPROG
    SAPCNVE
    SY-XFORM
    CONVERSION_EXIT

    Hi Eugene,
    i suggest you raise an SMP ticket for these.
    Looks like a bug at first glance.
    regards
    Phil

  • Problem with Table display in Adobe Form of Web Dynpro ABAP

    Hi Team,
    I'm trying to display a table in Adobe Print Form (not interactive). The table is bound to the context node in the Web Dynpro ABAP where the cardinality is 0:N. I get a short dump. Don't know what to do here. I'm able to display individual fields from my context successfully. Looks like something is missing when I try to display a table. Any pointers to display a data table in Adobe? Any step by step example you know of where I can find out what I did wrong? Many thanks for your time
    We are on support pack SP06 on 2004S release.
    DUMP INFORMATION:
    Short text                                                               
        Access via 'NULL' object reference not possible.                 
    What happened?                                                           
        Error in the ABAP Application Program  The current ABAP program "CL_WD_ADOBE_SERVICES==========CP" had to be terminated because it has come across a statement that unfortunately cannot be executed.
    An exception occurred that is explained in detail below.                    
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in procedure "CREATE_PDF" "(METHOD)", nor was it propagated by a RAISING clause.

    Hi Thomas,
    We upgraded our system(2004S) to SP10 so that we can use the ADOBE form printing in Web Dynpro ABAP but could not apply note 1034425 because of the validity constraints in SNOTE. All the pre-requisite notes are already in the system apart from one note 1029721 which talks about supporting input helps. We don't want to use input helps in our system and cannot upgrade to SP11 because of problems with Business functionality.
    Questions:
    1) Is note 1034425 absolutely dependent on 1029721?
    2) If NOT, can someone please correct the validity so that we can implement using SNOTE.
    3) Would it be OK if we manually apply the changes specified in 1034425 without implementing 1029721?
    4) If all of the above is not applicable, is there any other note which fixes the above mentioned short dump.
    Your help in this matter will greatly help us in using the ADOBE services provided by SAP WDA.
    Thanks much

  • BAPI_DOCUMENT_CREATE2 in Web Dynpro ABAP

    Hi Friends,
        I want to upload PDF file from my System and get it stored in content server Using WEB DYNPRO APPLICATION. I tried using it by calling the FM but its not uploading the file in the server.
      Can i know the steps involved in uploading the file. I also created a custom Function Module and called this FM in WEB DYNPRO.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(DOCUMENTDATA) LIKE  BAPI_DOC_DRAW2 STRUCTURE
    *"        BAPI_DOC_DRAW2
    *"     VALUE(BIN_CONTENT) TYPE  XSTRING
    *"  EXPORTING
    *"     VALUE(DOCUMENTTYPE) LIKE  BAPI_DOC_AUX-DOCTYPE
    *"     VALUE(DOCUMENTNUMBER) LIKE  BAPI_DOC_AUX-DOCNUMBER
    *"     VALUE(DOCUMENTPART) LIKE  BAPI_DOC_AUX-DOCPART
    *"     VALUE(DOCUMENTVERSION) LIKE  BAPI_DOC_AUX-DOCVERSION
    *"     VALUE(RETURN) LIKE  BAPIRET2 STRUCTURE  BAPIRET2
    *"  TABLES
    *"      CHARACTERISTICVALUES STRUCTURE  BAPI_CHARACTERISTIC_VALUES
    *"       OPTIONAL
    *"      CLASSALLOCATIONS STRUCTURE  BAPI_CLASS_ALLOCATION OPTIONAL
    *"      DOCUMENTDESCRIPTIONS STRUCTURE  BAPI_DOC_DRAT OPTIONAL
    *"      OBJECTLINKS STRUCTURE  BAPI_DOC_DRAD OPTIONAL
    *"      DOCUMENTSTRUCTURE STRUCTURE  BAPI_DOC_STRUCTURE OPTIONAL
    *"      DOCUMENTFILES STRUCTURE  BAPI_DOC_FILES2 OPTIONAL
    *"      LONGTEXTS STRUCTURE  BAPI_DOC_TEXT OPTIONAL
    *"      COMPONENTS STRUCTURE  BAPI_DOC_COMP OPTIONAL
    *..... Document data
    data: ls_doc like bapi_doc_files2.
    **..... Bapi return structure
    data: ls_return like bapiret2.
    **.... Originals that are checked in at the same time
    data: lt_files like bapi_doc_files2 occurs 0 with header line.
    data: tstampl like tzonref-tstampl, tstampl_c(21) type c,
               file_name type localfile, msg(80) type c.
    constants path_name type localfile value '/tmp/'.
    constants log type localfile value '/tmp/logFO.txt'.
    *Create document
    describe table documentfiles lines sy-tfill.
    if sy-tfill > 0.
    clear ls_doc.
    clear lt_files.
    loop at documentfiles into ls_doc from 1 to 1.
    open dataset log for output in text mode encoding default.
    transfer ls_doc-wsapplication to log.
    transfer ls_doc-description to log.
    get time stamp field tstampl.
    unpack tstampl to tstampl_c.
    clear file_name.
    concatenate path_name '/' sy-repid '_' 'ATT' tstampl_c '.' ls_doc-wsapplication into file_name.
    condense file_name no-gaps.
    transfer file_name to log.
    open dataset file_name for output in binary mode message msg.
    if sy-subrc = 0.
    message a899(zz) with file_name msg 'SY-SUBRC:' sy-subrc.
    endif.
    transfer bin_content to file_name.
    close dataset file_name.
    transfer 'move data to lt_files' to log.
    move:documentdata-documenttype to lt_files-documenttype,
               documentdata-documentpart to lt_files-documentpart,
               documentdata-documentversion to lt_files-documentversion,
               ls_doc-description to lt_files-description,
               '1' to lt_files-originaltype,
                'Z_TEST_SAP' to lt_files-storagecategory,
                ls_doc-wsapplication to lt_files-wsapplication,
                file_name to lt_files-docfile,
                'X' to lt_files-checkedin.
    translate lt_files-wsapplication to upper case.
    append lt_files.
    ** CLEAR ls_return.
    transfer 'call BAPI_DOCUMENT_CREATE2' to log.
    call function 'BAPI_DOCUMENT_CREATE2'
          exporting
            documentdata = documentdata
            pf_http_dest = 'SAPHTTPA'
          importing
             documentnumber = documentnumber
             documenttype = documenttype
             documentversion = documentversion
             documentpart = documentpart
             return = return
         tables
             objectlinks = objectlinks
             documentfiles = lt_files
         exceptions
              others = 1.
         close dataset log.
          endloop.
          endif.
         endfunction.
    But i am getting short Dump stating File  /tmp/logFO.txt is not open.
    Can anyone help me with this issue..
    Regards,
    Santosh

    Hello,
    I'm facing the same issue, could you please tell me how did you solve your problem.
    Thanks in advance for your help.

  • Calling Batch input from Web Dynpro - any alternatives for table updates?

    Hi!
    I am asked to create a screen in Web Dynpro for the GJ30 transaction (JV Cutback mapping of WBS' elements). I created a remote enabled function module which call batch input for GJ30 . Testing the Function modules direclty goes fine, but not calling the function module from WD. then I get the same error message as when I once tried to call SAP GUI from Web Dynpro ( Call transaction /submit program).
    My next step is to try to create a batch input session (instead of call transaction) and run it using rsbdcsub, and then check the result of the run. But maybe this will fail of the same reason as well, and I suppose this will make the user waiting longer for the response .
    I read somewhere that Web Dynpro does not support batch Input. But what can you do when there are no standard BAPI's for the update you want to do in SAP ?  We are not supposed to do direct table updates.  
    Anyone who have struggled with the same issues and found a solution??
    regards, Tine

    Hi,
    as BDC is calling screens and in Webdynpro ABAP you cannot use SAP GUI sceeen, you are getting short dump.
    Refer CNTL_SYSTEM_ERROR in webservices from r/3 system
    Thanks,
    Chandra

  • Error in web dynpro connections

    Hi,
    I Create and run a simple Web Dynpro application
    in that i didn't connect   my  app.server when i click on f8 and i provide login details also.
    after given login details error code is
    my err is Error code: ICF-IE-http -c: 200 -u: CLLABAP -l: E -s: DEV -i: clldev_DEV_00 -w: 0 -d: 20080527 -t: 172804 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    if any one knows the solution give me feed back
    Edited by: narendra kumar on May 27, 2008 2:01 PM

    well have a look at ST22 (short dumps) and see what it says. Provide us with the details, and we can have a look at it.

  • Web Dynpro for Abap - Tutorial 3 Navigation

    Hi,
    I did the exercise Web Dynpro for Abap: Tutorial 3 - Navigation, but when I test.
    The first screen It´s ok, but when I press the search button.
    This message shows me.
    How can I fix this?
    Error when processing your request
    What has happened?
    The URL http://gru-s-ecc-001.arinso.com.br:8000/sap/bc/webdynpro/sap/zz_bapinav_minoru/ was not called due to an error.
    Note
    The following error text was processed in the system ER1 : Lower-Level Node with Name FLIGHTLISTVIEW.flight_list Does Not Exist
    The error occurred on the application server gru-s-ecc-001_ER1_00 and in the work process 10 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: GET_CHILD_NODE_INTERNAL of program CL_WDR_CONTEXT_ELEMENT========CP
    Method: IF_WD_CONTEXT_ELEMENT~GET_CHILD_NODE of program CL_WDR_CONTEXT_ELEMENT========CP
    Method: IF_WD_CONTEXT_NODE~GET_CHILD_NODE of program CL_WDR_CONTEXT_NODE_VAL=======CP
    Method: ONACTIONGET_FLIGHTS of program /1BCWDY/34A63FKGEJ2MX3QE6HZM==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/34A63FKGEJ2MX3QE6HZM==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: IF_WDR_ACTION~FIRE of program CL_WDR_ACTION=================CP
    Method: DO_HANDLE_ACTION_EVENT of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW=================CP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system ER1 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server gru-s-ecc-001_ER1_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 10 in transaction ST11 on the application server gru-s-ecc-001_ER1_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 100 -u: JACOB -l: E -s: ER1 -i: gru-s-ecc-001_ER1_00 -w: 10 -d: 20080417 -t: 150647 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

    did you check the short dump message in ST22, maybe gives you some additional information.
    But when looking at the message, I would say that in the FLIGHTLISTVIEW node flight_list is not created.
    Check if node is available, also check the name of the node. Maybe a typo  (fligth_list, or flight_lits, or...)somewhere.

  • Short Dump in Tcode CO01.

    Hi Experts,
    My system ECC 6.0 EHP4 IDES ,My functional team FICO is running transaction CO01 and creating production order.
    Tcode : CO01
    Material : r-f100
    Production Plant : 1000  
    Then press enter and in the next screen.
    Put Quantity : 10
    Date u2013 Finish : any future date.
    Press flag button Release Order and in pop up dialog window
    Entry option: select one row and press ok
    It goes to Short dump.
    Syntax error in program "SAPLCOIH ".
    Error in the ABAP Application Program
    The current ABAP program "SAPLCRK1" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "SAPLCOIH " in include "LCOIHI5W
    " in
    Error analysis
        The following syntax error was found in the program SAPLCOIH :
        "FORM "PROFILE_EXPORT" does not exist"
    Any more info. on this please revert.
    Please advice on this.
    Regards,
    Satya

    Sorry for bumping an old thread. But the error is still here in newly installed IDES systems.
    I tracked it down.
    It turns out the SAPLCOIH function group got stuck in SPAU.
    And the note 1138570 is the correct solution.
    Row 234 to 236 should include:
    *{   INSERT         IDTK942671                                        1
      INCLUDE /MRSS/RAC_MOD_PROFILES.
    *}   INSERT
    Then transaction CO01 and web dynpro eams_wda_ordntf_oif now works.
    /fredrik

  • Reg Simple Web Dynpro Application

    Hello Gurus,
    I am developing a simple Web Dynpro Application that displays just Purchase Header Details.
    It says the runtime Error, "The exception CX_WD_CONTEXT" was raised but was not caught at any stage in Call Hierarchy.
    Any Suggestions would be rewarded.....
    Regards
    Jay

    Hi,
    I have pasted the short dump....
    ===========================================================
    Runtime Errors         UNCAUGHT_EXCEPTION
    Except.                CX_WD_CONTEXT
    Date and Time          27.02.2007 11:48:17
         ShrtText
              An exception that could not be caught occurred.
         What happened?
              The exception 'CX_WD_CONTEXT' was raised but was not caught at any stage in the
              call hierarchy.
              Since exceptions represent error situations, and since the system could
              not react adequately to this error, the current program,
               'CL_WDR_CONTEXT_NODE_VAL=======CP', had to
              be terminated.
         What can you do?
              Print out the error message (using the "Print" function)
              and make a note of the actions and input that caused the
              error.
              To resolve the problem, contact your SAP system administrator.
              You can use transaction ST22 (ABAP Dump Analysis) to view and administer
               termination messages, especially those beyond their normal deletion
              date.
              is especially useful if you want to keep a particular message.
         Error analysis
              An exception occurred. This exception is dealt with in more detail below
              . The exception, which is assinged to the class 'CX_WD_CONTEXT', was not
               caught,
              which led to a runtime error.
              The reason for this exception is:
              Die Anzahl der Elemente der Kollektion des Knotens INDEX.1.EKKO_ITAB verletzt
              die Kardinalität.
         How to correct the error
              You may able to find an interim solution to the problem
              in the SAP note system. If you have access to the note system yourself,
              use the following search criteria:
              "UNCAUGHT_EXCEPTION" CX_WD_CONTEXTC
              "CL_WDR_CONTEXT_NODE_VAL=======CP" or "CL_WDR_CONTEXT_NODE_VAL=======CM001"
              "CHECK_COLLECTION"
              If you cannot solve the problem yourself and you wish to send
              an error message to SAP, include the following documents:
              1. A printout of the problem description (short dump)
                 To obtain this, select in the current display "System->List->
                 Save->Local File (unconverted)".
              2. A suitable printout of the system log
                 To obtain this, call the system log through transaction SM21.
                 Limit the time interval to 10 minutes before and 5 minutes
                 after the short dump. In the display, then select the function
                 "System->List->Save->Local File (unconverted)".
              3. If the programs are your own programs or modified SAP programs,
                 supply the source code.
                 To do this, select the Editor function "Further Utilities->
                 Upload/Download->Download".
              4. Details regarding the conditions under which the error occurred
                 or which actions and input led to the error.
         System environment
              SAP Release.............. "640"
              Application server....... "diamond"
              Network address.......... "64.72.230.131"
              Operating system......... "Windows NT"
              Release.................. "5.2"
              Hardware type............ "4x Intel 801586"
              Character length......... 8 Bits
              Pointer length........... 32 Bits
              Work process number...... 0
              Short dump setting....... "full"
              Database server.......... "DIAMOND"
              Database type............ "MSSQL"
              Database name............ "ECC"
              Database owner........... "ecc"
              Character set............ "English_United State"
              SAP kernel............... "640"
              Created on............... "Nov 21 2005 00:50:16"
              Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
              Database version......... "SQL_Server_8.00 "
              Patch level.............. "101"
              Patch text............... " "
              Supported environment....
              Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
              SAP database version..... "640"
              Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
              Memory usage.............
              Roll..................... 8112
              EM....................... 12543552
              Heap..................... 0
              Page..................... 0
              MM Used.................. 11868848
              MM Free.................. 672136
              SAP Release.............. "640"
         User and Transaction
         Information on where terminated
              The termination occurred in the ABAP program "CL_WDR_CONTEXT_NODE_VAL=======CP"
               in "CHECK_COLLECTION".
              The main program was "SAPMHTTP ".
              The termination occurred in line 12 of the source code of the (Include)
               program "CL_WDR_CONTEXT_NODE_VAL=======CM001"
              of the source code of program "CL_WDR_CONTEXT_NODE_VAL=======CM001" (when
               calling the editor 120).
         Source Code Extract
         Line     SourceCde
             1     method CHECK_COLLECTION .
             2     
             3       data:
             4         path_name type string,
             5         lines type i.
             6     
             7       lines = lines( me->collection ).
             8     
             9       if ( lines = 0 and abap_true  = me->node_info->is_mandatory ) or
            10          ( lines > 1 and abap_false = me->node_info->is_multiple  ).
            11         path_name = me->if_wd_context_node~get_path( ).
         >>>>>         raise exception type CX_WD_CONTEXT exporting textid = CX_WD_CONTEXT=>COLLECTION_ILLEGAL_
            13       endif.
            14     
            15       lines = lines( me->selection ).
            16     
            17       if ( lines = 0 and abap_true  = me->node_info->is_mandatory_selection ) or
            18          ( lines > 1 and abap_false = me->node_info->is_multiple_selection  ).
            19         path_name = me->if_wd_context_node~get_path( ).
            20         raise exception type CX_WD_CONTEXT exporting textid = CX_WD_CONTEXT=>SELECTION_ILLEGAL_C
            21       endif.
            22     
            23     
            24     endmethod.
         Contents of system fields
         Name     Val.
         SY-SUBRC     0
         SY-INDEX     1
         SY-TABIX     1
         SY-DBCNT     12919
         SY-FDPOS     34
         SY-LSIND     0
         SY-PAGNO     0
         SY-LINNO     1
         SY-COLNO     1
         SY-PFKEY     
         SY-UCOMM     
         SY-TITLE     HTTP Control
         SY-MSGTY     
         SY-MSGID     
         SY-MSGNO     000
         SY-MSGV1     
         SY-MSGV2     
         SY-MSGV3     
         SY-MSGV4     
         Active Calls/Events
         No.   Ty.          Program                             Include                             Line
               Name
            22 METHOD       CL_WDR_CONTEXT_NODE_VAL=======CP    CL_WDR_CONTEXT_NODE_VAL=======CM001    12
               CL_WDR_CONTEXT_NODE_VAL=>CHECK_COLLECTION
            21 METHOD       CL_WDR_CONTEXT_NODE_VAL=======CP    CL_WDR_CONTEXT_NODE_VAL=======CM01B    34
               CL_WDR_CONTEXT_NODE_VAL=>IF_WD_CONTEXT_NODE~BIND_TABLE
            20 METHOD       /1BCWDY/MXAJIDSD2PZXCNSR7DDN==CP    /1BCWDY/B_UXWMB4OI2PW6SWO6N6KC       1058
               CL_INDEX_CTR=>WDDOINIT
               Web Dynpro Component          ZJAY_WEBDYN1
               Web Dynpro Controller         INDEX
            19 METHOD       /1BCWDY/MXAJIDSD2PZXCNSR7DDN==CP    /1BCWDY/B_UXWMB4OI2PW6SWO6N6KC        167
               CLF_INDEX_CTR=>IF_WDR_VIEW_DELEGATE~WD_DO_INIT
               Web Dynpro Component          ZJAY_WEBDYN1
               Web Dynpro Controller         INDEX
            18 METHOD       CL_WDR_DELEGATING_VIEW========CP    CL_WDR_DELEGATING_VIEW========CM003     3
               CL_WDR_DELEGATING_VIEW=>DO_INIT
            17 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM00Q     3
               CL_WDR_CONTROLLER=>INIT_CONTROLLER
            16 METHOD       CL_WDR_VIEW===================CP    CL_WDR_VIEW===================CM00K     5
               CL_WDR_VIEW=>INIT_CONTROLLER
            15 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM002    12
               CL_WDR_CONTROLLER=>INIT
            14 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM008    58
               CL_WDR_VIEW_MANAGER=>GET_VIEW
            13 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM005    23
               CL_WDR_VIEW_MANAGER=>BIND_ROOT
            12 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM00B    21
               CL_WDR_VIEW_MANAGER=>INIT
            11 METHOD       CL_WDR_INTERFACE_VIEW=========CP    CL_WDR_INTERFACE_VIEW=========CM004     5
               CL_WDR_INTERFACE_VIEW=>INIT_CONTROLLER
            10 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM002    12
               CL_WDR_CONTROLLER=>INIT
             9 METHOD       CL_WDR_CLIENT_COMPONENT=======CP    CL_WDR_CLIENT_COMPONENT=======CM003    46
               CL_WDR_CLIENT_COMPONENT=>DISPLAY_TOPLEVEL_COMPONENT
             8 METHOD       CL_WDR_CLIENT_APPLICATION=====CP    CL_WDR_CLIENT_APPLICATION=====CM00I    30
               CL_WDR_CLIENT_APPLICATION=>INIT
             7 METHOD       CL_WDR_WEBDYNPRO_MAIN_TASK====CP    CL_WDR_WEBDYNPRO_MAIN_TASK====CM008    29
               CL_WDR_WEBDYNPRO_MAIN_TASK=>IF_WDR_CLIENT_TASK~EXECUTE
             6 METHOD       CL_WDR_CLIENT_MANAGER=========CP    CL_WDR_CLIENT_MANAGER=========CM004    18
               CL_WDR_CLIENT_MANAGER=>PROCESS_TASK_LISTS
             5 METHOD       CL_WDR_CLIENT_MANAGER=========CP    CL_WDR_CLIENT_MANAGER=========CM002    99
               CL_WDR_CLIENT_MANAGER=>DO_PROCESSING
             4 METHOD       CL_HTTP_EXT_WEBDYNPRO=========CP    CL_HTTP_EXT_WEBDYNPRO=========CM001    77
               CL_HTTP_EXT_WEBDYNPRO=>IF_HTTP_EXTENSION~HANDLE_REQUEST
             3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM00D   645
               CL_HTTP_SERVER=>EXECUTE_REQUEST
             2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                      879
               HTTP_DISPATCH_REQUEST
             1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
               %_HTTP_START
         Chosen variables
         Name
             Val.
         No.         22     Ty.      METHOD
         Name      CL_WDR_CONTEXT_NODE_VAL=>CHECK_COLLECTION
         ABAP_TRUE
              X
                 5
                 8
         ME->NODE_INFO->IS_MANDATORY
              X
                 5
                 8
         LINES
              12919
                 7300
                 7200
         %_DUMMY$$
                 2222
                 0000
         SYST-REPID
              CL_WDR_CONTEXT_NODE_VAL=======CP
                 4455455444545554444554433333334522222222
                 3CF742F3FE4584FEF45F61CDDDDDDD3000000000
         ABAP_FALSE
                 2
                 0
         ME->NODE_INFO->IS_MULTIPLE
                 2
                 0
         SY-REPID
              CL_WDR_CONTEXT_NODE_VAL=======CP
                 4455455444545554444554433333334522222222
                 3CF742F3FE4584FEF45F61CDDDDDDD3000000000
         ME
              O:167*=CL_WDR_CONTEXT_NODE_VAL
                 5000A000
                 80007000
         RSJOBINFO
                                              00000000000000                                  ####
                 222222222222222222222222222222223333333333333322222222222222222222222222222222220000
                 000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         PATH_NAME
              INDEX.1.EKKO_ITAB
                 44445232444454544
                 9E458E1E5BBFF9412
         SY
              ########################################w2##"#################################################
                 0000000000000000000000000000000000000000730020000000000000000000000000000000000000000000000000
                 1000000010001000000000000000000000000000720020001000000010000000000000000000800000000000000000
         %_EXCP
              O:13087*=CX_WD_CONTEXT
                 E0001300
                 0000F300
         SPACE
                 2
                 0
         CX_WD_CONTEXT=>COLLECTION_ILLEGAL_CARDINALITY
              B5CA499B9D5CBA47B8D4664C56B3A97C
                 43443334343444334343333433434334
                 25314992945321472844664356231973
         ME->SELECTION
              Table[initial]
         ME->NODE_INFO->IS_MANDATORY_SELECTION
                 2
                 0
         ME->NODE_INFO->IS_MULTIPLE_SELECTION
                 2
                 0
         No.         21     Ty.      METHOD
         Name      CL_WDR_CONTEXT_NODE_VAL=>IF_WD_CONTEXT_NODE~BIND_TABLE
         NEW_ITEMS
              Table IT_325[12919x492]
                 POOL=/1BCWDY/MXAJIDSD2PZXCNSR7DDN=CL_INDEX_CTR=WDDOINIT=ITAB_EKKO
                 Table reference: 153
                 TABH+  0(20) = C8E8E33CD0C4E73C000000009900000045010000
                 TABH+ 20(20) = 77320000EC010000FFFFFFFF04C30000801B0000
                 TABH+ 40( 8) = 10000000C1308000
                 store        = 0xC8E8E33C
                 ext1         = 0xD0C4E73C
                 shmId        = 0     (0x00000000)
                 id           = 153   (0x99000000)
                 label        = 325   (0x45010000)
                 fill         = 12919 (0x77320000)
                 leng         = 492   (0xEC010000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000116
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 8     (cmpManyEq)
                 occu0        = 1
                 collHash     = 0
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 0
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 >>>>> Shareable Table Header Data <<<<<<br /> tabi = 0xF8C9E33C
    pghook = 0x08E9E33C
    idxPtr = 0x00000000
    refCount = 0 (0x00000000)
    tstRefCount = 0 (0x00000000)
    lineAdmin = 16368 (0xF03F0000)
    lineAlloc = 12944 (0x90320000)
    store_id = 202 (0xCA000000)
    shmIsReadOnly = 0 (0x00000000)
    >>>>> 1st level extension part <<<<<<br /> regHook = 0x80EFFE3C
    hsdir = 0x00000000
    ext2 = 0x00000000
    >>>>> 2nd level extension part <<<<<<br /> tabhBack = Not allocated
    delta_head = Not allocated
    pb_func = Not allocated
    pb_handle = Not allocated
    SET_INITIAL_ELEMENTS
    X
    5
    8
    ELEMENT
    O:13086*=CL_WDR_CONTEXT_ELEMENT
    E0001300
    1000E300
    ELEMENT->NODE
    O:167*=CL_WDR_CONTEXT_NODE_VAL
    5000A000
    80007000
    ME
    O:167*=CL_WDR_CONTEXT_NODE_VAL
    5000A000
    80007000
    ME->COLLECTION
    Table IT_330[12919x8]
    O:167*=CL_WDR_CONTEXT_NODE_VAL=COLLECTION
    Table reference: 157
    TABH+ 0(20) = 78F2FE3C00000000000000009D0000004A010000
    TABH+ 20(20) = 7732000008000000FFFFFFFF04D10000E0030000
    TABH+ 40( 8) = 10000000C1288000
    store = 0x78F2FE3C
    ext1 = 0x00000000
    shmId = 0 (0x00000000)
    id = 157 (0x9D000000)
    label = 330 (0x4A010000)
    fill = 12919 (0x77320000)
    leng = 8 (0x08000000)
    loop = -1 (0xFFFFFFFF)
    xtyp = TYPE#000008
    occu = 16 (0x10000000)
    access = 1 (ItAccessStandard)
    idxKind = 0 (ItIndexNone)
    uniKind = 2 (ItUniqueNon)
    keyKind = 1 (default)
    cmpMode = 4 (cmpSingleEq)
    occu0 = 1
    collHash = 0
    groupCntl = 0
    rfc = 0
    unShareable = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId = 0
    gcKind = 0
    isUsed = 1
    >>>>> Shareable Table Header Data <<<<<<br /> tabi = 0xE8F1FE3C
    pghook = 0x18B8D83C
    idxPtr = 0x00000000
    refCount = 0 (0x00000000)
    tstRefCount = 0 (0x00000000)
    lineAdmin = 15408 (0x303C0000)
    lineAlloc = 13360 (0x30340000)
    store_id = 207 (0xCF000000)
    shmIsReadOnly = 0 (0x00000000)
    >>>>> 1st level extension part <<<<<<br /> regHook = Not allocated
    hsdir = Not allocated
    ext2 = Not allocated
    >>>>> 2nd level extension part <<<<<<br /> tabhBack = Not allocated
    delta_head = Not allocated
    pb_func = Not allocated
    pb_handle = Not allocated
    SY-TABIX
    1
    0000
    1000
    %_SPACE
    2
    0
    ME->LEAD_SELECTION_INDEX
    1
    0000
    1000
    ME->LEAD_SELECTION
    O:168*=CL_WDR_CONTEXT_ELEMENT
    5000A000
    70008000
    ME->NODE_INFO->IS_MANDATORY_SELECTION
    2
    0
    ME->SELECTION
    Table[initial]
    ME->NODE_INFO->IS_INITIALIZE_LEAD_SELECTION
    X
    5
    8
    ME->IF_WD_CONTEXT_NODE~NO_SELECTION
    -1
    FFFF
    FFFF
    ME->ELEMENTS_SUPPLIED
    2
    0
    No. 20 Ty. METHOD
    Name CL_INDEX_CTR=>WDDOINIT
    IF_WDR_APPLICATIONAPPLICATION_INFO->STARTUP_PLUG->IF_WD_RR_PARAM_FEATUREPARAMETERS
              Table[initial]
         State Dump for Thread Id 1488
         eax=00000001 ebx=00000103 ecx=fffffffe edx=003c0000 esi=00000000 edi=00000000
         eip=7c82ed54 esp=0589feb0 ebp=0589fef4 iopl=0         nv up ei pl zr na po nc
         cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
         function : KiFastSystemCallRet
                 7c82ed54 c3               ret
                 7c82ed55 8da42400000000   lea     esp,[esp]              ss:0589feb0=7c821514
                 7c82ed5c 8d642400         lea     esp,[esp]              ss:098bd47f=00000000
         FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
         0589fef4 00ff70c7 000006c4 00000000 00000000 044bed68 ntdll!KiFastSystemCallRet
         0589ff84 7c349565 00000000 00000000 00000000 044becd0 disp+work!SigIMsgFunc
         0589ffb8 77e6608b 044becd0 00000000 00000000 044becd0 MSVCR71!endthreadex
         0589ffec 00000000 7c3494f6 044becd0 00000000 00000000 kernel32!GetModuleFileNameA
         List of ABAP programs affected
         Index     Ty.     Program     Group     Date     Time     Size     Lang.
              0     Prg     SAPMHTTP          0     06.11.2003     20:57:21          6144     E
              1     Prg     SAPLHTTP_RUNTIME          1     12.11.2004     04:12:18        152576     E
              2     Typ     ICFHANDLST          0     21.11.2003     11:40:58         13312     
              3     Prg     %_CIHTTP          1     12.11.2004     03:26:38         36864     E
              4     Typ     ICFSERVICE          0     21.11.2003     11:41:18         13312     
              5     Typ     ICFATTRIB          0     06.11.2003     20:36:18          4096     
              6     Typ     ICFLOGIN          0     12.11.2004     03:26:38          9216     
              7     Prg     CL_HTTP_SERVER================CP          7     12.11.2004     04:13:34        154624     E
              8     Typ     ICFRECORDER          0     06.11.2003     20:36:19         12288     
              9     Typ     IOPROP          0     29.03.2001     16:07:43          2048     
             10     Typ     ICFSTAT          0     09.11.2000     14:08:22          2048     
             11     Prg     CL_HTTP_UTILITY===============CP         11     12.11.2004     03:48:49         15360     E
             12     Prg     CL_ABAP_TRACE=================CP         12     06.11.2003     21:53:44          6144     E
             13     Prg     CL_ICF_RECORDER===============CP         13     12.11.2004     03:26:45          8192     E
             14     Prg     CL_HTTP_SERVER_NET============CP         14     12.11.2004     04:13:34        101376     E
             15     Typ     ICFRECODER_LOGON          0     06.11.2003     20:28:45          3072     
             16     Prg     CL_ABAP_RUNTIME===============CP         16     06.11.2003     20:59:29          8192     E
             17     Prg     CL_HTTP_REQUEST===============CP         17     12.11.2004     03:48:50         20480     E
             18     Prg     CL_HTTP_ENTITY================CP         18     12.11.2004     03:48:50         41984     E
             19     Prg     CL_HTTP_RESPONSE==============CP         19     12.11.2004     04:13:34         24576     E
             20     Typ     ICFALIAS          0     21.11.2003     11:41:17         13312     
             21     Typ     ICFVIRHOST          0     19.01.2001     18:13:06          2048     
             22     Typ     ICFBUFFER          0     21.11.2003     11:41:18         16384     
             23     Prg     SAPLSHTTP         23     12.11.2004     03:49:05        166912     E
             24     Typ     ICFAPPLCUST          0     21.11.2003     11:41:17          2048     
             25     Prg     CL_HTTP_USER_CONTEXT==========CP         25     12.11.2004     03:48:50          9216     E
             26     Typ     BAPIALIAS          0     09.12.1999     13:47:51          1024     
             27     Prg     SAPLLANG         27     06.11.2003     20:53:03          8192     E
             28     Typ     T002          0     14.02.1998     10:24:58          2048     
             29     Typ     ABAPTEXT          0     16.03.1993     18:19:31          1024     
             30     Prg     SAPLSCP2         30     23.11.2004     18:49:18        126976     E
             31     Prg     SSO2GETPARAM          1     06.11.2003     20:57:30         15360     E
             32     Prg     SAPLSSFG         32     09.12.2003     11:41:04        116736     E
             33     Typ     SSFARGS          0     19.11.2001     15:50:14          5120     
             34     Typ     PARMVALUES          0     03.01.1996     15:26:26          2048     
             35     Prg     SAPLSPFC         35     12.11.2004     03:38:48        239616     E
             36     Typ     MOD_FIELDS          0     16.07.1997     14:42:34          2048     
             37     Typ     SSF_PSE_H          0     15.11.2000     17:54:53          4096     
             38     Typ     ICFRECSTRU          0     06.11.2003     20:28:45          2048     
             39     Prg     SAPLSAUTHTRACE         39     16.03.2004     20:07:17         43008     E
             40     Typ     IHTTPNVP          0     29.03.2001     16:07:42          2048     
             41     Prg     CL_HTTP_EXT_WEBDYNPRO=========CP         41     12.11.2004     03:49:03         49152     E
             42     Prg     IF_HTTP_EXTENSION=============IP          7     29.03.2001     17:03:40          5120     E
             43     Prg     CL_HTTP_EXT_1X1_GIF===========CP         43     12.11.2004     03:48:51         11264     E
             44     Prg     IF_HTTP_HEADER_FIELDS_SAP=====IP         43     06.06.2001     13:26:02          5120     E
             45     Prg     CL_WDR_CLIENT_MANAGER=========CP         45     12.11.2004     03:48:52         47104     E
             46     Prg     CL_WDR_TASK===================CP         46     12.11.2004     03:49:04         46080     E
             47     Prg     CL_WDR_EVENT_QUEUE============CP         47     06.11.2003     21:11:25         10240     E
             48     Prg     CX_WDR_RT_EXCEPTION===========CP         48     06.11.2003     21:15:08         15360     E
             49     Typ     SCX_SRCPOS          0     09.11.2000     14:12:15          2048     
             50     Prg     CX_WD_EXCEPTION===============CP         50     06.11.2003     21:15:11         10240     E
             51     Prg     CX_NO_CHECK===================CP         51     06.11.2003     21:33:04          8192     E
             52     Prg     CX_ROOT=======================CP         52     06.11.2003     21:56:05          9216     E
             53     Prg     CL_WDR_CLIENT_SSR=============CP         53     12.11.2004     04:21:19        121856     E
             54     Prg     CL_WDR_CLIENT_ABSTRACT_HTTP===CP         54     12.11.2004     03:48:52         58368     E
             55     Prg     CL_DYNP_GLOBAL_CONTROL========CP         55     06.11.2003     21:02:15          7168     E
             56     Prg     CL_WDR_CLIENT_INSPECTOR=======CP         56     12.11.2004     03:48:49         39936     E
             57     Typ     WDR_CLIENTS          0     06.11.2003     20:38:42          2048     
             58     Typ     WDR_CLIENT_DATA          0     06.11.2003     20:33:21          2048     
             59     Prg     CL_WDR_CLIENT_CONSTANTS=======CP         59     06.11.2003     21:11:17         12288     E
             60     Prg     CL_WDR_CLIENT_CSF=============CP         60     12.11.2004     03:48:50        103424     E
             61     Prg     IF_WDR_CLIENT_DESCRIPTION=====IP         56     06.11.2003     21:34:13          3072     E
             62     Prg     CL_WDR_CLIENT_CSF_COND========CP         62     12.11.2004     03:26:52         32768     E
             63     Prg     CL_WDR_CLIENT_ABSTRACT_COND===CP         63     12.11.2004     03:26:52         32768     E
             64     Prg     IF_WDR_CLIENT_CONDITION=======IP         56     06.11.2003     21:34:13         29696     E
             65     Prg     IF_WDR_CLIENT_INFO_OBJECT_HDL=IP         56     06.11.2003     21:34:13         29696     E
             66     Prg     CL_WDR_CLIENT_XML=============CP         66     12.11.2004     03:48:49         80896     E
             67     Prg     CL_WDR_CLIENT_XML_COND========CP         67     12.11.2004     03:48:49         32768     E
             68     Prg     CL_WDR_VIEW_ELEM_ADAPTER_MNG==CP         68     06.11.2003     22:00:29         49152     E
             69     Prg     CL_WDR_UIEL_ADAPTER_MANAGER===CP         69     16.03.2004     19:57:19         13312     E
             70     Prg     CL_WDR_ABSTRCT_ADAPTER_MANAGERCP         70     06.11.2003     21:11:15          9216     E
             71     Typ     WDY_MD_CHANGE_INFORMATION          0     06.11.2003     20:33:22          2048     
             72     Typ     WDY_UI_LIBRARY          0     06.11.2003     20:38:47          3072     
             73     Prg     CL_EXITHANDLER================CP         73     12.11.2004     03:49:03         27648     E
             74     Prg     CL_ABAP_TYPEDESCR=============CP         74     07.11.2003     13:01:59         26624     E
             75     Prg     CL_ABAP_ELEMDESCR=============CP         75     06.11.2003     22:11:36         33792     E
             76     Prg     CL_ABAP_DATADESCR=============CP         76     06.11.2003     22:10:04         16384     E
             77     Prg     CL_ABAP_REFDESCR==============CP         77     07.11.2003     13:01:58         20480     E
             78     Prg     CL_ABAP_STRUCTDESCR===========CP         78     21.11.2003     11:42:45         34816     E
             79     Prg     CL_ABAP_COMPLEXDESCR==========CP         79     06.11.2003     22:10:04         14336     E
             80     Prg     CL_ABAP_TABLEDESCR============CP         80     06.11.2003     22:11:36         21504     E
             81     Prg     CL_ABAP_CLASSDESCR============CP         81     06.11.2003     22:11:36         25600     E
             82     Prg     CL_ABAP_OBJECTDESCR===========CP         82     06.11.2003     22:11:36         29696     E
             83     Prg     CL_ABAP_INTFDESCR=============CP         83     06.11.2003     22:11:36         20480     E
             84     Prg     CL_ABAP_SOFT_REFERENCE========CP         84     06.11.2003     20:41:10          8192     E
             85     Prg     CL_ABAP_REFERENCE=============CP         85     06.11.2003     20:52:43          6144     E
             86     Prg     IF_EX_WDR_UIE_LIBRARY=========IP         77     09.12.2003     11:45:52          4096     E
             87     Prg     %_CABAP         83     06.11.2003     22:07:49         25600     E
             88     Typ     SXS_INTER          0     30.11.1998     15:55:16          2048     
             89     Prg     SAPLSEXV         89     16.03.2004     20:14:01        108544     E
             90     Prg     CL_BADI_FLT_DATA_TRANS_AND_DB=CP         90     12.11.2004     03:49:03         35840     E
             91     Typ     SXS_ATTR          0     20.08.2001     12:23:27          4096     
             92     Typ     V_EXT_ACT          0     09.11.2000     14:27:05          2048     
             93     Typ     SXC_EXIT          0     09.11.2000     14:23:43          2048     
             94     Prg     SAPLSEXE         94     12.11.2004     03:49:05         78848     E
             95     Typ     TADIR          0     09.11.2000     14:14:40          4096     
             96     Prg     SAPLPA_PACKAGE_SERVICES         96     12.11.2004     04:12:26        121856     E
             97     Typ     SXS_MLCO          0     04.12.2000     14:59:55          2048     
             98     Prg     CL_EX_WDR_UIE_LIBRARY=========CP         98     09.12.2003     11:43:56         24576     E
             99     Prg     CL_WDR_EVENT_ADAPTER_MANAGER==CP         99     06.11.2003     22:00:29         35840     E
            100     Prg     CL_WDR_CLIENT_SSR_COND========CP        100     12.11.2004     03:48:49         33792     E
            101     Prg     CL_WDR_SERVER_SESSION=========CP        101     09.12.2003     11:39:43         39936     E
            102     Prg     CL_WDR_CLIENT_INFO_OBJECT=====CP        102     06.11.2003     21:11:17         12288     E
            103     Prg     CL_WDR_CLIENT_USER============CP        103     06.11.2003     21:11:19         34816     E
            104     Prg     SAPLISOC        104     06.11.2003     20:53:02         26624     E
            105     Prg     CL_WDR_LOCALE=================CP        105     06.11.2003     21:11:28          7168     E
            106     Prg     CL_WDR_CLIENT_SESSION=========CP        106     06.11.2003     21:11:18         36864     E
            107     Typ     WDR_NAME_VALUE          0     06.11.2003     20:33:21          2048     
            108     Prg     CL_WDR_CLIENT_WINDOW==========CP        108     06.11.2003     21:11:19         40960     E
            109     Prg     IF_WDR_CLIENT=================IP         56     06.11.2003     21:34:13         30720     E
            110     Prg     CX_SY_MOVE_CAST_ERROR=========CP        110     06.11.2003     20:41:23          9216     E
            111     Prg     CX_DYNAMIC_CHECK==============CP        111     06.11.2003     21:33:04          8192     E
            112     Prg     CL_WDR_REC_PLUGIN_MANAGER=====CP        112     06.11.2003     22:00:29         50176     E
            113     Typ     WDR_REC_PLUGIN          0     06.11.2003     20:38:42          2048     
            114     Prg     SAPLSPLUGIN        114     06.11.2003     21:28:25          6144     E
            115     Prg     CL_WDR_WEBDYNPRO_MAIN_TASK====CP        115     12.11.2004     03:49:04         60416     E
            116     Prg     IF_WDR_CLIENT_TASK============IP         45     06.11.2003     21:34:13          4096     E
            117     Typ     WDR_EVENT_ADAPTER          0     09.12.2003     11:37:55          2048     
            118     Prg     CL_WDAL_URD2_DYNPRO_CONVERSIONCP        118     12.11.2004     04:21:19        263168     E
            119     Prg     CL_WDR_SYSTEM_EVT_HANDLER_REG=CP        119     06.11.2003     21:11:35         33792     E
            120     Prg     CL_WDR_ABSTRACT_SRV_EVTHDL_REGCP        120     06.11.2003     21:11:15         34816     E
            121     Prg     CL_WDR_CLIENT_APPLICATION=====CP        121     12.11.2004     03:48:49         67584     E
            122     Prg     CL_WDR_CLIENT_COMPONENT=======CP        122     09.12.2003     11:39:43         64512     E
            123     Prg     CL_WDR_RR_RUNTIME_REPOSITORY==CP        123     16.03.2004     19:57:19         27648     E
            124     Prg     CL_WDR_RR_APPLICATION=========CP        124     06.11.2003     22:00:29         29696     E
            125     Typ     WDY_APPLICATION          0     06.11.2003     20:38:43          3072     
            126     Prg     CX_WDR_RR_EXCEPTION===========CP        126     09.12.2003     11:39:45         15360     E
            127     Typ     WDY_RT_OBJECT_MAP          0     06.11.2003     20:33:24          2048     
            128     Prg     CL_WDR_RR_COMPONENT===========CP        128     12.11.2004     03:49:04         73728     E
            129     Typ     WDY_RR_COMPONENT          0     27.01.2004     13:51:32          2048     
            130     Typ     WDY_RR_VIEW          0     06.11.2003     20:33:24          2048     
            131     Typ     WDY_RR_VIEW          0     06.11.2003     20:33:24          2048     
            132     Typ     WDY_RR_WINDOW          0     06.11.2003     20:33:24          2048     
            133     Typ     WDY_RR_WINDOW          0     06.11.2003     20:33:24          2048     
            134     Typ     WDY_RR_COMPO_USAGE          0     06.11.2003     20:33:23          2048     
            135     Typ     WDY_RR_COMPO_USAGE          0     06.11.2003     20:33:23          2048     
            136     Typ     WDY_RR_CONTROLLER          0     06.11.2003     20:33:23          2048     
            137     Typ     WDY_RR_CONTROLLER          0     06.11.2003     20:33:23          2048     
            138     Typ     WDY_RR_VUSAGE          0     06.11.2003     20:33:24          3072     
            139     Typ     WDY_RR_VUSAGE          0     06.11.2003     20:33:24          3072     
            140     Typ     WDY_RR_VCA_INFO          0     06.11.2003     20:33:23          2048     
            141     Typ     WDY_RR_VCA_INFO          0     06.11.2003     20:33:23          2048     
            142     Typ     WDY_RR_NAV_LINK          0     06.11.2003     20:33:23          2048     
            143     Typ     WDY_RR_NAV_LINK          0     06.11.2003     20:33:23          2048     
            144     Typ     WDY_RR_NAV_TARGREF          0     06.11.2003     20:33:23          2048     
            145     Typ     WDY_RR_NAV_TARGREF          0     06.11.2003     20:33:23          2048     
            146     Typ     WDY_SUBSCRIBED_EVENT          0     06.11.2003     20:33:24          2048     
            147     Typ     WDY_SUBSCRIBED_INBOUND_PLUG          0     06.11.2003     20:33:24          2048     
            148     Typ     WDY_RR_CTLR_COMPO          0     06.11.2003     20:33:23          3072     
            149     Typ     WDY_RR_CTLR_COMPO          0     06.11.2003     20:33:23          3072     
            150     Typ     WDY_RR_UI_EVT_BIND          0     06.11.2003     20:33:23          2048     
            151     Typ     WDY_RR_UI_EVT_BIND          0     06.11.2003     20:33:23          2048     
            152     Typ     WDY_RR_UI_VIEW_CONT          0     06.11.2003     20:33:23          2048     
            153     Typ     WDY_RR_UI_VIEW_CONT          0     06.11.2003     20:33:23          2048     
            154     Typ     WDY_RR_IOBOUND_PLUG          0     06.11.2003     20:33:23          2048     
            155     Typ     WDY_RR_IOBOUND_PLUG          0     06.11.2003     20:33:23          2048     
            156     Typ     WDY_RR_PARAMETER          0     06.11.2003     20:33:23          2048     
            157     Typ     WDY_RR_PLUG_PARAMS          0     06.11.2003     20:33:23          3072     
            158     Typ     WDY_RR_PLUG_PARAMS          0     06.11.2003     20:33:23          3072     
            159     Typ     WDY_RR_UI_ELEM_DEFS          0     06.11.2003     20:33:23          3072     
            160     Typ     WDY_RR_UI_ELEM_DEFS          0     06.11.2003     20:33:23          3072     
            161     Typ     WDY_RR_UI_ELEM          0     06.11.2003     20:33:23          3072     
            162     Typ     WDY_RR_UI_ELEM          0     06.11.2003     20:33:23          3072     
            163     Typ     WDY_RR_CLUSTER          0     27.01.2004     13:51:32         21504     
            164     Prg     CL_WDY_MD_PARAM_FEATURE=======CP        164     16.03.2004     20:12:30         25600     E
            165     Typ     WDY_MD_OBJECT_DESCRIPTION          0     09.12.2003     11:37:56          2048     
            166     Prg     CL_WDY_MD_OBJECT==============CP        166     06.11.2003     22:00:30         12288     E
            167     Prg     CL_WDR_RR_DB==================CP        167     16.03.2004     20:12:30         82944     E
            168     Typ     WDY_COMPONENT          0     06.11.2003     20:38:43          3072     
            169     Typ     WDY_RR_TEXT          0     06.11.2003     20:33:23          2048     
            170     Typ     SOTR_KEY          0     09.12.1999     13:48:20          2048     
            171     Typ     SOTR_TERM          0     15.11.2000     17:54:28          3072     
            172     Prg     SAPLSOTR_DB_READ        172     12.11.2004     04:15:08         39936     E
            173     Typ     SOTR_CNTXT          0     09.12.1999     13:48:20          2048     
            174     Typ     SOTR_ADMIN          0     09.12.1999     13:48:20          2048     
            175     Typ     SOTR_TEXT          0     06.11.2003     20:31:14          5120     
            176     Typ     SOTR_HEAD          0     15.11.2000     17:54:28          4096     
            177     Prg     CL_WDR_RR_EMPTY_VIEW==========CP        177     06.11.2003     21:11:32         28672     E
            178     Prg     CL_WDR_RR_ABSTRACT_VIEW=======CP        178     06.11.2003     22:00:29         35840     E
            179     Prg     CL_WDR_RR_INBOUND_PLUG========CP        179     06.11.2003     21:11:32         32768     E
            180     Prg     CL_WDR_RR_INCOMING_EVENT======CP        180     06.11.2003     21:11:32         26624     E
            181     Prg     CL_WDR_RR_PARAM_FEATURE=======CP        181     06.11.2003     21:11:33         28672     E
            182     Prg     CL_WDR_RR_COMPONENT_INTF_IMPL=CP        182     06.11.2003     21:11:31         29696     E
            183     Prg     CL_WDR_RR_COMPONENT_INTERFACE=CP        183     06.11.2003     21:11:30         31744     E
            184     Prg     CL_WDR_RR_CONTROLLER==========CP        184     06.11.2003     22:00:29         36864     E
            185     Prg     CL_WDR_RR_WINDOW==============CP        185     06.11.2003     22:00:29         43008     E
            186     Prg     CL_WDR_RR_VIEW_USAGE==========CP        186     06.11.2003     22:00:29         54272     E
            187     Prg     CL_WDY_MD_ABSTRACT_VIEW=======CP        187     19.07.2004     03:41:57         96256     E
            188     Typ     WDY_VIEW          0     06.11.2003     20:38:47          4096     
            189     Prg     CL_WDR_RR_VIEW================CP        189     06.11.2003     22:00:29         39936     E
            190     Prg     CL_WDR_RR_INTERFACE_VIEW======CP        190     06.11.2003     21:11:32         30720     E
            191     Prg     CL_WD_TODO====================CP        191     06.11.2003     21:12:50         24576     E
            192     Prg     CL_WDR_CONFIGURATION_CONSTANTSCP        192     06.11.2003     21:11:20          6144     E
            193     Prg     CL_WDR_SERVER_CONSTANTS=======CP        193     06.11.2003     21:11:34          6144     E
            194     Prg     CL_WDR_UI_ELEMENT_FACTORY=====CP        194     06.11.2003     21:11:36         31744     E
            195     Prg     /1BCWDY/MXAJIDSD2PZXCNSR7DDN==CP        195     24.02.2007     13:45:21         89088     E
            196     Prg     IF_WDR_CLASSLOADER============IP        122     06.11.2003     21:34:13         27648     E
            197     Prg     CL_WDR_DELEGATING_COMPONENT===CP        197     06.11.2003     21:11:24         46080     E
            198     Prg     CL_WDR_COMPONENT==============CP        198     06.11.2003     22:09:16         60416     E
            199     Prg     CL_WDR_CONTROLLER=============CP        199     06.11.2003     22:00:29         45056     E
            200     Prg     IF_WDR_CONTEXT================IP        197     06.11.2003     21:34:13         27648     E
            201     Typ     WDR_CONTEXT_ATTR_VALUE          0     06.11.2003     20:33:21          2048     
            202     Typ     WDR_CONTEXT_ATTR_VALUE          0     06.11.2003     20:33:21          2048     
            203     Typ     WDR_CONTEXT_ATTRIBUTE_INFO          0     06.11.2003     20:33:21          3072     
            204     Typ     WDR_CONTEXT_MAPPING_INFO          0     06.11.2003     20:33:21          2048     
            205     Prg     CL_WDR_CONTEXT_NODE_INFO======CP        205     09.12.2003     11:39:43         29696     E
            206     Prg     CX_WD_CONTEXT=================CP        206     06.11.2003     21:15:10         12288     E
            207     Prg     CL_WDR_CONTEXT_NODE===========CP        207     09.12.2003     11:39:43         45056     E
            208     Typ     WDR_CONTEXT_CHILD          0     06.11.2003     20:33:21          2048     
            209     Prg     CL_WDR_CONTEXT_NODE_VAL=======CP        209     09.12.2003     11:39:43         66560     E
            210     Prg     IF_WDR_COMPONENT_DELEGATE=====IP        195     16.03.2004     20:12:31         27648     E
            211     Prg     IF_WD_CONTROLLER==============IP        197     09.12.2003     11:46:03         27648     E
            212     Prg     CL_WDR_MESSAGE_MANAGER========CP        212     09.12.2003     11:39:43         74752     E
            213     Prg     CL_WDR_DATA_CONTAINER=========CP        213     09.12.2003     11:39:43         69632     E
            214     Typ     WDY_RT_DATA_CONT_ATTR_MAP          0     06.11.2003     20:33:24          3072     
            215     Typ     WDY_RT_DATA_CONT_CNTL          0     06.11.2003     20:33:24          2048     
            216     Prg     CL_WDR_APPLICATION_WINDOW=====CP        216     06.11.2003     21:11:15         44032     E
            217     Prg     CL_WDR_WINDOW=================CP        217     06.11.2003     22:00:29         50176     E
            218     Prg     IF_WDR_APPLICATION============IP        101     06.11.2003     22:07:12         29696     E
            219     Typ     WDR_EVENT_PARAMETER          0     06.11.2003     20:33:21          2048     
            220     Typ     WDR_VIEWMAN_LINE          0     06.11.2003     20:33:21          2048     
            221     Prg     CL_WDR_VIEW_MANAGER===========CP        221     12.11.2004     03:49:04         70656     E
            222     Prg     IF_WDR_VIEW_MANAGER===========IP        221     06.11.2003     22:07:12         27648     E
            223     Typ     WDR_CONTROLLER_LINE          0     06.11.2003     20:33:21          2048     
            224     Prg     CX_WDR_BAD_STATE==============CP        224     06.11.2003     21:15:06          9216     E
            225     Prg     CX_WDR_RUNTIME================CP        225     06.11.2003     21:15:08         10240     E
            226     Typ     WDR_CLIENTCOMP_LINE          0     06.11.2003     20:33:21          2048     
            227     Prg     CL_WDR_WINDOW_MANAGER=========CP        227     06.11.2003     21:11:39         37888     E
            228     Prg     CL_WDR_DELEGATING_IF_VIEW=====CP        228     06.11.2003     21:11:24         45056     E
            229     Prg     CL_WDR_INTERFACE_VIEW=========CP        229     06.11.2003     21:11:28         43008     E
            230     Prg     CL_WDR_VIEW===================CP        230     06.11.2003     22:00:29         62464     E
            231     Prg     IF_WDR_VIEW_DELEGATE==========IP        195     16.03.2004     20:12:31         27648     E
            232     Prg     IF_WD_CONTEXT_NODE============IP        228     09.12.2003     11:46:03         31744     E
            233     Prg     IF_WD_CONTEXT_NODE_INFO=======IP        228   

  • Search help that populates two fields on a WEB dynpro page

    Hi there,
    I have created a search help based on a single table ( QPCD ) with two exporting parameters CODEGRUPPE and CODE. When the user selects a their desired entry i would like it to poulate the relevant two fields on the web dynpro screen. I know in a normal dialog screen you could get this to happen automatically, but when implementing it into a web dynpro from abap screen it only returns the first value into the field that the search help was called from. Anyone know how i could get both fields populated?
    Thanks in advance
    Regards
    Mart

    check http://help.sap.com/saphelp_nw04s/helpdata/en/5d/395e4254139041e10000000a1550b0/frameset.htm
    It is not that hard.
    Create a new webdynpro component and implement IWD_VALUE_HELP in this component.
    go to the component controller of you new component and add a new attribute:
    listener type ref to IF_WD_VALUE_HELP_LISTENER.
    in the method set_value_help_listener add the line:
    wd_this->listener = listener.
    then you can create as much views and things you need for your search help.
    To set a selected value just add a method to your component controller which takes the values as import parameters. if you only want to set the value for the attribute it was requested for:
      wd_this->listener->F4_CONTEXT_ELEMENT->set_attribute(
        name = wd_this->listener->F4_ATTRIBUTE_INFO-name
        value = <value>
    This is the save way
    But you can also call
      wd_this->listener->F4_CONTEXT_ELEMENT->set_attribute(
        name = 'CODEGRUPPE'
        value = <value_codegruppe>
      wd_this->listener->F4_CONTEXT_ELEMENT->set_attribute(
        name = 'CODE'
        value = <value_code>
    But keep in mind that if the structure of the element changes, this could lead to short dump if the name of the attribute changes or the attribute was deleted.
    if you want to close the search help window call wd_this->listener->close( ).
    Hope this helps.
    Cheers,
    Sascha

  • Open and close a PO in web dynpro in SRM 7.0 screen .

    Hi All ,
    I am creating a PO in SRM 7.0 by using excel upload via web dynpro screen .
    After the upload , I see that there are some problems with the PO in web dynpro .
    For example , when i click on the line item it dumps and there are some other similar problems .
    When I save the PO close it and reopen it , the problem goes away . May be the system handles them in some way
    So , is there a way in which I can close and reopen the po through coding ?
    I know there are buttons at the top that close the PO , but some how I could not get the code for that .
    I will really appreciate the help here .
    Thanks in advance ,
    Ambar Patil.

    Hi...
    By first instance, i think that problem may be with uploading from excel. because sometimes excel data conversion will not done properly. So due to incorrect values, PO may go into dump..  that is my thought.
    if not lets wait for others answers
    Regards
    Srinivas

  • Open and close po in SRM 7.0 in web dynpro !

    Hi All ,
    I am creating a PO by using excel upload . After the upload , I see that there are some problems with the PO in web dynpro .
    For example , when i click on the line item it dumps and some similar problems .
    When I save the PO and reopen it , the problem goes away . May be the system handles them well .
    So , is there a way in which I can close and reopen the po through coding ?
    I know there are buttons at the top that close the PO , but some how I could not get the code for that .
    I will really appreciate the help here .
    Thanks in advance ,
    Ambar Patil.

    I'd suggest that you try the download/upload functionality as such:
    1. Create a new PO from portal (just select a PO type and launch the PO creation screen without further editing)
    2. Save the PO on the web
    3. Click "Export" and save the XLS file onto your PC
    4. On your PC, edit the XLS file to fill more PO information as needed
    5. On the web, click "Edit" (of the same PO)
    6. Click "Import" and upload the XLS file you just updated

Maybe you are looking for

  • File-to-Idoc complete design suggestion

    Hi all, Could anyone suggests and validate the following approach. design: Sender file adapter communication channel will be used to pick up the file from the ftp. File adapter polls into ftp directory and pickup the right file and archived the file

  • Why can't I send or receive picture messages on my iPhone 4s?

    Why can't I send or receive picture messages on my iPhone 4s?

  • Parallel Processing in Oracle

    Gurus, I need to run three cursors at a time. Is it possible in Oracle? If yes then help in this issue. Thanks in Advance.

  • Used iphone and need some help, please

    i got a used iphone and im tryin to set it up, but the screen isnt turning on, i mean there is little light but cant see anything. what do i do ?

  • Syncing with iCal via iTunes fails

    since 3 weeks I'm not able to sync my calendars between my iPhone (3G, iOS 3.1.3) and iTunes (v 10.4.1 for MacOS) and iCal. The iPhone is shown in iTunes, I can start syncing and the progress of the process is beeing shown in iTunes. iTunes also tell