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

function module with popup and checkbox

Former Member
0 Likes
709

hi all

is there a function module that displays internal table data in a pop up . I was using popup_to_decide_list ,but now i need to display 200 records with checkbox .

do let me know a wayout or a new function module

1 REPLY 1
Read only

Former Member
0 Likes
442

TYPE-POOLS: ICON.

*

DATA: BEGIN OF VALUETAB OCCURS 0,

LINE(255),

END OF VALUETAB.

*

VALUETAB-LINE = '1. Line'. APPEND VALUETAB.

VALUETAB-LINE = ICON_SPACE. APPEND VALUETAB.

VALUETAB-LINE = '3. Line'. APPEND VALUETAB.

*

CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY_OK'

EXPORTING

ENDPOS_COL = 30

ENDPOS_ROW = 10

STARTPOS_COL = 1

STARTPOS_ROW = 1

TITLETEXT = 'Muster'

TABLES

VALUETAB = VALUETAB.