‎2008 Dec 23 5:43 AM
Hi,
I got output like 1,308,040.00. But I want output like this 1308040.00. How to destroy the , .Please help me...
‎2008 Dec 23 5:44 AM
Hi,
We have Replace statement use that for the variable.
Regards,
Naresh
‎2008 Dec 23 5:50 AM
Hello Dorothy,
The qn has been asked innumerable times in SDN forum.
Just FYI, in reports you can use the addition NO-GROUPING
WRITE v_number NO-GROUPING. & in scripts you can use
/: &V_NUMBER(T)& Hope I did not draw the wrath of the moderators, plz make a point of searching SDN from now on )
BR,
Suhas
‎2008 Dec 23 5:50 AM
Hi,
use this,
TRANSLATE v_base_quantity USING ' , '
CONDENSE v_base_quantity NO-GAPS.
this will work.
‎2008 Dec 23 6:12 AM
please check this code..
FORM check_data TABLES input_table STRUCTURE itcsy
output_table STRUCTURE itcsy .
BREAK-POINT.
READ TABLE input_table WITH KEY name = 'REGUH-RWBTR'.
MOVE input_table-value TO wa_amount. here i got value 1,308,040.00 ,but i want like 1308040.00
CONDENSE wa_amount NO-GAPS.
endform.
‎2008 Dec 23 6:28 AM
Hi,
Use
TRANSLATE wa_amount USING ' , '
CONDENSE wa_amount NO-GAPS.
‎2009 Jan 09 8:31 AM