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

list

Former Member
0 Likes
295

hi ,

how to clear the whole list.

1 ACCEPTED SOLUTION
Read only

varma_narayana
Active Contributor
0 Likes
277

Hi..

AT LINE-SELECTION.

CASE SY-LSIND.

WHEN 1.

<b> SY-LSIND = 0.</b>

ENDCASE.

Reward if Helpful.

2 REPLIES 2
Read only

varma_narayana
Active Contributor
0 Likes
278

Hi..

AT LINE-SELECTION.

CASE SY-LSIND.

WHEN 1.

<b> SY-LSIND = 0.</b>

ENDCASE.

Reward if Helpful.

Read only

Former Member
0 Likes
277

Hi Masood,

If you print the list using internal table means clear the list data's through the Internal Table.

For Example, Your Internal Table is ITAB means,

Clear Itab[] or Refresh Itab.

Thanks.