Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Value change

Former Member
0 Likes
574

Hi,

I got output like 1,308,040.00. But I want output like this 1308040.00. How to destroy the , .Please help me...

6 REPLIES 6
Read only

Former Member
0 Likes
558

Hi,

We have Replace statement use that for the variable.

Regards,

Naresh

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
558

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

Read only

Former Member
0 Likes
558

Hi,

use this,

TRANSLATE v_base_quantity USING ' , '

CONDENSE v_base_quantity NO-GAPS.

this will work.

Read only

0 Likes
558

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.

Read only

0 Likes
558

Hi,

Use

TRANSLATE wa_amount USING ' , '

CONDENSE wa_amount NO-GAPS.

Read only

Former Member
0 Likes
558

ans