‎2008 Apr 29 12:46 PM
Hi...
I am updating internal table wirh new record to display by using appen stetement like following....
itab-f1 = ' '.
itab-f2 = ' '.
itab-f3 = 'one'.
itab-f4 = ' '.
itab-f5 = 'india'.
so with these i have to find new row after the last row of the internal table.. withthree spaces and two entries...
but here iam getting '0' for the 4 th field....actually it was the numaric field... how avoid that '0' in output?
Thank you,
naveen
‎2008 Apr 29 12:49 PM
Declare the 4th field as char field ..
Or
while writing the o/p .. check if field4 is initial.
if so .. just write as
write :' '.
‎2008 Apr 29 12:49 PM
Declare the 4th field as char field ..
Or
while writing the o/p .. check if field4 is initial.
if so .. just write as
write :' '.
‎2008 Apr 29 12:59 PM
Hi....
there is no chanse to change that datatype...
and to write WRITE statement for output...because i am displaying this table in the table control......
‎2008 Apr 29 12:51 PM
Hi Naveen,
You told that you have declared field f4 as numeric. So declare it as of CHAR type. Then you can avoid 0 in the output.
Thanks,
Swamy Kunche