‎2007 Nov 17 3:13 PM
HI,
could u plz tell me where will store interactive list data.
could u plz tell me the table?
‎2007 Nov 17 3:25 PM
DO you mean the output that you display in the interactive list? Its not stored in database, its stored in memory during runtime.
‎2007 Nov 17 4:13 PM
Interactive data stores only in the ABAP memory.
Actually you need to hide the data you want:
Like:
DATA: W_MATNR TYPE MATNR.
LOOP AT ITAB.
WRITE: / ITAB-MATNR.
W_MATNR = ITAB-MATNR.
HIDE W_MATNR.
ENDLOOP.
AT LINE-SELECTION.
* Here you will have data in the W_MATNR for perticular the line on the list.Regards,
Naimesh Patel