Question:
Hi,
clear, refresh, free, delete - all these clear header line or body of itab at one time.
which command I need to use to clear header line & body of itab both with a single command ?
kindly assist,
Rgds,
Answer:
There is no such a command, but you can define macro
define empty.
clear &1.
free &1.
end-of-definition.
then use it to clear header line and table content
empty: itab1, itab2.
Answer:
Thanks ZAleVic !
I heard there is a command for it, if I come to know will let u know.
anyways, thanks for define macro command.
rgds,