hi,
In Overview page IMPL Claz you will find the method " DETACH_STATIC_OVW_VIEWS ".
redefine that method and use the following piece of code,
mt_detached_views of type BSP_DLC_OVW_STAT_VIEW_ATTACH_T declare as a Global variable in IMPL claz
DATA:it_svs TYPE bsp_dlc_ovw_dyn_views_list_t,
wa_svs TYPE bsp_dlc_ovw_dyn_views_list,
wa_det TYPE bsp_dlc_ovw_stat_view_attach.
*/ Getting the list of Views of a OV page....
it_svs = me->get_list_of_static_views( ).
READ TABLE it_svs INTO wa_svs WITH KEY viewid = 'VIEWSET1'.
wa_det-viewid = wa_svs-viewid.
APPEND wa_det TO mt_detached_views.
CLEAR wa_det.
rt_viewid = mt_detached_views.
hope this might be helpful,
Regard's
Vam's....