Code: Alles auswählen.
data: t_txt type table of string,
txt like line of t_txt.
txt = '12345 67890 abcdef ghijklm'.
append txt to t_txt.
append txt to t_txt.
append txt to t_txt.
append txt to t_txt.
append txt to t_txt.
CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
EXPORTING
endpos_col = 170
endpos_row = 130
startpos_col = 10
startpos_row = 5
titletext = 'Verarbeitungsprotokoll'
* IMPORTING
* CHOISE =
TABLES
valuetab = t_txt "gt_messages
* EXCEPTIONS
* BREAK_OFF = 1
* OTHERS = 2
.
Code: Alles auswählen.
REPORT ZTEST_POPUP_DYN.
data: t_txt type table of char80,
txt like line of t_txt.
txt = '12345 67890 abcdef ghijklm'.
append txt to t_txt.
append txt to t_txt.
append txt to t_txt.
append txt to t_txt.
append txt to t_txt.
CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
EXPORTING
endpos_col = 170
endpos_row = 130
startpos_col = 10
startpos_row = 5
titletext = 'Verarbeitungsprotokoll'
* IMPORTING
* CHOISE =
TABLES
valuetab = t_txt "gt_messages
EXCEPTIONS
BREAK_OFF = 1
OTHERS = 2.