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

issue for performance

Former Member
0 Likes
415

hi,

if i will write like this.CLEAR bdcdata. REFRESH bdcdata.

CLEAR itb_msg. REFRESH itb_msg.

can i face performance issue??

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
395

yes, of course I can image ways to cause performance problems by execution of these commands.

But the commands are as explained by themself o.k.

But do the refresh before you use the table in a FOR ALl ENTRIES and you will run into trouble.

Siegfried

2 REPLIES 2
Read only

Former Member
0 Likes
395

Hi,

Use of these statements will not create a performance issue.

The statement REFRESH BDCTAB works for all internal tables like CLEAR BDCTAB[]. If an internal table BDCTAB has a header line, then the table body and not the header line is initialized. If the internal table BDCTAB has no header line, REFRESH BDCTAB acts like CLEAR itab.

Regards,

Mukesh.

Read only

Former Member
0 Likes
396

yes, of course I can image ways to cause performance problems by execution of these commands.

But the commands are as explained by themself o.k.

But do the refresh before you use the table in a FOR ALl ENTRIES and you will run into trouble.

Siegfried