Error on enhancing context node of component CRMCMP_CAWB

Hi Experts,
I am trying to enhance the context node SEARCHQUERY of view creditwbsearchview component CRMCMP_CAWB. While doing the generated context node class is having 1 error.
This is also causing dump. Can you all please help me how to remove this error. This is bit urgent.

Might need to raise OSS, cause error is in the standard class.
Regards,
Sumeet

Similar Messages

  • How to populate context node of component controller

    Dear People,
    Is there any way i could access my custom context node of component controller in the context node class of my custom controller.
    I am navigating from one component to another, Upon initial launch everything is working fine, however if i go to home page and come back. the assignment block is coming empty.
    In WD_USAGE_INITIALIZE i m binding my custom controllers context node with the component controller's context node of the other component and it works fine when i load the UI. however if i go to home page and come back. the assignment block is coming empty.
    Following code is in method of DO_VIEW_INIT_ON_ACTIVATION of the other componenet.
    METHOD do_view_init_on_activation.
      DATA:   lv_btstatus_parent TYPE REF TO cl_crm_bol_entity,
            lv_comp_ctrl      TYPE REF TO cl_btstatus_bspwdcomponen_impl.
      CONSTANTS:
            lc_us_header      TYPE crmt_relation_name VALUE 'BTStatusHUserAll',
            lc_us_item        TYPE crmt_relation_name VALUE 'BTStatusIUserAll'.
      lv_comp_ctrl ?= me->comp_controller.
    check if relationname has been passed from outside
        gc_relation_name = lv_comp_ctrl->get_relation_name( ).
      IF gc_relation_name IS INITIAL.
      check type of parent to determine relationname
        *lv_btstatus_parent ?= lv_comp_ctrl->typed_context->btstatusparent->collection_wrapper->get_current( ).*
       check lv_btstatus_parent is bound.
        CASE lv_btstatus_parent->get_name( ).
            WHEN 'BTStatusH'.
              gc_relation_name = lc_us_header.
            WHEN 'BTStatusI'.
              gc_relation_name = lc_us_item.
        ENDCASE.
      ENDIF.
    CALL METHOD super->do_view_init_on_activation.
    ENDMETHOD.
    Here lv_btstatus_parent is bound during initial launch, however after navigating back to the same page, its blank leading to exception.
    any suggestions would be helpful.
    regards,
    pradeep

    solved myself

  • Error creating dynamic context node in Webdynpro for ABAP. Plesae help!

    Hi
       I am getting the following error while creating a dynamic context node with 2 attributes. Please help me resolve this problem.
    Note
    The following error text was processed in the system PET : Line types of an internal table and a work area not compatible.
    The error occurred on the application server FMSAP995_PET_02 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_WD_CONTEXT_NODE~GET_STATIC_ATTRIBUTES_TABLE of program CL_WDR_CONTEXT_NODE_VAL=======CP
    Method: GET_REF_TO_TABLE of program CL_SALV_WD_DATA_TABLE=========CP
    Method: EXECUTE of program CL_SALV_WD_SERVICE_MANAGER====CP
    Method: APPLY_SERVICES of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: REFRESH of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE_DATA of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~UPDATE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_VIEW~MODIFY of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMPONENT~VIEW_MODIFY of program CL_SALV_WD_A_COMPONENT========CP
    My code is like the following:
    TYPES: BEGIN OF t_type,
                CARRID TYPE sflight-carrid,
                CONNID TYPE sflight-connid,
             END OF t_type.
      Data:  i_struc type table of t_type,
      dyn_node   type ref to if_wd_context_node,
      rootnode_info   type ref to if_wd_context_node_info,
      i_node_att type wdr_context_attr_info_map,
      wa_node_att type line of wdr_context_attr_info_map.
          wa_node_att-name = 'CARRID'.
          wa_node_att-TYPE_NAME = 'SFLIGHT-CARRID'.
          insert wa_node_att into table i_node_att.
          wa_node_att-name = 'CONNID'.
          wa_node_att-TYPE_NAME = 'SFLIGHT-CONNID'.
          insert wa_node_att into table i_node_att.
    clear i_struc. refresh i_struc.
      select carrid connid into corresponding fields of table i_struc from sflight where carrid = 'AA'.
    rootnode_info = wd_context->get_node_info( ).
    rootnode_info->add_new_child_node( name = 'DYNFLIGHT'
                                       attributes = i_node_att
                                       is_multiple = abap_true ).
    dyn_node = wd_context->get_child_node( 'DYNFLIGHT' ).
    dyn_node->bind_table( i_struc ).
    l_ref_interfacecontroller->set_data( dyn_node ).
    I am trying to create a new node. That is
    CONTEXT
    - DYNFLIGHT
    CARRID
    CONNID
    As you see above I am trying to create 'DYNFLIGHT' along with the 2 attributes which are inside this node. The structure of the node that is, no.of attributes may vary based on some condition. Thats why I am trying to create a node dynamically.
    Also I cannot define the structure in the ABAP dictionary because it changes based on condition

    Ok, I think I found a bug... It seems for adobe forms in WD4A, the root context node must be 1-1 and you must nest the 1-n node within that... Not sure why, but it worked. So in my case my context would look like this:
    FOO_NODE (1-1)
         Widget (1-N)
              -Widget_info (1-1)
                   *Name
                   *Sku
                   *Description
              -Widget_plant (1-M)
                   *Plant_Code
                   *Plant_State
                   *Plant_City
              -Widget_pic (1-1)
                   *Picture

  • The selected context node does not have attributes - Message no. SWDP_WB_TO

    Hello,
    I am trying out the example in web dynpro documentation -> Creating a Simple Flight Info Application
    and in part 3 steps 11 - 13 I get the following error
    The selected context node does not have attributes
    and the associated message class and # is :
    Message no. SWDP_WB_TOOL467
    can anyone please help ?

    Hi Raj,
    Have you done the steps 7 and 8 as described
    7.      Create an additional node called u201CflightSu201D, this time with the cardinality 0..n.
    8.      Use the Create Using Wizard option of the context node again to define attributes from the SFLIGHT structure for this new node (see part 1, step 15). Choose the following fields: CARRID, CONNID, FLDATE, PRICE and PLANETYPE.
    See the flights node , if there are no attributes the perform the steps as described in 8.

  • Reuse of Context node field into another

    Hi All,
    My Reuirement is to add "Product Configuration" field into Crdit Memo item List. Whereas this standard field already avaialble in standard order item list.
    But "Credit Memo Item list" Context node is different fro "Standard order item list" Context Node. How to make use of that std field into "Credit Memo Item list" Context node.
    Component : ICCMP_BT_SLO/Slo1cart
    Std order Context Node : ADMINI
    Componet : ICCMP_BTITEM/itemList
    Credit Memo COntext Node : BTADMINI
    Field Name : Config
    Kindly Suggest how to proceed this.
    Thank you,
    Cha

    Hi Cha,
    In the view ICCMP_BT_SLO/Slo1cart in the context node they have added a manual attribute called "Config"
    You can do the same to your view ICCMP_BTITEM/itemList. you can create a manual attribute - you can do this by do a right click on the attributes of the BTADMINI context node.
    You can copy the same code from the other component or you can write your own code in the get method
    Hope this helps.
    Thanks,
    Senthil.

  • How to implement Dynamic Context Node Mapping between Components

    Hey genuis:
               I am looking for how to implement context mapping bwteen two components. I read some threads, and try to use external context mapping. The example works fine. However, my requirement is more than that.
    I have a context node in Component B, and the attributes in it are dynamically generated. Component A is the main component which use Component B's function. Both A and B work fine by theirselves. 
    When I assemble A and B (external mapping), the system gives me a exception:com.sap.tc.webdynpro.progmodel.context.ContextException: MappedNodeInfo(T8UploadCompInterface.data): cannot create nodes, no mapping defined yet.
    Please give me some suggestion?
    Any responses are appreciated.

    I miss this thread.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6fdae690-0201-0010-a580-d104b459cb44
    This is almost the right solution for my problem.

  • Read attribute of implementation class from context node

    hi experts,
    I need to access the implementation class from the context node,in component seged_tg/eltargetgroupitem. Node is targetgroupitem.
    Also if I can either access the component controller from the context node,I need to know how to instantiate the class.
    please help.
    regards
    Anu

    hi ,
    I discovered that we cannot access the child nodes from parent class,so instead I am using custom controllers

  • Error while enhancing standard component CRMCMP_CND

    Hi,
    We have one requirement that Phase Id and Offer Id needs to added in the /SAPCND/GCM transaction and the same needs to be disaplay in the web ui.  So we added two fields in field catalog after that we made two implementation in /SAPCND/ROLLNAME and CRM_COND_COM_BADI.
    Now the funtionality is working fine in the GUI and in WEBUI the field is added but the F4 value is not visible in the new web ui screen.
    So I tried to enhance the standard component CRMCMP_CND, in order to retreive the F4 value help.  While selecting the context node in the standard view CondRecEditView we are getting the status message u201CError during analysis of method REATE_CONDRECORD of class L_CRMCMP_C_CONDRECEDITV0_CTXT. Message no. BSP_WD_TOOLS031u201D
    In standard view itself I am getting this error and while enhancing the component the context node is not converted in to Zclass.
    If we try to add attribute from the context node its giving error create_condrecord does not exist error.
    So I am unable to proceed further.  If any one aware how to solve this issue kindly let me know.

    Hi,
    While enhancing a view of a component only the controller (xx_IMPL) and the context class (xx_CTXT) are extended into Z classes. Context nodes (xx_CNXX) are not automatically extended. You have to do it manually only for the context node(s) you would like to modify. Indeed there is a message that appears when you select the context node but this is not the reason why the CN class is not extended.
    What you have to do is to redefine the method CREATE_CONDRECORD in class ZL_CRMCMP_C_CONDRECEDITV0_CTXT and create a new class ZL_CRMCMP_C_CONDRECEDITV0_CN00 that extends CL_CRMCMP_C_CONDRECEDITV0_CN00
    In ZL_CRMCMP_C_CONDRECEDITV0_CN00 implement method GET_V_xx for the field you want a search help on
    Regards,
    Fabian

  • Error while enhancing the BP_ADDR component using BSP component workbench

    Hi ,
    I am trying to enhance the BP_ADDR component using the BSP component workbench. But when I try to regenerate GET_I methods of my context node, I am getting the following error:
    "Component GET_ADDRESS_GUID does not exist.
    Determination of BOL attributes failed"
    Please let me know the reason for this error and how to resolve it.
    Thanks
    Mreddy

    Hi,
    You may manually create the Get method for the attribute ADDRESS_GUID in your context node class.
    Regards
    Prasenjit

  • Error while genetrating gettter method on Context node attribute

    Hi,
    I am working in SAP CRM 7.0 Ehp1.Now I need to create get_p_a and set_p_a method
    on context node attribute.But while selecting attribute and clicking on right and selecting
    on generate P-Getter,getting an error (error message - View not copied or enhanced with wizard; processing not possible).
    This is a custom context node attribute and need to create gettter,setter method.
    Kindly assist on this or suggest is there any way to create method on required context node attribute.
    Regards
    Viren

    Hi there,
    Creation of Getter  Setter is not possible for the AET Generated Views and Components.
    It seems your view is generated using AET Table enhancement feature of Ehp1 and the context node is thus a based on a Z BOL object created by a feature of AET of Ehp1
    For such context node, generation of getter setters is not  possible with right click.
    If you need any of GET_ , SET_, GET_P_ or GET_V , then you need to copy the GET_P_XYZ etc method you find on context node class.
    Hope this helps
    Thanks & Regards
    Suchita

  • Error while generating the context node

    Hi ,
    Requirement is to add the marketing attribute field under the Account details overview Page. As the field was not available in the context node i have added a new context node in the Account details. I used the wizard and added the context node BuilmktattributeRel so as i can add "Attribute set" under the BP overview page."
    Now after adding the context node and while executing i am unable to see the overview view page, i am getting an error :
    1. Component GET_ATTRIBUTE does not exist
    2. Determination of BOL attributes failed
    Also i am unable to regenrate the GET_I_method. If i want to delete the Zcontextnode, i am unable to do so.
    Kindly help me with the technical approach to add the context node in the overview page.
    Thanks in advance,
    Sunil

    One thread would have been sufficient.
    Error while generating the context node

  • Error in getting reference to a context node.

    Hi,
         I am getting NULL Object reference error while try to get reference to a context node of a window.
    Here is Error message. Please give some suggestions.
    The following error text was processed in the system NSP : Access via 'NULL' object reference not possible.
    The error occurred on the application server Sundar_NSP_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: HANDLEDEFAULT of program /1BCWDY/0NMKGBOSP2TIV65B1I11==CP
    Method: HANDLEDEFAULT of program /1BCWDY/0NMKGBOSP2TIV65B1I11==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/0NMKGBOSP2TIV65B1I11==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_IF_VIEW=====CP
    Method: DISPLAY_TOPLEVEL_COMPONENT of program CL_WDR_CLIENT_COMPONENT=======CP
    Method: INIT of program CL_WDR_CLIENT_APPLICATION=====CP
    Method: EXECUTE of program CL_WDR_MAIN_TASK==============CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Cheers,
    Sam

    Hii.. Here is the short dump.
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Exception              CX_SY_REF_IS_INITIAL
    Date and Time          07.04.2007 16:43:21
    Short text
    Access via 'NULL' object reference not possible.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "/1BCWDY/0NMKGBOSP2TIV65B1I11==CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    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 that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught in
    procedure "HANDLEDEFAULT" "(METHOD)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component.
    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.
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    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:
    "OBJECTS_OBJREF_NOT_ASSIGNED_NO" "CX_SY_REF_IS_INITIAL"
    "/1BCWDY/0NMKGBOSP2TIV65B1I11==CP" or "/1BCWDY/B_0NMLUIVDHGPOBAS29YIF"
    "HANDLEDEFAULT"
    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.
    The exception must either be prevented, caught within proedure
    "HANDLEDEFAULT" "(METHOD)", or its possible occurrence must be declared in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    System environment
    SAP-Release 700
    Application server... "Sundar"
    Network address...... "10.10.0.10"
    Operating system..... "Windows NT"
    Release.............. "5.1"
    Hardware type........ "2x Intel 80686"
    Character length.... 8 Bits
    Pointer length....... 32 Bits
    Work process number.. 0
    Shortdump setting.... "full"
    Database server... "SUNDAR"
    Database type..... "ADABAS D"
    Database name..... "NSP"
    Database user ID.. "SAPNSP"
    Char.set.... "English_United State"
    SAP kernel....... 700
    created (date)... "Jan 29 2007 00:33:09"
    create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version. "SQLDBC 7.6.0.036 CL 140088 "
    Patch level. 95
    Patch text.. " "
    Database............. "MaxDB 7.6, MaxDB 7.7"
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory consumption
    Roll.... 8112
    EM...... 3135888
    Heap.... 0
    Page.... 0
    MM Used. 2645808
    MM Free. 488520
    User and Transaction
    Client.............. 000
    User................ "BCUSER"
    Language Key........ "E"
    Transaction......... " "
    Program............. "/1BCWDY/0NMKGBOSP2TIV65B1I11==CP"
    Screen.............. "SAPMHTTP 0010"
    Screen Line......... 2
    Information on Caller ofr "HTTP" Connection:
    Plug-in Type.......... "HTTP"
    Caller IP............. "127.0.0.1"
    Caller Port........... 8000
    Universal Resource Id. "/sap/bc/webdynpro/sap/zexp_parameter_app/"
    Information on where terminated
    Termination occurred in the ABAP program "/1BCWDY/0NMKGBOSP2TIV65B1I11==CP" -
    in "HANDLEDEFAULT".
    The main program was "SAPMHTTP ".
    In the source code you have the termination point in line 309
    of the (Include) program "/1BCWDY/B_0NMLUIVDHGPOBAS29YIF".
    Termination occurred in a Web Dynpro application
    Web Dynpro Component          ZEXP_PARAMETER_APP
    Web Dynpro Controller         ZEXP_PARAMETER_APP
    The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in
    procedure "HANDLEDEFAULT" "(METHOD)", but it was neither handled locally nor
    declared
    in the RAISING clause of its signature.
    The procedure is in program "/1BCWDY/0NMKGBOSP2TIV65B1I11==CP "; its source
    code begins in line
    301 of the (Include program "/1BCWDY/B_0NMLUIVDHGPOBAS29YIF ".
    Source Code Extract
    Line
    SourceCde
    279
    endmethod.
    280
    281
    282
    general methods
    283
    284
    285
    method WDDOEXIT . "#EC NEEDED
    286
    endmethod.
    287
    288
    method WDDOINIT . "#EC NEEDED
    289
    endmethod.
    290
    291
    method WDDOONCLOSE . "#EC NEEDED
    292
    endmethod.
    293
    294
    method WDDOONOPEN . "#EC NEEDED
    295
    endmethod.
    296
    297
    298
    event handlers
    299
    300
    301
    METHOD handledefault .
    302
    DATA lr_node TYPE REF TO if_wd_context_node.
    303
    DATA ls_content TYPE if_zexp_parameter_app=>element_content.
    304
    305
    Assign Parameter values
    306
    ls_content-first_name = first_name.
    307
    ls_content-last_name = last_name.
    308
    Get reference to context node 'CONTEXT'
    >>>>>
    lr_node->get_child_node( 'CONTENT' ).
    310
    Bind element
    311
    lr_node->bind_element( new_item = ls_content ).
    312
    313
    ENDMETHOD.
    314
    315
    endclass.
    316
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    1
    SY-TABIX
    0
    SY-DBCNT
    2
    SY-FDPOS
    21
    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
    SY-MODNO
    0
    SY-DATUM
    20070407
    SY-UZEIT
    164321
    SY-XPROG
    SSO2GETPARAM
    SY-XFORM
    GET_PARAMETER
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    11 METHOD       /1BCWDY/0NMKGBOSP2TIV65B1I11==CP    /1BCWDY/B_0NMLUIVDHGPOBAS29YIF        309
    CL_ZEXP_PARAMETER_APP_CTR=>HANDLEDEFAULT
    Web Dynpro Component          ZEXP_PARAMETER_APP
    Web Dynpro Controller         ZEXP_PARAMETER_APP
    10 METHOD       /1BCWDY/0NMKGBOSP2TIV65B1I11==CP    /1BCWDY/B_0NMLUIVDHGPOBAS29YIF        246
    CLF_ZEXP_PARAMETER_APP_CTR=>HANDLEDEFAULT
    Web Dynpro Component          ZEXP_PARAMETER_APP
    Web Dynpro Controller         ZEXP_PARAMETER_APP
    9 METHOD       /1BCWDY/0NMKGBOSP2TIV65B1I11==CP    /1BCWDY/B_0NMLUIVDHGPOBAS29YIF        193
    CLF_ZEXP_PARAMETER_APP_CTR=>IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER
    Web Dynpro Component          ZEXP_PARAMETER_APP
    Web Dynpro Controller         ZEXP_PARAMETER_APP
    8 METHOD       CL_WDR_DELEGATING_IF_VIEW=====CP    CL_WDR_DELEGATING_IF_VIEW=====CM006     3
    CL_WDR_DELEGATING_IF_VIEW=>INVOKE_EVENTHANDLER
    7 METHOD       CL_WDR_CLIENT_COMPONENT=======CP    CL_WDR_CLIENT_COMPONENT=======CM004    56
    CL_WDR_CLIENT_COMPONENT=>DISPLAY_TOPLEVEL_COMPONENT
    6 METHOD       CL_WDR_CLIENT_APPLICATION=====CP    CL_WDR_CLIENT_APPLICATION=====CM00L    30
    CL_WDR_CLIENT_APPLICATION=>INIT
    5 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00I    40
    CL_WDR_MAIN_TASK=>EXECUTE
    4 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00J    69
    CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST
    3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM00I   524
    CL_HTTP_SERVER=>EXECUTE_REQUEST
    2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                      929
    HTTP_DISPATCH_REQUEST
    1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
    %_HTTP_START
    Chosen variables
    Name
    Val.
    No.      11 Ty.          METHOD
    Name  CL_ZEXP_PARAMETER_APP_CTR=>HANDLEDEFAULT
    FIRST_NAME
    first_name
    6677756666
    69234FE1D5
    LAST_NAME
    last_name
    667756666
    C134FE1D5
    WDEVENT
    |
    | 0000F000 |
    | F0000000 |
    | SYST-REPID |
    | /1BCWDY/0NMKGBOSP2TIV65B1I11==CP |
    | 2344545234444445535453343433334522222222 |
    | F123749F0EDB72F3024966521911DD3000000000 |
    | LS_CONTENT-FIRST_NAME |
    | first_name |
    | 6677756666 |
    | 69234FE1D5 |
    | LS_CONTENT-LAST_NAME |
    | last_name |
    | 667756666 |
    | C134FE1D5 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | %_SPACE |
    |  |
    | 2 |
    | 0 |
    | LS_CONTENT |
    | ë#######ê####### |
    | E0000100E0000100 |
    | B0004300A0005300 |
    | No.      10 Ty.          METHOD |
    | Name  CLF_ZEXP_PARAMETER_APP_CTR=>HANDLEDEFAULT |
    | EVENT |
    |
    0000F000
    F0000000
    RESULT
    |
    | F0000000 |
    | F0000000 |
    | EVENT->PARAMETERS |
    | Table IT_628[3x16] |
    | DATA=PARAMETERS
    Table reference: 361
    TABH+  0(20) = 38CAA53BD87CAE3B000000006901000074020000
    TABH+ 20(20) = 0300000010000000FFFFFFFF04520100A0030000
    TABH+ 40( 8) = 10000000A4288401
    store        = 0x38CAA53B
    ext1         = 0xD87CAE3B
    shmId        = 0     (0x00000000)
    id           = 361   (0x69010000)
    label        = 628   (0x74020000)
    fill         = 3     (0x03000000)
    leng         = 16    (0x10000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000006
    occu         = 16    (0x10000000)
    access       = 4     (ItAccessHashed)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 1     (default)
    cmpMode      = 4     (cmpSingleEq)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x28C9A53B
    pgHook       = 0x00000000
    idxPtr       = 0x78CAA53B
    shmTabhSet   = 0x00000000
    id           = 212   (0xD4000000)
    refCount     = 1     (0x01000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 2     (0x02000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0xA87BAE3B
    collHook     = 0x00000000
    ext2         = 0x00000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    <CUR_PARAM>
    +###Ô     ##ß#######
    2000D000D0001000
    B0004900F0000000
    SY-SUBRC
    0
    0000
    0000
    %_VIASELSCR
    0
    4
    SY
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.
    0000000000000000000000000000000000000000000010000000000000000000000000000000100000000000000000
    1000000000003000000000000000000000000000200050001000000010000000000000000000000000000000000000
    %_EXCP
    |
    | F0000000 |
    | F0000000 |
    | SPACE |
    |  |
    | 2 |
    | 0 |
    | SY-REPID |
    | /1BCWDY/0NMKGBOSP2TIV65B1I11==CP |
    | 2344545234444445535453343433334522222222 |
    | F123749F0EDB72F3024966521911DD3000000000 |
    | <CUR_PARAM>-VALUE |
    | 0.0.0.0.0.0.0.1.  |
    | D0001000 |
    | F0000000 |
    | LAST_NAME |
    | last_name |
    | 667756666 |
    | C134FE1D5 |
    | ME->F_APPL_CLASS |
    |
    A0005000
    E0001000
    FIRST_NAME
    first_name
    6677756666
    69234FE1D5
    WDEVENT
    |
    | 0000F000 |
    | F0000000 |
    | No.       9 Ty.          METHOD |
    | Name  CLF_ZEXP_PARAMETER_APP_CTR=>IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER |
    | HANDLER_NAME |
    | HANDLEDEFAULT |
    | 4444444444545 |
    | 81E4C545615C4 |
    | EVENT |
    |
    0000F000
    F0000000
    PARAMETERS
    Table[initial]
    RESULT
    |
    | F0000000 |
    | F0000000 |
    | WDEVENT |
    |
    0000F000
    F0000000
    ABAP_TRUE
    X
    5
    8
    ME->F_SYS64738
    2
    0
    %_PRINT
    000                                                                                0 ##
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_EXCP
    |
    | F0000000 |
    | F0000000 |
    | CX_WD_BAD_STATE=>USAGE_AFTER_DO_EXIT |
    | 9E034D3F19DCAB3FE10000000A1550A8 |
    | 34333434334444344333333334333343 |
    | 95034436194312365100000001155018 |
    | ME |
    |
    B0004000
    5000A000
    No.       8 Ty.          METHOD
    Name  CL_WDR_DELEGATING_IF_VIEW=>INVOKE_EVENTHANDLER
    NAME
    HANDLEDEFAULT
    4444444444545
    81E4C545615C4
    EVENT
    0000F000
    F0000000
    RET
    |
    | F0000000 |
    | F0000000 |
    | SYST-REPID |
    | CL_WDR_DELEGATING_IF_VIEW=====CP |
    | 4455455444444544454455445333334522222222 |
    | 3CF742F45C57149E7F96F6957DDDDD3000000000 |
    | SY-REPID |
    | CL_WDR_DELEGATING_IF_VIEW=====CP |
    | 4455455444444544454455445333334522222222 |
    | 3CF742F45C57149E7F96F6957DDDDD3000000000 |
    | %_SPACE |
    |  |
    | 2 |
    | 0 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | No.       7 Ty.          METHOD |
    | Name  CL_WDR_CLIENT_COMPONENT=>DISPLAY_TOPLEVEL_COMPONENT |
    | WINDOW_ID |
    | $$ROOT_VIEW_AREA |
    | 2254455544554544 |
    | 442FF4F6957F1251 |
    | PARAMETERS |
    | Table IT_264[3x16] |
    | CLASS=CL_WDR_CLIENT_APPLICATIONMETHOD=INITDATA=PARAMETERS |
    | Table reference: 172 |
    | TABH+  0(20) = 38CAA53B0000000000000000AC00000008010000 |
    | TABH+ 20(20) = 0300000010000000FFFFFFFF04AE0000F8090000 |
    | TABH+ 40( 8) = 10000000A4288401 |
    | store        = 0x38CAA53B |
    | ext1         = 0x00000000 |
    | shmId        = 0     (0x00000000) |
    | id           = 172   (0xAC000000) |
    | label        = 264   (0x08010000) |
    | fill         = 3     (0x03000000) |
    | leng         = 16    (0x10000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000035 |
    | occu         = 16    (0x10000000) |
    | access       = 4     (ItAccessHashed) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 1     (ItUnique) |
    | keyKind      = 1     (default) |
    | cmpMode      = 4     (cmpSingleEq) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 0 |
    | unShareable  = 0 |
    | mightBeShared = 1 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x28C9A53B |
    | pgHook       = 0x00000000 |
    | idxPtr       = 0x78CAA53B |
    | shmTabhSet   = 0x00000000 |
    | id           = 212   (0xD4000000) |
    | refCount     = 1     (0x01000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 16    (0x10000000) |
    | lineAlloc    = 16    (0x10000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 2     (0x02000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = Not allocated |
    | collHook     = Not allocated |
    | ext2         = Not allocated |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = Not allocated |
    | delta_head   = Not allocated |
    | pb_func      = Not allocated |
    | pb_handle    = Not allocated |
    | STARTUP_PLUG |
    | )###Æ     ##.###Ñ     ##1X## |
    | 2000C0002000D0003500 |
    | 90006900E00019001800 |
    | INTERFACE_VIEW_INFO |
    |
    F0000000
    3000C000
    <VIEW_MANAGER>-VIEW_MANAGER
    |
    | C0003000 |
    | B0004000 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | L_DELEGATING_IF_VIEW |
    |
    B0004000
    90006000
    SY-REPID
    CL_WDR_CLIENT_COMPONENT=======CP
    4455455444445544454444533333334522222222
    3CF742F3C95E4F3FD0FE5E4DDDDDDD3000000000
    %_PRINT
    000                                                                                0 ##
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    STARTUP_PLUG-PLUG_NAME
    DEFAULT
    4444545
    45615C4
    L_EVENT_HANDLER
    )###Æ     ##/###Р    ##CL_WDY_MD_CTLR_EVENT_HANDLER  ######0###ï#######ï#######ï#######ï#######)###Æ     
    2000C0002000D0004455455445454554544554444445220000003000E0000000E0000000E0000000E00000002000C0
    90006900F00009003CF749FD4F34C2F565E4F81E4C52000010000000F0000000F0000000F0000000F0000000900069
    L_CUSTOM_EVENT
    0000F000
    F0000000
    SYST-REPID
    CL_WDR_CLIENT_COMPONENT=======CP
    4455455444445544454444533333334522222222
    3CF742F3C95E4F3FD0FE5E4DDDDDDD3000000000
    L_EVENT_HANDLER-CMPNAME
    HANDLEDEFAULT
    4444444444545
    81E4C545615C4
    No.       6 Ty.          METHOD
    Name  CL_WDR_CLIENT_APPLICATION=>INIT
    %_DUMMY$$
    2222
    0000
    %_EXCP
    |
    | F0000000 |
    | F0000000 |
    | SY-REPID |
    | CL_WDR_CLIENT_APPLICATION=====CP |
    | 4455455444445545544445444333334522222222 |
    | 3CF742F3C95E4F100C93149FEDDDDD3000000000 |
    | SY-XFORM |
    | GET_PARAMETER |
    | 445554544454522222222222222222 |
    | 754F0121D545200000000000000000 |
    | L_STARTUP_VIEW |
    |
    F0000000
    3000C000
    %_SPACE
    2
    0
    ME
    |
    | D0002000 |
    | F0000000 |
    | PARAMETERS |
    | Table IT_264[3x16] |
    | SY-XPROG |
    | SSO2GETPARAM |
    | 5543445545442222222222222222222222222222 |
    | 33F27540121D0000000000000000000000000000 |
    | CL_WDR_CLIENT_CONSTANTS=>ROOT_WINDOW_VIEW_AREA_NAME |
    | $$ROOT_VIEW_AREA |
    | 2254455544554544 |
    | 442FF4F6957F1251 |
    | No.       5 Ty.          METHOD |
    | Name  CL_WDR_MAIN_TASK=>EXECUTE |
    | SY-REPID |
    | CL_WDR_MAIN_TASK==============CP |
    | 4455455444455454333333333333334522222222 |
    | 3CF742FD19EF413BDDDDDDDDDDDDDD3000000000 |
    | L_APPLICATION_NAME |
    | ZEXP_PARAMETER_APP |
    | 5455554544454554552222222222222222222222 |
    | A580F0121D5452F1000000000000000000000000 |
    | SY-MSGID |
    |  |
    | 22222222222222222222 |
    | 00000000000000000000 |
    | WDR_TASK=>RESPONSE |
    |
    F0000000
    A0005000
    SYST-REPID
    CL_WDR_MAIN_TASK==============CP
    4455455444455454333333333333334522222222
    3CF742FD19EF413BDDDDDDDDDDDDDD3000000000
    SY-MSGNO
    000
    333
    000
    SPACE
    2
    0
    WDR_TASK=>APPLICATION_NAME
    ZEXP_PARAMETER_APP
    545555454445455455
    A580F0121D5452F100
    WDR_TASK=>CLIENT_WINDOW
    |
    | F0000000 |
    | 0000F000 |
    | WDR_TASK=>APPLICATION |
    |
    D0002000
    F0000000
    %_DUMMY$$
    2222
    0000
    ME->APPLICATIONS
    Table IT_251[1x8]
    DATA=APPLICATIONS |
    | Table reference: 167 |
    | TABH+  0(20) = F8B8A53B0000000000000000A7000000FB000000 |
    | TABH+ 20(20) = 0100000008000000FFFFFFFF042C0000B8040000 |
    | TABH+ 40( 8) = 10000000C1288001 |
    | store        = 0xF8B8A53B |
    | ext1         = 0x00000000 |
    | shmId        = 0     (0x00000000) |
    | id           = 167   (0xA7000000) |
    | label        = 251   (0xFB000000) |
    | fill         = 1     (0x01000000) |
    | leng         = 8     (0x08000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000011 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 4     (cmpSingleEq) |
    | occu0        = 1 |
    | groupCntl    = 0 |
    | rfc          = 0 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | isCtfyAble   = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x68B8A53B |
    | pgHook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | shmTabhSet   = 0x00000000 |
    | id           = 208   (0xD0000000) |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 16    (0x10000000) |
    | lineAlloc    = 16    (0x10000000) |
    | shmVersId    = 0     (0x00000000) |
    | shmRefCount  = 1     (0x01000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = Not allocated |
    | collHook     = Not allocated |
    | ext2         = Not allocated |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = Not allocated |
    | delta_head   = Not allocated |
    | pb_func      = Not allocated |
    | pb_handle    = Not allocated |
    | SYST |
    | 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.  |
    | 0000000000000000000000000000000000000000000010000000000000000000000000000000100000000000000000 |
    | 1000000000003000000000000000000000000000200050001000000010000000000000000000000000000000000000 |
    | WDR_TASK=>APPLICATION->IS_SUSPENDED |
    |  |
    | 2 |
    | 0 |
    | ABAP_TRUE |
    | X |
    | 5 |
    | 8 |
    | WDR_TASK=>APPLICATION->APPLICATION_WINDOW->VIEW_MANAGER->IF_WDR_VIEW_MANAGER~WINDOW_INFO |
    |
    F0000000
    3000C000
    L_APPL_STATE_CHANGE
    |
    | F0000000 |
    | F0000000 |
    | No.       4 Ty.          METHOD |
    | Name  CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST |
    | SERVER |
    |
    F0000000
    D0002000
    WDR_TASK=>APPLICATION
    |
    | D0002000 |
    | F0000000 |
    | ME |
    |
    F0000000
    90006000
    WDR_TASK=>CLIENT_WINDOW
    |
    | F0000000 |
    | 0000F000 |
    | LR_UCF |
    |
    F0000000
    80007000
    WDR_TASK=>CLIENT_WINDOW->CLIENT
    |
    | E0001000 |
    | A0005000 |
    | WDR_TASK=>CLIENT_WINDOW->REC_PLUGIN_MANAGER |
    |
    E0001000
    3000C000
    RSJOBINFO
    00000000000000                                  ####
    222222222222222222222222222222223333333333333322222222222222222222222222222222220000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    WDR_TASK=>CLIENT_WINDOW->CLIENT_INFO_OBJECT
    |
    | F0000000 |
    | 0000F000 |
    | %_SPACE |
    |  |
    | 2 |
    | 0 |
    | ME->APPL_STATISTICS+12(8) |
    |  |
    | WDR_TASK=>APPLICATION_NAME |
    | ZEXP_PARAMETER_APP |
    | 545555454445455455 |
    | A580F0121D5452F100 |
    | No.       3 Ty.          METHOD |
    | Name  CL_HTTP_SERVER=>EXECUTE_REQUEST |
    | SERVER |
    |
    F0000000
    D0002000
    SERVTBL
    Table IT_210[6x2336]
    FUNCTION=HTTP_DISPATCH_REQUESTDATA=SERVTBL
    Table reference: 1
    TABH+  0(20) = 38F1A53B000000000000000001000000D2000000
    TABH+ 20(20) = 0600000020090000180000000401000020070000
    TABH+ 40( 8) = 04000000C1308001
    store        = 0x38F1A53B
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 1     (0x01000000)
    label        = 210   (0xD2000000)
    fill         = 6     (0x06000000)
    leng         = 2336  (0x20090000)
    loop         = 24    (0x18000000)
    xtyp         = TYPE#000022
    occu         = 4     (0x04000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xF801973B
    pgHook       = 0x08AF903B
    idxPtr       = 0x00000000
    shmTabhSet   = 0x00000000
    id           = 190   (0xBE000000)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 8     (0x08000000)
    lineAlloc    = 8     (0x08000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    collHook     = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    FIRSTALIAS
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    URLSUFFIX
    FLOW_RC
    0
    0000
    0000
    TIMEOUT
    000000
    333333
    000000
    SEND_PAGE_RC
    0
    0000
    0000
    RUNTIME_MEMORY
    ########Æ###)###Û#######
    00000000C0002000D00000002222222222222222222222222222222222222222222222222222222222222222222222
    0000000060009000B00040000000000000000000000000000000000000000000000000000000000000000000000000
    CL_HTTP_SERVER=>C_STATISTIC_STATE
    0
    0000
    0000
    %_PRINT
    000                                                                                0 ##
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SECURE_INSERT
    0
    0000
    0000
    IHTTP_OPCODE_CLOSE_INTERVAL
    1
    2
    %_DUMMY$$
    2222
    0000
    SYST
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.
    0000000000000000000000000000000000000000000010000000000000000000000000000000100000000000000000
    1000000000003000000000000000000000000000200050001000000010000000000000000000000000000000000000
    STIME
    187269
    8D00
    5B20
    SY-XFORM
    GET_PARAMETER
    445554544454522222222222222222
    754F0121D545200000000000000000
    IHTTP_OPCODE_OPEN_INTERVAL
    1
    1
    SCREEN
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SERVER_OBJ->M_CONNECTION_ERROR
    ï###########ï#######
    E00000000000E0000000
    F00000000000F0000000
    SY
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.
    0000000000000000000000000000000000000000000010000000000000000000000000000000100000000000000000
    1000000000003000000000000000000000000000200050001000000010000000000000000000000000000000000000
    L_EXCEPTION
    |
    | F0000000 |
    | F0000000 |
    | %_SPACE |
    |  |
    | 2 |
    | 0 |
    | CL_HTTP_SERVER=>IF_HTTP_SERVER~STATEFUL |
    | 1 |
    | 0000 |
    | 1000 |
    | OPCODE_GET_SAP_CPIC_RC |
    | # |
    | 0 |
    | 1 |
    | L_EXCEPTION->M_CONNECTION_ERROR |
    | ??? |
    | ?????? |
    | ?????? |
    | ICF_ACTIVE |
    | X |
    | 5 |
    | 8 |
    | No.       2 Ty.          FUNCTION |
    | Name  HTTP_DISPATCH_REQUEST |
    | CLIENT_NAME |
    |  |
    | DOCUMENT_IN |
    |  |
    | VIRTUAL_HOST |
    | 0 |
    | 0000 |
    | 0000 |
    | DOCUMENT_OUT |
    |  |
    | PF_TASK_PLUGIN |
    | # |
    | 0 |
    | A |
    | PF_ACTION_BATCH_JOB |
    | 2 |
    | 0000 |
    | 2000 |
    | ERROR_STATE |
    | 0 |
    | 0000 |
    | 0000 |
    | PF_OPCODE_APP_STAT_CLOSE |
    | # |
    | 0 |
    | B |
    | L_RM_FROM_BUFFER |
    |  |
    | 2 |
    | 0 |
    | INITPASSWORD |
    |  |
    | 22222222 |
    | 00000000 |
    | C_STATISTIC_STATE |
    | 0 |
    | 0000 |
    | 0000 |
    | SY-XFORM |
    | GET_PARAMETER |
    | 445554544454522222222222222222 |
    | 754F0121D545200000000000000000 |
    | PF_CLIINFO |
    | # |
    | 0 |
    | E |
    | PF_OPCODE_OPEN_INTERVAL |
    | # |
    | 1 |
    | 1 |
    | SPACE |
    |  |
    | 2 |
    | 0 |
    | C_SERVER |
    |
    F0000000
    D0002000
    SERVTBL
    Table IT_210[6x2336]
    FIRSTALIAS
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    URLSUFFIX
    FLOW_RC
    0
    0000
    0000
    TIMEOUT
    000000
    333333
    000000
    SEND_PAGE_RC
    0
    0000
    0000
    L_RUNTIME_MEMORY
    ########Æ###)###Û#######
    00000000C0002000D00000002222222222222222222222222222222222222222222222222222222222222222222222
    0000000060009000B00040000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
    2222
    0000
    %_PRINT
    000                                                                                0 ##
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    PF_OPCODE_CLOSE_INTERVAL
    1
    2
    NODENAME
    No.       1 Ty.          MODULE (PBO)
    Name  %_HTTP_START
    SY-REPID
    SAPMHTTP
    5454455522222222222222222222222222222222
    310D844000000000000000000000000000000000
    SYST-REPID
    SAPMHTTP
    5454455522222222222222222222222222222222
    310D844000000000000000000000000000000000
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
    2222
    0000
    %_SPACE
    2
    0
    Internal notes
    The termination was triggered in function "method_call_iref"
    of the SAP kernel, in line 2207 of the module
    "//bas/700_REL/src/krn/runt/abmethod.c#8".
    The internal operation just processed is "METH".
    Internal mode was started at 20070407164321.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exce

  • Reading the Context Node in the same Component

    Dear Gurus,
    I have made enhancement to standard view and functionality is working fine.
    Now i need to read the different context node (Different view) from the same component.
    I try to do the way Webdynrpo read the context node  but here there is Wizard and i stucked :-(.
    Can you plz suggest or post small code to read context node.
    Regards.
    ****Poorna****

    Hi,
    If those two views are assinged to one viewset in runtime repositoty, you can read the secod view by following code:
    lv_viewname = me->get_viewarea_content( 'Upper' ).      " here(me =view1)                               
      IF lv_viewname IS NOT INITIAL.
        lr_viewctrl = me->get_subcontroller_by_viewname( lv_viewname ).
        IF lr_viewctrl IS BOUND.
    from here you can read the context nodes.
    Regards,
    S Reddy

  • How to read the context node of used component?

    Hi,
    I have component called : SRQM_INCIDENT_H. This component has used component - BTSTATUS.
    Now, I need to read the context node of the BTSTATUS/UserStatus in GET Methods of Context node in SRQM_INCIDENT_H.
    Can you plese help me out.
    Thanks,
    Sandeep

    The component usages can be accessed from the component controller
    You should however assure that the context node is present in comp controlelr of the used component.View context nodes cannot be accessed.
    if not ,then you need to goto the component BTSTATUS ,add the context node  explicitly to comp controller,and do correct bindings to the view context node.
    Once you add the context node to the com controller,yo also need to expose it.
    go to runtime repository->component_interface->interface_controller->context->right click and select ADD CONTEXT NODE, and add you newly creatde context ndoe of comp contorller here.
    Now you cann access it using the code below in your comp SRQM_INCIDENT_H
    data:lr_comp_controller type ref to <ur comp controller class>lr_comp_controller ?= me->comp_controller.
        lr_comp_usage ?= lr_comp_controller->get_component_usage( iv_usage_name = '<name of the comp usage as in runtime repository' ).
        CHECK lr_comp_usage IS NOT INITIAL.
        lr_cnode ?= lr_comp_usage->get_context_node( iv_cnode_name = '<the required context node name>' ).
    Suvidha

  • How to read context node/attribute data of diff UI component of same screen

    Hi,
    I am new to CRM and as well as BSP, Now the requirement is, at the time of Lead creation, when the end user enters customer code and sales area i need to fetch and display the customer group 1 value( VIP,KAM etc) based on the customer's sales area, ( these are sales area specific values).
    but the problem is Customer code is in diff UI component and sales area data is in diff UI component .
    1) customer code attribute is in UI component BT108H_LEA, View BT108H_LEA\Detail, Context node is BTPARTNERPROSPECT.
    2) sales area fields are in the UI component BTORGSET, View BTORGSET\OrgSetData, Context node is BTORGSET.
    3) I have created new field(customer type to display the customer group 1 value "VIP") in UI component BT108H_LEA, View BT108H_LEA\Detail, Context node is BTLEADH.    
    To display the value in the context node BTLEADH, i need to know the sales area data which is entered in BTORGSET.
    Kindly let me know how to read the data which is in diff UI component of the same Lead creation screen.
    i written following code in context node BTLEADH, atttribute New Zfield, in get method, but not able solve, please guide me.
      DATA: LR_ENT TYPE REF TO CL_CRM_BOL_ENTITY,
                 LR_COL TYPE REF TO IF_BOL_ENTITY_COL.
      LR_ENT ?= ME->TYPED_CONTEXT->BuilHeader->COLLECTION_WRAPPER->GET_CURRENT( ).
      LR_COL = LR_ENT->GET_RELATED_ENTITIES( IV_RELATION_NAME = 'BuilSalesArrangementRel' ).
      LR_ENT ?= LR_COL->GET_FIRST( ).
      IF LR_ENT IS BOUND.
        LR_ENT->GET_PROPERTY_AS_VALUE( EXPORTING IV_ATTR_NAME = 'DIVISION'  IMPORTING EV_RESULT =  LV_DIVISION  ).
      ENDIF.
    I'll appreciate if you can provide me some documents to refer.
    awaiting for your responses.
    Thanks
    Bhanu

    Hi Gangadhar,
    I think i have not clearly explained my requirement, let me put it once again. My requirement is, I have to read two UI component data, validate and display some value in one new zfield which is in one of the UI components.
    I need to display customer's sales area specific data like customer group 1 value in that new zfield. for that i need Customer code and as well as sales area data from the screen.
    1) customer code attribute is in UI component BT108H_LEA, View BT108H_LEA\Detail, Context node is BTPARTNERPROSPECT.
    2) sales area fields are in the UI component BTORGSET, View BTORGSET\OrgSetData, Context node is BTORGSET.
    3) I have created new field(customer type to display the customer group 1 value "VIP") in UI component BT108H_LEA, View BT108H_LEA\Detail, Context node is BTLEADH.
    As per my understanding, in the context node BTLEADH, GET_METHOD of atttribute New Zfield, i have to read customer code from UI component BT108H_LEA, View BT108H_LEA\Detail, Context node is BTPARTNERPROSPECT and Sales area data from UI component BTORGSET, View BTORGSET\OrgSetData, Context node is BTORGSET based on the values, validate and display the data.
    But as per your recent reply you are asking me to write the code in get_property_attribute---division. so i didnt understand.
    Kindly clarify if i am wrong.
    awaiting for your response.
    Thanks
    BHanu

Maybe you are looking for

  • Inserting dynamic calculation in javascript to the stage

    I'm working with a partner on calculating the area of a rectangle, as a user changes its size. We're using javascript and so far have: function calculateArea() { var width = +document.getElementById("width").value; var height =+document.getElementByI

  • RemotingMessage vs. RemoteObject in AS3 help needed

    Hi, Could someone clarify the difference between using RemotingMessage and RemotObject to invoke RPC in AS3 code? I found two different examples online and I don't know, which one is preferable. --first example http://www.ghost23.de/blogarchive/2008/

  • No pictures on my iPod when i play music !

    Hi all ! I got a lil' problem with my iPod video 60 GB taht's borring me ! On iTunes when i play a music for exemple : Fort Minor - Slip out the back i have the picture of the album on the Left bottom corner but when i put this music on my iPod and w

  • Send vendor to SUS (EBP-SUS)

    Hi expets I would like to have contact with someone that uses EBP-SUS and replicate vendor from EBP to SUS in a scenario two clients. My problem is when I try to replicate vendor to SUS the BP is not created in SUS. I would like to know if I need to

  • Item close event is triggering twice for Advanced Data Grid

    HI, I'm using AdvancedDataGrid for my project. My issue is when click on item close, the item close event is triggering twice. Why it is triggering twice? Thank you...