2010 May 05 10:18 AM
Hi,
I have a hierarchial alv list which displays header and item details. When i double click on a particular sold to value, i want to get the corresponding customer details in a popup window.
May i know how to do this.
Thanks
Hi,
I have a hierarchial alv list which displays header and item details. When i double click on a particular sold to value, i want to get the corresponding customer details in a popup window.
May i know how to do this.
Thanks
2010 May 05 10:20 AM
you have to create the class event double-click, wrote the routine and call a popup ...
look in demo program of SAP
2010 May 05 10:22 AM
2010 May 05 10:31 AM
Can u give me the demo program name...
And how to capture the value of the sold to party number after double clicking?
If possible can u explain the parameters to be passed in the FM
2010 May 05 10:50 AM
Try example code
call function 'REUSE_ALV_POPUP_TO_SELECT'
exporting
i_title = 'Test Popup'
i_selection = ' '
i_zebra = 'X'
i_tabname = '<Internal table name>'
i_screen_start_column = 05
i_screen_start_line = 08
i_screen_end_column = 140
i_screen_end_line = 20
it_fieldcat = <fieldcat for internal table>
i_callback_program = sy-cprog
i_callback_user_command = 'USER_COMMAND_DATA'
tables
t_outtab = <internal table>.Regards
Vinod
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |