2008 Jan 15 3:03 PM
Hi Guys,
I want to remove decimal point in quantity field
e.g instead 5.0000, it should print 50000.
can any one suggest what to be done.
Thanks in advance for your help.
2008 Jan 15 3:11 PM
Hi Guys,
I want to remove decimal point in quantity field
e.g instead 5.0000, it should print 50000.
can any one suggest what to be done.
Thanks in advance for your help.
2008 Jan 15 3:10 PM
try this...
DATA : l_quntity(16).
l_quntity = itab-menge. "quntity field 5.0000
REPLACE ALL OCCURRENCES OF '.' IN l_quntity WITH SPACE.
CONDENSE l_quntity.
WRITE l_quntity.
2008 Jan 15 3:11 PM
2008 Jan 15 3:12 PM
Goto Menu option
System - User Profile - Own Data
Tabstrip Defaults
Change Decimal Notation to 1234567,89, that will remove the decimal point.
You might have to log out and back on before it takes effect.
Hope that helps,
Michael
2008 Jan 15 3:12 PM
Hi,
Use syntax REPLACE ALL OCCURANCES OF ',' in <field Name> with ''.
CONDENCE <field name> no-gaps.
Regards,
Satish
2008 Jan 15 3:13 PM
Hi
SPLIT f AT '.' INTO f1 f2.
Concatenate f1 f2 into f3.
Regards,
Mohan
2008 Jan 15 3:16 PM
Hi Imran
Write that fields with "decimals 0" option in Write statement.
Cheers
~ Ranganath
2008 Jan 15 3:23 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |