refresh statement is used to delete all the rows of an internal table but it does not release dJ memory space. It always applies to body of the table.
refresh <itab>.
where:
<itab> - it is an internal table with or without a header line.
This statement refills an internal table immediately after clearing it. Therefore, the table contains lines.
However, the memory already occupied remains allocated to the table until it is cleared, the header line remains unchanged.
refresh <itab>.
where:
<itab> - it is an internal table with or without a header line.
This statement refills an internal table immediately after clearing it. Therefore, the table contains lines.
However, the memory already occupied remains allocated to the table until it is cleared, the header line remains unchanged.
No comments:
Post a Comment