Replace by a comma when entering a dot in a

Hi,
I would like to know if it's possible to replace a dot with a comma in a field (dynamicaly) that requiere decimal value in format 1.234.567,89
My users want to use the dot key in the numpad in place of the comma dot. But when they use this key, an error message appear : "Input must be in the format .__.___,__"
This control is link to the domain of the field.
Is there a solution without change the standard fields ?
Many thanks in advance

in the same spririt of pandu's code  :
parameters: p_data type p decimals 2 .
data:v_data(15) .
data:v_motif(4)
adapt v_motif according to user preferences - find them un USR01
f.e.g if you want to replace ',' with '.' and '.' with ',' motif = ',..,'
v_data = p_data .
translate v_data using v_motif .
write:/ v_data using edit mask '__:__:__:__'.
It just help to translate a string to a number.
If the trouble is same as mine it is not very helpfull
if users press the numpad  dot key , ouput is a dot whatever their settings are
and they expect the output to be their decimal separator

Similar Messages

  • Iphone 4S numbers formatting, adding a comma when entering zipcode

    I was trying to set up a pandora account on my new phone 4s.  When I enter my zipcode 08816, it changes it to 8,816.   Pandora won't let me create an account, it says I need a valid zipcode.  It does the same thing when I enter my birth year.  I can't find anything in settings.
    Thanks for all you help.

    So, is it an issue with Apple's autocorrect?
    Whether it is or not, I have one solution that might work.
    Go to Settings > General > Keyboard. Under Shortcuts, try adding a new shortcut, enter you zip code in the Phrase field, and then make up some shortcut for it.

  • When entering my phone serial number it shows "We're sorry, but this is a serial number for a product that has been replaced. Please check your information and re-enter your serial number. If your information is correct, you may need to contact us."

    Hi,
    I had purchased an iPhone 5 last month and got the OS updated to iOS 7, yesterday.
    The data cable was of very bad quality and when I took it to the retailer for replacement, they said that its not covered under the one year warranty.
    Secondly, I have also been experiencing network coverage issues with this phone. So, I decided to contact apple care through the web. When entering my serial number/IMEI it says, "We're sorry, but this is a serial number for a product that has been replaced. Please check your information and re-enter your serial number. If your information is correct, you may need to contact us."
    Does anybody have any idea what the reason behind this could be.
    - First time with iPhone and frustrated.
    Briju

    If you purchased the iPhone from Apple or an authorized Apple reseller,
    contact them for assistance. If you purchased elsewhere, go back
    to that retailer and get them to give you a new iPhone or your money
    back.
    If you have checked the serial number carefully and re-entered it
    and that gave you the same error message, contact Apple if purchased
    from Apple or authorized retailer; otherwise you have been scammed
    and need to pursue the matter with the business you obtained the
    iPhone from.

  • Password - when entering letters, not "dots" right away...

    Hi all
    I have an original iPhone recently upgraded to the 2.0 software. When I enter in a password now into a password field, instead of getting the "*" right away, I first see a letter and then a moment later it turns into the dot. I don't like the idea of having a password be visible on screen. Is there a way to fix this in the new settings?

    I can understand why it would be a problem and I'm sorry you don't like it. It would be nice to have the option to turn it off, but I LOVE it!
    I can tell right away now if I screw up a password. Especially when entering my WEP key at work! Every so often they shut down the WiFi and when they restart, you have to re-enter the key. It's looooong! It's nice to see the characters for a second, so I don't have to try to enter it a million times!

  • Comma in place of dot in smartforms

    hello, i have one peculier problem,
    when i print the data (numbers, currency) it will print comma(,) in place of dot( . decimals ), i dubugged tht smartform in internal table has same data wht i get data base, when priting only this problem was raised, for some invoices it coming properly, for some invoice it not coming, i  checke userprofile also.
    i has two invoice types : export invoice
                                       domestic invoice
    in export it coming ,
    in domestic only problem..
    kindly help me
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:08 PM

    Hi
    Based on the COUNTRY setting the ',' or '.' are printed
    First check the User settings, becasue different users may have different settings
    and use the command in the code
    SET COUNTRY <country name>
    like SET COUNTRY 'IN' (for India),
    SET COUNTRY 'US'  (for USA)
    <REMOVED BY MODERATOR>
    Regards
    Anji
    Edited by: Alvaro Tejada Galindo on Apr 28, 2008 1:09 PM

  • Running iphoto 6.06 some of my images have been replaced by a grey box with a dotted line? How can I rectify this?

    Hi I have about 2% of my library replaced by a grey background with a dotted lined box where the image should be?
    Any ideas why or how to return my images?
    file://localhost/Users/johnburr/Pictures/iPhoto%20Library/Modified/2012/Roll%203 74/Image0098.jpg

    I too have no use for the new Photos.  Trying to sort through 6,000+ photos by dates (some that are incorrect) was very time consuming.  I was looking for a way to reinstall iPhoto from my Time Capsule because I thought that Apple had done away with iPhoto on my computer.  I found this bit of information.  I now have iPhoto back and am not wasting time trying to find photos anymore.  (No I did not have them sorted into albums because I found the Event sort to be perfect for me and those were my 'albums'.)  I don't know anything about the $3.99 a month.  However, I do not put my photos in iCloud and did not transfer my library to iCloud when it asked me.  Hope this helps.
    Using iPhoto and Aperture after you migrate to Photos
    iPhoto — and Aperture, if you downloaded it — remains on your system in the Applications folder, and you can continue to use it. If you open iPhoto or Aperture after you upgrade to Photos, you’ll be asked if you want to open your library there or in Photos.
    Any changes or edits you make in iPhoto or Aperture aren't reflected in Photos. And any changes or edits you make in Photos will not be reflected in iPhoto or Aperture.

  • Adobe changes my numeric field to include commas when validation fails

    Adobe changes my numeric field to include commas when validation fails. My numeric validation setting is num{zzzzzzz9.99}. I want my numeric field to display as 99999999.00, no commas and only to have 2 decimals places. I added this validation to the Display, Edit, Validation and Data tabs under the validation pattern dialog box.
    When validation fails, adobe changes the display of the field to include commas and drops the decimal places:
    999,999,999
    How can I prevent this from happening? Any feedback is greatly appreciated.
    I've also added a change event to the field as well:
    \\only allows numbers and period.
    if (xfa.event.newText.match(/[^0-9.]/))
    xfa.event.change = "";
    \\only allows 11 characters to be entered.
    var maxLength = 11;
    if(xfa.event.newText.length >maxLength)xfa.event.change = "";

    I want it to display only numbers followed by 2 decimal places.
    999999999.00
    If I type all numbers in my field like 999999999999 and I go over the character limit of 11. My validation fails and then my numeric field is displayed with commas, 999,999,999 without the 2 decimal places. Is there a way to prevent adobe from automatically changing my fields?

  • HT204409 i'm receiving a message for unable to join the network when entering in the wifi password

    the message I'm receiving on the Ipad mini when entering the home network password is: Unable to join the network!!!

    If you are having WiFi problems it is necessary to isolate whether the problem is with your network or your iPad. Note: Do NOT consider your network to be blameless if some other devices can connect to it.
    First, test your iPad on some other networks: a friends, Starbucks, Barnes &amp; Noble, etc.
    If it works well there then the problem is probably with your network. Try restarting your WiFi router by removing power for 30 seconds. If that does not help check for a firmware update for your router. If none exists which corrects the problem consider replacing the router.
    If your iPad does not function well on other networks it possibly has a hardware problem. Contact Apple Support or visit an Apple store for evaluation. They can provide a replacement if your iPad is bad.
    If you need more help please give the make, model, and version of your WiFi router and how you have it configured.
    See also here: http://www.apple.com/support/ipad/wifi/

  • In send mail body of text all commas r displayed as Dots and all dots as co

    Hi Experts,
                      I am sending sales order details in mail but when it reaches the users outlook mail box all
    commas are displayed as dots and all dots are displayed as commas.
    Work flow body
    Sales Order No : &BUS2032.SALESDOCUMENT&
    Customer No : &BUS2032.ORDERINGPARTY.CUSTOMERNO&
    Sales Organization : &BUS2032.DISTRIBUTIONCHAIN.SALESORGANIZATION&
    Sales Division : &BUS2032.SALESANDDISTRIBAREA.DIVISION&
    Total Credit Limit  : &CREDITLIMIT&
    Available Credit Limit  : &AVL_CREDITLIMIT&
    Present Order Value : &BUS2032.NETVALUE&
    Mail body Display
    Credit Limit exceeded By  22.221.456.873,75-
    Sales Order No : 262
    Customer No : 300000
    Sales Organization : 1000
    Sales Division : 10
    Total Credit Limit  : 12.000.000,00
    Available Credit Limit  : 765.286,25
    Present Order Value : 22.222.222.160,00
    Please tell me how to resolve this issue.
    Regards,
    Hari

    Hi,
    this is the "Defaults" settings of the user.
    Go to SU3 and in the "Defaults" tab, choose your choice.
    Hope this solves your issue
    venu

  • Validate value to be number when entering value

    hi i what to validate value to be number when entering for example if am entering social security number i must make sure its number,i try convernumber but when i navigate away from field it put commas 22,222,222 instead of 22222222.am in jdeveloper 11.1.1.6.0
    Edited by: adf009 on 2013/02/14 11:45 AM
    Edited by: adf009 on 2013/02/14 12:08 PM

    set the groupingUsed property to false.
    <af:inputText label="Label 2" id="it2">
            <f:convertNumber groupingUsed="false"/>
          </af:inputText>

  • Lock User when enter password in wrong 3 times

    Hi,
    I user oracle E-Business Suite 11i .
    I want to Lock User(Disable Account) when enter password in wrong 3 times.
    Thanx
    Rafeek
    Edited by: reemax on Apr 20, 2010 4:19 AM

    Hi,
    you can set the profile value FAILED_LOGIN_ATTEMPETS to 3 to restrict that wrong password entry as folows
    sql>ALTER PROFILE default LIMIT failed_login_attempts 3;
    --Rathina                                                                                                                                                                                                                                                                                                                                                                                           

  • Remote app in iOS 7 doesn't bring keyboard when entering text.

    I tried to use the remote app with my new iPad air with iOS 7 with and when I tried to make a search for a movie it won't bring the keyboard as before when entering text. The funny thing is that I have an old iPod 4th gen with iOS 6, and that one still brings the keyboard every time text needs to be entered, even still has the option to hide and bring out the keyboard. Is this feature gone forever in iOS 7? Or is missing and will be added later?

    This is now fixed. The remote has two modes. It starts with an interface similar to iTunes to play music or videos from your library, on the top right side it has a keyboard (mine appeared greyed out and I was unable to activate it, but now works), and an axis which brings the other remote everyone is familiar with to select the icons on the tv screen. The other remote now has a small keyboard icon on the top right which didn't used to have before. I don't know what I did to activate it, however, it won't bring the keyboard automatically like before. Another way to bring the keyboard, if yours still stuck, is to highlight any of the letters in the menu, and swipe from right to left, the highlight will cursor will hide, swipe again and that brings up the keyboard. How? Why? Still a mystery to me, but I happy I can use remote again.

  • Why can't I use a backslash on my Iphone when entering my email address

    Why can't I use a backslash on my Iphone when entering my email address

    Best thing to do is go to your email, hit reply on any email and find the backslash on your keyboard.  Select the Backslash and then cut/copy it into your mail settings or wherever you want to use it.

  • I use an Iphone 4 which had to be replaced recently. However when i did a backup it was on the new IOS version 7, but now that my phone was replaced and i am back on the old IOS version 6 i how do i restore my backup??

    I use an Iphone 4 which had to be replaced recently. However when i did a backup it was on the new IOS version 7, but now that my phone was replaced and i am back on the old IOS version 6 i how do i restore my backup??
    When i try to restore my Back up using Itunes this is the message i get - "Unable to restore backup as the software is old - Please setup as a new device and then try to restore your backup" - Please advise. If i do so are there any chances of loosing my data. At this point in time i would be happy if i could just retreive my contacts list. Any suggestions would be greatly appreciated.

    Nope - you cannot restore a backup from a newer iOS version on to a device running an older iOS version.  The reverse works, but in your case to use your backup, you must update to iOS 7.0.3 - no other option if you want to use that backup.

  • Invoice and Invoice amount in FI/CO When enter check number

    Hi  All,
       I have a requirement like this. We have custom t-code ZF04 ( FAST CASH ) to post payments to customer accounts. In this t-code, we have one field for Check#.  When they enter Check# number and click on 'SEARCH' icon i need to display list of invoices and amounts with in a check.
    I have no idea about tables,. Where to look? What tables do i need to look when enter check number, which returns invoice details.
    Please let me know ASAP....
    I appreciate your help!
    Thanks,
    Suneetha

    Hi,
    One question - Are you getting customer payment trrough <b>LOCKBOX</b>? If yes, then following are the tables
    Check tables <b>FEBKO</b> and <b>FEBEP.</b> The field is <b>FEBEP-CHECT</b> for check number. For this check number take <b>FEBEP-KUKEY</b>. With this KUKEY read table FEBRE. <b>FEBRE-VWEZW is the invoice number</b>.
    So, sequence is
    1. Put Check# --> FEBEP-CHECT  and get FEBEP-KUKEY
    2. Put FEBEP-KUKEY into --> FEBRE-KUKEY
    3. FEBRE-VWEZW is invoice no.
    If you are not using LOCKBOX, How are you getting customer payment? Let me know so i can give you exact answer.
    Regards,
    RS

Maybe you are looking for