‎2007 Apr 11 6:22 PM
i have a report where the fields are displayed with the decimal places. these fileds are common sap fields like LOT SIZE, STOCK QUANTITY, SALES QUANTITY, etc..
now, i need to display these fields without decimals. so, pls give me the steps how to change the internal table fields. also, pls mention whether we have to chnage these internal table fields just before writing the write statement (we write loop stmt first, then read stmt and then write stmt) or we have to change the fileds even before loop stmt.
pls give me example steps.
‎2007 Apr 11 6:25 PM
If you have all these fields in an internal table. Then while writing do like this:
Loop at Itab.
write: itab-field decimals 0.
Endloop.
<b>satish polu - If resolved, close the thread.</b>
Thanks,
SKJ
‎2007 Apr 11 6:49 PM
Hi ,
try this
<b>Loop at Itab.
write: itab-field no decimals .
Endloop.</b>
reward points if this helps u
ravi