2006 Apr 06 2:17 PM
Hi All,
Please let me know how to display negative values in a screen field of a screen.
thanks
2006 Apr 06 2:23 PM
for that field , give the name as _________V followed by the name of that field
2006 Apr 06 2:20 PM
2006 Apr 06 2:23 PM
for that field , give the name as _________V followed by the name of that field
2006 Apr 06 2:27 PM
2006 Apr 06 2:37 PM
Hi Kishore,
You can do this method. In the screen , create a text field of CHAR instead fo creating an INT4 field.
I have created a field of CHAR of name say TEXT.
In the main program,
declare a variable of the same name ie. TEXT.
data: TEXT(5) TYPE C.
In PBO, just assign the negative values.
It will work.Since there is automatic conversion between character and integer data types, it will work for positive values as well.
Regards,
Sylendra.