Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Need a POP UP BOX for Displaying Internal Table data

Former Member
0 Kudos
12,541

Hi Guys,

Is there any standard POP UP Function Module to display our internal table data on that POP UP screen.

Thanks,

Prasad.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
1,100

POPUP_WITH_TABLE

POPUP_WITH_TABLE_DISPLAY

11 REPLIES 11

Former Member
0 Kudos
1,101

POPUP_WITH_TABLE

POPUP_WITH_TABLE_DISPLAY

Former Member
0 Kudos
1,100

Try using function module RS_VALUES_BOX function module..

or else use call screen as modal dialog box

Former Member
0 Kudos
1,100

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 .

0 Kudos
1,100

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.

Former Member
0 Kudos
1,100

HI,

Check these FM..

POPUP_WITH_TABLE_DISPLAY_OK

POPUP_WITH_TABLE_DISPLAY

POPUP_WITH_TABLE

former_member222860
Active Contributor
0 Kudos
1,100

Hey

POP up to display itab data

POPUP_WITH_TABLE_DISPLAY_OK

Former Member
0 Kudos
1,100

hi,

see this

POPUP_WITH_TABLE_DISPLAY_OK

POPUP_WITH_TABLE_DISPLAY

POPUP_WITH_TABLE

thanks

Former Member
0 Kudos
1,100

Try this FM to display the internal table data display as POP UP Box in ALV format.

REUSE_ALV_POPUP_TO_DISPLAY

Regards,

Joan

0 Kudos
1,100

This FM does not exist

Former Member
0 Kudos
1,100

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

Former Member
0 Kudos
1,100

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