‎2008 Jul 02 1:02 PM
Can I use the REFRESH statement for more than one internal tables or do I need to REFRESH each table seperately? Is there any performance gain if you can refresh more than one internal table?
Thanks
‎2008 Jul 02 1:04 PM
HI..
IT CAN BE DONE IN SINGLE STATEMENT... I DONT THINK THERE IS PERFOMANCE GAIN IF U DO IT IN SINGLE STATEMENT..
WRITE IT IN THE FOLLOWING WAY..
REFRESH : IT_TAB1[],
IT_TAB2[].
REGARDS...
Edited by: Rudra Prasanna Mohapatra on Jul 2, 2008 2:07 PM
‎2008 Jul 02 1:04 PM
HI..
IT CAN BE DONE IN SINGLE STATEMENT... I DONT THINK THERE IS PERFOMANCE GAIN IF U DO IT IN SINGLE STATEMENT..
WRITE IT IN THE FOLLOWING WAY..
REFRESH : IT_TAB1[],
IT_TAB2[].
REGARDS...
Edited by: Rudra Prasanna Mohapatra on Jul 2, 2008 2:07 PM
‎2008 Jul 02 1:06 PM
hi,
You can do that with a single statement as shown below and will not affect any performance doing this way ...
refresh : itab1, itab2.Regards,
Santosh
‎2008 Jul 02 1:06 PM
Nitesh,
yes we can refresh in one hit.
like this:
REFRESH:it_excel,it_belnr.Amit.
‎2008 Jul 02 1:08 PM
Hello
Yes, you can use REFRESH for more than one internal tables.
refresh: tab1, tab2, ....
but this will not raise performance, will only simplify code.