I have an ABAP function that returns a price field in the following format: 1,226.30. I have
verified this by testing the function in SAP.
However, when I call the function from within GuiXT, the number is returned in the format:
1.226,30. I can't figure out why it's swapping the decimal and comma.
I've checked my SAP settings, and my Own Data is set correctly, and this is the only place
that get's swapped. Here's my code:
call "Z_GUIXT_MNT_ LINE_INFO" In.DOC_NUMBER= "&F[Maint. Quotation]" In.ITEM_NUMBER= "&V[temp_ lineitem] " Out.PRICE="temp_ price"
set V[z_va01_ColumnPric e.&V[curRow] ] "&V[temp_price] "
I've also tried setting the it explicitly like this:
set V[z_va01_ColumnPric e.&V[curRow] ] "&V[temp_price] " Decimals=2 DecimalSeperator= "." GroupSeperator= ",", but these don't have any affect. Ideas?
Thanks