cancel
Showing results for 
Search instead for 
Did you mean: 

Number format is not working in SAP PO 7.4

former_member230666
Participant
0 Kudos

Hi Experts,

Would like to seek for you advice. I've face an issue with the format number issues in SAP PO 7.4 and this issue has never happened in SAP PI 7.1. The correct display should be 0.006 but the it is returning as 0,006. I'm using XSL type in the message mapping by the way and this has caused error during the data inserting to the table. My syntax as below. I've tried to changed the number format from German to English (United States) in the windows server setting but it does not help. Can anyone help me? Thanks in advance.

<SSI_DELIVERY_QTY>
<xsl:value-of select="format-number(0.006,'####0.000',)"/>
</SSI_DELIVERY_QTY>

Regards,
Shawn

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member190293
Active Contributor
0 Kudos

Hi Shawn!

Try to use this syntax:

<xsl:decimal-format name = "euro" decimal-separator = "."/>
...
<xsl:value-of select="format-number(0.006,'####0.000','euro')"/>

Regards, Evgeniy.