This is similar to an existing enhancement request
PF-26868.Unfortunately you can't add custom culture codes ( well, you
can in the server config, but they won't actually appear in the
application unless they are one of the standard culture codes as ...
Lastly, you need to review your application to see if there are any
assumptions on Date Formats.This is especially true if your application
is using a Specialty Mktplace solution (e.g. People Planning) and you
need to retrieve dates from a register t...
On the flip-side of the above examples:This use of XFToStringForFormula
will work for all culture codes, but suffers from accuracy because it
truncates to 9 decimal places in the calculation:Dim someRate As Decimal
= 0.00000001234567 api.Data.Calcula...
In a nutshell:These will all fail, if the calculation is invoked by a
user that has a non-English culture setting:'-- Bad , never do this...
-- Dim somePrice As Decimal = 123.45 api.Data.Calculate("A#Result =
A#Qty * " & somePrice)also this is a big ...