2009 Feb 10 8:49 AM
Hi Guys,
Is there any standard POP UP Function Module to display our internal table data on that POP UP screen.
Thanks,
Prasad.
2009 Feb 10 8:53 AM
2009 Feb 10 8:53 AM
2009 Feb 10 8:55 AM
Try using function module RS_VALUES_BOX function module..
or else use call screen as modal dialog box
2009 Feb 10 8:55 AM
CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
EXPORTING
I_TITLE = 'THIS IS FOR F4 IN COLOR'
I_TABNAME = 'ITAB'
IT_FIELDCAT = IT_FIELDCAT[]
IMPORTING
ES_SELFIELD = ES_SELFIELD
TABLES
T_OUTTAB = ITAB .
2009 Feb 10 10:47 AM
Hi Niki,
I am using this function module reuse_alv_popup_to_select
I am getting output on a screen.
I am choosing some list on the output popup box and I have given a code to edit that.
After editing I need to get the same out popup screen,so that i can edit the remaining list's in the pop up box.
Thanks,
Prasad.
2009 Feb 10 8:55 AM
HI,
Check these FM..
POPUP_WITH_TABLE_DISPLAY_OK
POPUP_WITH_TABLE_DISPLAY
POPUP_WITH_TABLE
2009 Feb 10 8:56 AM
2009 Feb 10 8:57 AM
2009 Feb 10 9:01 AM
Try this FM to display the internal table data display as POP UP Box in ALV format.
REUSE_ALV_POPUP_TO_DISPLAY
Regards,
Joan
2016 Apr 28 8:33 AM
2009 Feb 10 10:56 AM
hi,
please check code below,this is the way of fm use 'REUSE_ALV_POPUP_TO_SELECT' and it diplays output in popup menu
call function 'REUSE_ALV_POPUP_TO_SELECT'
exporting
i_title = popuphdr
* I_SELECTION = 'X'
* I_ZEBRA = ' '
* I_SCREEN_START_COLUMN = 0
* I_SCREEN_START_LINE = 0
* I_SCREEN_END_COLUMN = 0
* I_SCREEN_END_LINE = 0
* I_CHECKBOX_FIELDNAME =
* I_LINEMARK_FIELDNAME =
* I_SCROLL_TO_SEL_LINE = 'X'
i_tabname = '1'
it_fieldcat = gt_fieldcat2[]
* IT_EXCLUDING =
* I_CALLBACK_PROGRAM =
* I_CALLBACK_USER_COMMAND =
is_private = gs_private
importing
es_selfield = gs_selfield
e_exit = g_exit
tables
t_outtab = user_input_table
exceptions
program_error = 1
others = 2.
endif.
thanks
Durga.K
2009 Feb 10 10:59 AM
Hi Dheeru,
The FM POPUP_TO_SHOW_DB_DATA_IN_TABLE or MD_POPUP_SHOW_INTERNAL_TABLE should help you to achieve this.
Regards,
Shobana.K