‎2007 May 15 4:27 PM
I have a field on a screen, type numc, which displays a numeric value. However, when the value is 0, the field displays as blank. Any ideas why this may be so? I would like to display 0.
‎2007 May 15 4:31 PM
Hi,
A parameter of type N displays 0 in the selection-screen when it is initial.
Check if you have declared it of type C, by mistake.
Regarsd
Sailaja.
‎2007 May 15 4:31 PM
Hi
If you want to display value in selection screen give like this. Take the type as 'C' instead of 'n'
selection-screen: begin of block b1.
parameters number type c.
selection-screen: end of block b1.
initialization.
number = 0.
write:/ number.
It is working.
Regards
Haritha.