Hi All,
I have a problem in finding the solution for this.
I know we can drilldown on a field for further details in ALV webdynpro.
But here I have a situation where I need to drilldown on a field in a table(which is not ALV).
EG:
FOLLOWING IS THE THE TABLE I HAVE NOW ( its not an ALV )
EMP NO EMP NAME
912245 Ruise gill
923045 bernard chan
All the numbers should have an underline like a hyperlink and it should lead to a popup with further details.
For ALV you have on_click event like the below
Display link in column pernr
DATA: lr_link TYPE REF TO cl_salv_wd_uie_link_to_action.
lr_column = l_value->if_salv_wd_column_settings~get_column( 'PERNR' ).
CREATE OBJECT lr_link.
lr_link->set_text_fieldname( 'PERNR' ).
lr_column->set_cell_editor( lr_link ).
Can you please help is there any way to drilldown on a table field
Thanks in advance.
Um - surely you just want to use the classic link to action functionality and then in the action launch a new external window passing the employee number selected?
The element selected is available in the action handler, and launching an external window with a parameter is fairly basic WDA stuff - what is the particular issue you're having?
Add a comment