cancel
Showing results for 
Search instead for 
Did you mean: 

WebDynpro ABAP ALV Onclick Event

Former Member
0 Kudos

Hi,

Can anybody could explore on WebDynpro ALV's ONCLICK Event.

My requirement is on click of a key field link in the ALV Table,a detailed item list has to be displayed from another view.

I have declared FIELD-SYMBOLS: <l_value> type any,

<l_index> type any.

ASSIGN r_param->value->* to <l_value>. in OnClick Event Handler.

DATA lo_nd_req_details TYPE REF TO if_wd_context_node.

DATA lo_el_req_details TYPE REF TO if_wd_context_element.

DATA ls_req_details TYPE wd_this->Element_req_details.

  • navigate from <CONTEXT> to <REQ_DETAILS> via lead selection

lo_nd_req_details = wd_context->get_child_node( name = wd_this->wdctx_req_details ).

  • get element via lead selection

lo_el_req_details = lo_nd_req_details->get_element( r_param->index ).

but even then the values are not getting populated .

While debugging The value of the key field gets into r_param but it is not assigned to l_value.

Any Suggestions...............

Regards,

Jyoti

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I would request Moderator to move this thread to WebDynpro ABAP forum, for better possibility of responses.

Thanks