I have to requirement to append first row of internal table as as empty string ( ' ' ). But the problem is if I have decimal or numc. It gets appened as 0.00 or 00. Is there any way I can make as empty fields for fist row of internal table?
Eg.
begin of itab.
itab-name(10),
itab-amount type p length 9 decimals 2,
end of itab.
I need this
1 First row should be blank
2 xxx 100.00
3 yyy 23.00
if you append empty line, you get 0.00 for amount
Edited by: P V on Sep 20, 2008 8:04 AM