cancel
Showing results for 
Search instead for 
Did you mean: 

How do I remove comma from Quantity Field?

Former Member
0 Kudos
3,262

Hi,

How do I remove comma from Quantity Field - MSEG-MENGE?

Please Advise.

Regards,

Shobhit

View Entire Topic
Former Member

Hi Shobbit,

You could use the replace statement.. something like this:

data: quant(17) type c.

* value from mseg-menge to quant
quant = mseg-menge.

replace ',' with space into quant.
condense quant no-gaps.

Regards,

Ville

Neel_oilindia
Participant
0 Kudos

Great you saved me. Had the same issue. got resolved using the following codes.

Replace ',' with space into l_minutes_1.
CONDENSE l_minutes_1 NO-GAPS.