‎2008 Apr 01 8:17 AM
Hi all,
How to delete blank lines from internal table.
I wrote append statement 2 times without any values.
The itab appended with blank lines.
‎2008 Apr 01 8:28 AM
Hi
Try this
Delete <itab> where <key-field = ' ' >.
Regards
Aditya
Edited by: ADITYA MITTAL on Apr 1, 2008 12:58 PM
‎2008 Apr 01 8:31 AM
delete itab where xxx is initial.
Or just don't do an append if line is initial:
if wa_table_line is not initial.
append.
else.
DO ???
endif.
‎2008 Apr 09 3:31 PM
‎2008 Apr 09 3:36 PM