on 2007 Jul 11 9:51 AM
i have number 1.000 i want to show it 1.0 with one zero any idea???
DATA: X TYPE P DECIMALS 3 VALUE '1.267',
Y TYPE F VALUE '125.456E2'.
WRITE: /X DECIMALS 0, "output: 1
/X DECIMALS 2, "output: 1.27
/X DECIMALS 5, "output: 1.26700
/Y DECIMALS 1, "output: 1.3E+04
/Y DECIMALS 5, "output: 1.25456E+04
/Y DECIMALS 20. "output: 1.25456000000000E+04
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi,
DATA y1 TYPE p DECIMALS 3 VALUE '1.000'.
write y1 decimals 1.
thanks
jaideep
*reward points if useful..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Richi,
Check this :-
http://help.sap.com/saphelp_nw2004s/helpdata/en/02/12af0eb51411d2a97100a0c9449261/frameset.htm
Regards,
Deepu.K
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
62 | |
12 | |
7 | |
7 | |
7 | |
6 | |
6 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.