I have a report program that is run in the US and in Europe. There are two versions of the program but we are trying to make it just one. The problem in consolidating the program comes when addressing the format of the edited numeric values. The US side formats them zzz,zzz.99. The Europeon format is zzz.zz9,99. These edit strings depend on the special names value of "decimal-point is comma". It is like I am forced to choose between the edit string format at compile time. This doesn't seem to be very flexible. I think we can get around this by moving the fields to pic x, doing character replacements on the commas and periods, and using all pic x on the reports. Is there an easier way?