‎2016 Mar 05 11:17 AM
Hi folks,
Requirement is to have two ALVs on same screen. One contains total sale value at plant level. 2nd alv initially contains days wise sale at all the plants.
Now user wants If he clicks on one row of first ALV, then details of only that plant should appear on the second ALV. Dashboard kind of requirement.
I am able to achieve two ALV using 'CL_GUI_ALV_GRID' and 'CL_GUI_SPLITTER_CONTAINER' class but unable to achieve that user interaction. Though I tried achiving that using double_click event of 'CL_GUI_ALV_GRID' class. Control is coming to that method also but unable to clear the content of 2nd ALV.
Please guide.
Regards,
Pankaj
‎2016 Mar 05 11:49 AM
Issue Resolved..
Used below method :
if grid2 is not initial .
call method grid2->refresh_table_display . " for refreshing table content
endif.
However I am not much clear about functionality of this method..
Regards,
Pankaj
‎2016 Mar 05 3:29 PM