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

Classical Report clear buffer

Former Member
0 Likes
613

Dear Experts,

I want to clear internal table in the drill download classical report, after clicking the back button.

Regards,

Lakshmikanth

5 REPLIES 5
Read only

Former Member
0 Likes
591

Hi Lakshmikanth,

Use the following logic:

CASE sy-ucomm.

when 'BACK'.

refresh <itab>.

ENDCASE.

Hope this will help.

Regards,

Nitin.

Read only

Former Member
0 Likes
591

in end-of-selection.

clear the data you want to clear.

Read only

Former Member
0 Likes
591

Do you want to clear the entire contents of the internal table or just the records corresponding to the selection (double clicked line)?

Read only

0 Likes
591

wanna to clear the entire internal table.

Read only

Former Member
0 Likes
591

Hi,

Use clear itab[]

or refresh itab to clear the internal table.

Thanks & Regards,

Sudheer