‎2010 Jul 15 11:24 AM
Hi experts,
I developed one report, in this two quantity fields r there( in final table). If quantity values not there it is displaying
0.000 .My requirement is i don't want zeros instead i want empty space or nil like this.I tried all the possibilitiees but it
is giving run time error.It is not accepting char values .What is the solution ? pls help me in this?
‎2010 Jul 15 11:41 AM
Hello
Classic report: write menge no-zero.
ALV: in field catalog set no_zero = 'X'.
‎2010 Jul 15 11:41 AM
Hello
Classic report: write menge no-zero.
ALV: in field catalog set no_zero = 'X'.
‎2010 Jul 15 12:35 PM
THNAK U for giving this tip.
problem is solved
Edited by: ram charan on Aug 4, 2010 10:47 AM
‎2010 Jul 15 11:43 AM
If it is classical report then you can put a check(if quantity-field NE 0, write quantity-field) before writing the data.
If it not classical then it is a problem, in that case you need to have one more internal table(ITAB2) in which those quantity fields will be of char types, then move table(ITAB1) records to ITAB2 table. DELETE itab2 where field1 = '0.00'
If problem solved, see to the points section..