2006 Sep 20 1:12 PM
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
you can use the FM POPUP_WITH_TABLE_DISPLAY.
2006 Sep 20 1:14 PM
2006 Sep 20 1:16 PM
You can also look at the standard SAP Program DEMO_SELECTION_SCREEN_F4.
2006 Sep 20 1:15 PM
2006 Sep 20 1:15 PM
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.
2009 Apr 06 6:13 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |