Application Development and Automation 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: 
Read only

list in a dialog box- Any Function module.

Former Member
0 Likes
817

Hi is there any Function module which show a list in a dialog box?

That FM should accept a internal table as input and has to show that internal table contens in the list output.

Please let me know.

Thanks and Regards

Harish

Hi is there any Function module which show a list in a dialog box?

That FM should accept a internal table as input and has to show that internal table contens in the list output.

Please let me know.

Thanks and Regards

Harish

5 REPLIES 5
Read only

Former Member
0 Likes
778

you can use the FM POPUP_WITH_TABLE_DISPLAY.

Read only

0 Likes
778

You can also look at the standard SAP Program DEMO_SELECTION_SCREEN_F4.

Read only

Former Member
0 Likes
778

HI,

check out the function nmodule.

DEMO_LIST_WINDOW

Njoy SAP

Read only

Former Member
0 Likes
778

You can have a look at the code below :

DESCRIBE TABLE i_values LINES v_lines.

  • V_DESTROW = V_LINES + 20.

CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'

EXPORTING

endpos_col = 70

endpos_row = 20

startpos_col = 10

startpos_row = 10

titletext = v_srctitle

IMPORTING

choise = v_choice

TABLES

valuetab = i_values

EXCEPTIONS

break_off = 1.

Read only

Former Member
0 Likes
778

Thank It is answered