cancel
Showing results for 
Search instead for 
Did you mean: 

Decimal Format Issue

Former Member
0 Kudos

Hi,

I am getting decimal output as 123,00 instead of 123.00 I have also chked SU3 settings but the default settings are correct 1,234,567.89

Thanks,

Alok

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Check the configuration for the country code that you are using. Some countries use specific date and decimal formats. Try using the following code within your Sapscript:

/: SET COUNTRY 'FR'

( or whatever country setting you are looking for). In our system, Country Code FR (FRANCE) has a decimal format of "," so the number is printed as "123,000" instead of "123.000".

Answers (3)

Answers (3)

Former Member
0 Kudos

solved by setting country

Former Member
0 Kudos

Hi

Use following code before printing

/: SET COUNTRY ' '

Refer following for details

Country-Dependent Formatting

Certain fields are formatted specific to a particular country. These include fields for displaying a date and numeric fields containing either a decimal point or a u2018thousandsu2019 separator character. The formatting applied is usually determined by the definitions contained in the user master record. You can use the SET COUNTRY control command to choose a different formatting operation. The various country-dependent formatting options are stored in table T005X.

Syntax

/: SET COUNTRY country_key

You can specify this country key either by quoting it directly enclosed in inverted commas or by using a symbol.

/: SET COUNTRY 'CAN'

/: SET COUNTRY &KNA1-LAND1&

You can revert to the settings of the user master record by using the SET COUNTRY control command again with an empty country name.

/: SET COUNTRY ' '

When SAPscript encounters this command it calls the corresponding ABAP command internally. The effect of the SAPscript command is thus identical with that of the ABAP command.

Regards

Harshada

Former Member
0 Kudos

use below replace commad..

REPLACE ',' WITH '.' INTO Your field.

CONDENSE field NO-GAPS.