‎2008 May 30 3:27 PM
Hi all,
I want to clear the contents of dynamic internal table .Please tell how to do it.The structue of dynamic internal table sould remain intact after clearing it.
‎2008 May 30 3:35 PM
Hi
Use the REFRESH statament: it only clear the data, but not the structure:
REFRESH <TABLE>.
U should unsssign the field-symbols in order to delete the structure too.
Max
‎2008 May 30 3:30 PM
‎2008 May 30 3:31 PM
Hi,
Dynamic internal table or any internal table , just use refresh statement. ( refresh itab )
if its a field symbol then use unassign.
regards,
Advait.
‎2008 May 30 3:32 PM
‎2008 May 30 3:35 PM
Hi
Use the REFRESH statament: it only clear the data, but not the structure:
REFRESH <TABLE>.
U should unsssign the field-symbols in order to delete the structure too.
Max