‎2006 Apr 27 10:57 AM
i have used the FORMAT INPUT ON along with the write statement to make the output field which is a quantity field to be editable while running the report.
But once i edit it and execute it gives a '#' symbol immediately after the qty filed . Now next to this field is a sy-vline printed with no-gap. It gives the # symbol in the place of the sy-vline . Please do reply its very urgent.
thank you.
‎2006 Apr 27 11:06 AM
‎2006 Apr 27 11:10 AM
Hi,
the data type you should give as char, or else you will face the problems. once you have entered the value then you can convert the char to quantity and save.
Regards
vijay
‎2006 Apr 27 11:13 AM
‎2006 Apr 27 11:17 AM
hi,
look to that test program:
DATA qty TYPE bseg-menge.
DATA hqty(20).
WRITE: qty INPUT ON.
AT PF7.
DO.
READ LINE sy-index FIELD VALUE
qty INTO hqty.
IF sy-subrc NE 0.
EXIT.
ENDIF.
ENDDO.
MESSAGE i001(00) WITH hqty.Andreas
‎2006 Apr 27 11:21 AM
Hi,
It shoub be charecter field ....
see this link
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba47e35c111d1829f0000e829fbfe/content.htm