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

regarding interactive list data

Former Member
0 Likes
327

HI,

could u plz tell me where will store interactive list data.

could u plz tell me the table?

2 REPLIES 2
Read only

former_member195698
Active Contributor
0 Likes
309

DO you mean the output that you display in the interactive list? Its not stored in database, its stored in memory during runtime.

Read only

naimesh_patel
Active Contributor
0 Likes
309

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