Use comma on nummeric .del as a comma in SAP

Hi,
Is it possible to use the "del." key on my keyboard in SAP Business One as a comma? In Excel and other applications this key already works as a comma.
Now everytime a make an order en press the "del." key it gives a point instead of a comma.
I already checked mine keyboard settings in Windows and they are oke.!@@
Greeting
Mark

Hi,
There is a way to change the behaviour of the keyboard.         
Please find Note: [711790 |https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=711790]in which it is explained how to do it. 
hope it helps,
Regards,
Ladislav
SAP Business One Forum Team

Similar Messages

  • Why is it such a pain to use java in a country that uses commas as decimal?

    Why is it such a pain to use java in a country that uses commas as decimal separator?
    A few weeks back I've asked here about the keypad decimal key. For some reason, java doesn't map the decimal key to a comma on the Portuguese (Portugal) keyboard layout. I've got no answer and I ended up using a custom plainDocument on the JTextFields to replace all points with commas.
    Now, I've just spent the whole morning trying to store and use decimal numbers properly. For some reason, a Double/Float .valueOf method (or the corresponding parse method) simply ignores the locale in use and uses US defaults when parsing the string. I can't parse anything with commas in those methods and I should, as it is the decimal separator for the system and default locale being used by java.
    First of all, I shouldn't be expected to perform replacements on every single operation that comes with a comma and I obviously can't be expected to program my own locale checking to decide what decimal separator to use in each final system. Second, is there any way to work with numbers seamlessly, without having to know the locale of the end user?
    I'm sorry if this is all my fault for doing something completly wrong, I'm new to java and I did search around to no avail. I'm really frustrated with what seems to be a complete lack of support in java for locales other than the US one.

    Good old Cobol has the "DECIMAL-POINT IS COMMA" clause... And isn't it great? :)
    Second, is there any way to work with numbers seamlessly, without having to know the locale of the end user?Consider "123.456". In some locales, this number is one hundred twenty-three thousand, four hundred fifty-six. In other locales it is one hundred twenty-three and four hundred fifty-size thousandths. How will you be able to determine which, without a locale?That's not what I've meant. Java should know the locale and behave accordingly. I don't have to know the locale of the end user since it might vary greatly. My point is that if strings are flying around with commas and if comma is the decimal separator on the end user's machine, any method aimed at parsing a numeric value out of a string should regard commas as such. I'm constantly replacing dots with commas and vice versa which could cause trouble if a different locale is used.
    And I mean that as a rant. Given my inexperience with Java, there might be good reasons for such a behaviour as baftos argued. What I'm really interested is in finding the proper way to deal with this issue.
    Have you tried the NumberFormat.parse? I will now.
    Edited by: Smigh on Apr 9, 2008 9:21 AM

  • Using comma (,) as a decimal separator

    I know this isn't the right place to ask, but I cant get excel to use comma as a decimal separator.
    All is set up right in system preferences and I still cant get it to work in excel.
    So Im asking if any one know how to make the comma to be used for the decimal numbers and dot for thousands.
    Or if any one can explain this to me, or better do it for me.
    http://www.macosxhints.com/article.php?story=20050926170928881
    Many thanks

    Hi, Sven.
    You might want to search or post on the Excel group you can find on the Microsoft Mac Support - Newsgroups page. These are Google Groups with active participation from MS product users, including a variety of expert users.
    I don't mean to send you somewhere else, but I've found numerous answers there for folks with questions related to MS products. Accordingly, it has often proved to be the first, best place to look for answers to questions such as you are asking.
    When you post your question there, be sure to state the version of Excel you are using.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • How to use commit work in class cl_bls

    Hi,
    When i have used commit work after email sent,
    it goes into dump.
    Here is the code segment:
      try.
        -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
        -------- create and set document -------------------------------
          pdf_content = cl_document_bcs=>xstring_to_solix( pdf_tab ).
          document = cl_document_bcs=>create_document(
                i_type    = 'PDF'
                i_hex     = pdf_content
                i_length  = bytecount
                i_subject = sub ).  "#EC NOTEXT
        add document object to send request
          send_request->set_document( document ).
        --------- add recipient (e-mail address) -----------------------
        create recipient object
          recipient = cl_cam_address_bcs=>create_internet_address( recip-recip ).
        add recipient object to send request
          send_request->add_recipient( recipient ).
        ---------- send document ---------------------------------------
          sent_to_all = send_request->send( i_with_error_screen = 'X' ).
         commit work.
          if sent_to_all is initial.
            message i500(sbcoms) with recip.
          else.
            message s022(so).
          endif.
      ------------ exception handling ----------------------------------
      replace this rudimentary exception handling with your own one !!!
        catch cx_bcs into bcs_exception.
          message i865(so) with bcs_exception->error_type.
      endtry.
    What could be the reason?
    Is there any way to use commit work in class while sending email as in SO_NEW_DOCUMENT_ATT_SEND_API1 fm?
    Thanks.

    Hi,
    I have used
    submit program.....
    but in update task i have used it.
    "Z_SD_ORDER_UPDATE".    program is a print driver program.
    However error says:
    There is probably an error in the program
    "Z_SD_ORDER_UPDATE".  
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    -  SUBMIT
    I used submit as:
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                      WITH output = ' '
                    AND RETURN.
    Instead of submit i want to use commit work but i also get a dump after commit work too.
    How can i use commit work in above code?
    Thanks.

  • Why not to use Commit

    Hi,
    Can Any one tell the reason why using Commit after Insert will reduce the performace of a proc.
    Thanks

    Are you talking about commit in a loop ? Then see the below links.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4951966319022
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:7661190956484

  • How to use COMMIT and ROLLBACK in BAPIs

    Hi experts,
        Can we use COMMIT or ROLLBACK in the BAPI just like how we implement it in the ABAP programming ?? If it is yes,
        Where can we exactly use normal COMMIT and where we use BAPI_TRANSACTION_COMMIT when we are implementing BAPIs ?
    Please clarify this. Any reply is really appreciated !!
    Thank you in advance.

    Hi
    see commit is the thing which saves the changes you made to the
    database otherwise imean if u have not done the commit work what
    happens is the changes will be killed once the your program life has
    been killed i think you got why we will do commit work
    BAPI's are the methods through which we can input the data i mean it
    is an interface technique it is a direct input method.
    for example you have inserted some data into one table by using this
    BAPI technique but you not done the Commit BAPI then wht happens is
    the changes u made to the database cannot been seen in the table these
    will get effective once u have Done the Commit BAPI
    i think i am clear to u
    Rollback
    see by taking the above example only we can know wht is Rollback it is nothing but UNDO option in ms office se untill saving if we want one step back we will do it by undo option am i right similalry untill commit ing i.e. nothing until saving the changes made u can delete the modified change i.e. u can go to the stage how it was previously ok
    i think u got me
    plzz reward if i am clear to u.......
    see once u have done commit u cant rollback
    same as once  u saved one document u cant undo the document changes i think u got me
    Thanks and regards
    plzz dont forget to reward if i am useful....
    u can contact me as my details are in my business card if u want any further clarification....

  • Using commas in widgets

    If anyone needs to use commas in widgets that don't support the use of commas, such as the checkbox widget because a comma causes all the following text to end up on a new line, you can use the special character Single Low-9 Quotation Mark instead as it appears identical to a comma but prevents the text from moving to a second line in the widget.
    The first line of the checkbox widget is using a comma. The second line is using the low-9 quotation mark.
    When it appears on a slide, the line with the comma gets separated into two lines while the line using the special character stays together.
    On a PC the keystroke combination is Alt+0130. I tried looking up what the combination is on a Mac but couldn't find anything online for it.

    As you say, I too have spent quite a bit of time in the help file, on Adobe’s forums, on various Captivate blogs, etc. and I’m still at a loss on using some of the built-in widgets, particularly the radio buttons, combo boxes and list boxes (my understanding is just limited to the fact that variables used don’t equate to specific actions).
    Any examples of use out there? What exactly can I do with them? Can I somehow associate them with actions?
    If anyone has any examples of using these widgets, I too would love to see 'em.
    I just want to reiterate, as I'm not seeing any really helpful answer yet.
    Thanks!

  • Why we cant use commit in trigger, can any one give proper explanation

    Why we cant use commit in trigger, can any one give proper explanation

    You shouldn't use a commit in a trigger if it's part of the same transaction as the action happening on the table.
    Eg. Suppose you have a table that stores details of orders, and it has a trigger that updates the stock table.
    If a customer comes along and creates an order but decides part way through that actually, they don't want the order after all, the transaction is rolled back.
    If you don't put a commit in the transaction, then the stock table details remain unchanged - no order, so no stock reduction. If, however, you forced the commit to happen in the trigger, you now have no order, but the stock table details have changed.
    That's not what you want to happen!
    Sometimes it does make sense to have a commit in the trigger, but this is very much the exception. If you come across a table mutating error, it usually means that you have a problem with your design and that you need to rethink it, NOT bodge it by using autonomous_transaction and a commit.
    Of course, the times when you'd use triggers should be few and far between - the above example is NOT how I'd code an orders-stock transaction; I'd have some PL/SQL that handled the transaction, rather than direct inserts onto the table.

  • How to Splilit The String Into Single Column using Comma As Delimiter ?

    How to Splilit The String Into Single Column using Comma As Delimiter ?
    using Function

    refer my thread ,code is also available see if that helps you
    error while executing the sp ORA-21779: duration not active

  • Can it be used commit statement in user-exits?

    Can it be used commit statement in user-exits?
    How to badi is different from other enhancement?
    What are the two default components systems automatically creates when we create a new badi?
    What is the business object for purchase order?

    Hi,
       1) commit statement in userexit:
    You should not do that.
    After the user exits code is triggered, the transaction's own commits statements will commit the database anyway
    2)You could say: BAdI = enhancement using interfaces
    It is just the most up-to-date version of SAP's enhancement concept.
    go thru this.
    http://www.esnips.com/web/BAdI
    http://www.allsaplinks.com/badi.html
    New to Badi
    Regards
    Kiran Sure

  • Can i use commit in between pl sql statements

    Hi,
    I have written program unit , in that I used insert statements and after that I used commit command.
    But in runtime it's getting oracle error unable to insert . because I used some non database items and database items
    so that it's coming error.
    But my question is , Can i use commit after executing some statements in program unit procedure.
    Thanks in advance.

    FORMS_DDL restrictions
    The statement you pass to FORMS_DDL may not contain bind variable references in the string, but the
    values of bind variables can be concatenated into the string before passing the result to FORMS_DDL.
    For example, this statement is not valid:
    Forms_DDL ('Begin Update_Employee (:emp.empno); End;');
    However, this statement is valid, and would have the desired effect:
    Forms_DDL ('Begin Update_Employee ('||TO_CHAR(:emp.empno)
    ||');End;');
    However, you could also call a stored procedure directly, using Oracle8's shared SQL area over
    multiple executions with different values for emp.empno:
    Update_Employee (:emp.empno);
    SQL statements and PL/SQL blocks executed using FORMS_DDL cannot return results to Form
    Builder directly.
    In addition, some DDL operations cannot be performed using FORMS_DDL, such as dropping a table
    or database link, if Form Builder is holding a cursor open against the object being operated upon.
    Sarah

  • Is neccesary to use commit()...when you use stmt.executeUpdate(sentence);?

    Is neccesary to use commit()..... when you use
    stmt.executeUpdate(sentence);
    and the sentence is by example:
    sentence = "delete from table_X where ELEMENT1 = 'hi'"; ????
    This is because...i did a servlet in which i send a sentence (the sentence could be insert or delete).....and apparently it is working very well....i can see that the rows are added or removed in the DB table...but i am a little confused...because in a paper says "modifications in tuples are temporarily stored in the db system. They become permanent only after the statement commit has been issued"
    and i am not calling commit in my servlet.....
    Thanks in advance,
    Mary

    AFAIK, by default, Connection objects have their auto-commit feature enabled.
    So, assuming your database supports transactions, every operation will be commited automatically by the JDBC driver's code.
    To turn it off, you must call:
    connection.setAutoCommit( false );
    By doing so, you will need to call commit() in your code if you want to make those changes permanent.
    HTH

  • Format decimal values by using comma

    hi,
    Can anyone tell me how to format decimal value in JTextField by using comma. Since this JTextField is used to display amount,so i would like to put comma after three digits. That means it should look like this : 100,000,000.00. This JTextField is the total of another 9 JTextField values, that means when i edit values in another JTextField, the total value will be upated as well. I have used KeyEvent to do so , now i just have no idea how to apply comma in the total. Thanks for any help.
    Regards,
    marcalena

    Hmm....
    First off, this is not ideal... I would seriously consider updating your JRE...
    public class MyDecimalDocument extends javax.swing.text.PlainDocument
    ///init code
    public void insertString(int offset, String newString, javax.swing.text.AttributeSet set) throws javax.swing.text.BadLocationException
    //code to handle the inserts and restrict/apply various formatting....
    }Or check out [url http://onesearch.sun.com/search/developers/index.jsp?col=devforums&qp_name=Swing&qp=forum%3A57&qt=formatting+JTextField]this search for more...
    :)

  • Using and Troubleshooting the Dell Webcam and Dell Webcam Central Software

    Please read the information at...
    Using and Troubleshooting the Dell Webcam and Dell Webcam Central Software
    Locate the execute file (WebcamDell2.exe) buried in... 
    C:\Program Files (x86)\Dell Webcam\Dell Webcam Central
    Right clicked on it, then left click properties, then clicked on the compatibility tab, then changed compatibility from windows XP to Windows Vista SP 2 (the latest one they had).
    If your operating system was upgraded to Windows 7, did you install the drivers in the correct order? How to Download and Install Drivers in the Correct Order
    Shutdown the computer. Unplug the computer from the wall. Now remove the battery. Press and hold the power button for 30 seconds. Put the
    battery back in and start the computer. Did the webcam come back?
    If no, start, control panel, devices and printers. Click on add device. Is the webcam listed there?
    If you recently reinstalled the operating system, did you use the preferred method? Restoring Your Computer´s Software to the Factory Settings or Restoring Your Dell Computer to Original Factory Installation with Dell DataSafe Local Backup 2.0
    Please use Internet Explorer(32-bit) when navigating to  My Dell Downloads :: Login. Use the same email address and password you use here. Click on add system.
    ***Systems purchased befor April 1, 2010 might NOT register with Dell My Downloads***
    If system does NOT register after 5 minutes, then contact Dell Tech Support.
    If you have XP or a system that will not register, then try using this version of Dell Webcam Central. Once it's installed, then open it, click on the ? , check for  software update
    Open Dell Webcam Central. In the bottom right corner, make sure the webcam is on Capture mode.
    Rick

    Hello Rick,
    Thanks for trying to help.
    Here is the info as requested:-
    Host Name:                 DELLLAPTOP
    OS Name:                   Microsoft Windows 7 Home Premium
    OS Version:                6.1.7601 Service Pack 1 Build 7601
    OS Manufacturer:           Microsoft Corporation
    OS Configuration:          Standalone Workstation
    OS Build Type:             Multiprocessor Free
    Registered Owner:          Trevor
    Registered Organization:   Microsoft
    Product ID:                ?????
    Original Install Date:     07/07/2010, 11:46:05
    System Boot Time:          24/10/2011, 12:06:27
    System Manufacturer:       Dell Inc.
    System Model:              Inspiron 1570
    System Type:               x64-based PC
    Processor(s):              1 Processor(s) Installed.
                              [01]: Intel64 Family 6 Model 23 Stepping 10 GenuineIntel ~793 Mhz
    BIOS Version:              Dell Inc. A05, 23/03/2011
    Windows Directory:         C:\Windows
    System Directory:          C:\Windows\system32
    Boot Device:               \Device\HarddiskVolume2
    System Locale:             en-gb;English (United Kingdom)
    Input Locale:              en-gb;English (United Kingdom)
    Time Zone:                 (UTC) Dublin, Edinburgh, Lisbon, London
    Total Physical Memory:     2,937 MB
    Available Physical Memory: 1,399 MB
    Virtual Memory: Max Size:  5,872 MB
    Virtual Memory: Available: 4,244 MB
    Virtual Memory: In Use:    1,628 MB
    Page File Location(s):     C:\pagefile.sys
    Domain:                    WORKGROUP
    Logon Server:              \\DELLLAPTOP
    Hotfix(s):                 71 Hotfix(s) Installed.
                              [01]: 982861
                              [02]: KB971033
                              [03]: KB2305420
                              [04]: KB2393802
                              [05]: KB2425227
                              [06]: KB2475792
                              [07]: KB2476490
                              [08]: KB2478662
                              [09]: KB2479628
                              [10]: KB2479943
                              [11]: KB2484033
                              [12]: KB2485376
                              [13]: KB2487426
                              [14]: KB2488113
                              [15]: KB2491683
                              [16]: KB2492386
                              [17]: KB2503658
                              [18]: KB2503665
                              [19]: KB2505438
                              [20]: KB2506014
                              [21]: KB2506212
                              [22]: KB2506223
                              [23]: KB2506928
                              [24]: KB2507618
                              [25]: KB2507938
                              [26]: KB2508272
                              [27]: KB2508429
                              [28]: KB2509553
                              [29]: KB2511250
                              [30]: KB2511455
                              [31]: KB2515325
                              [32]: KB2518869
                              [33]: KB2522422
                              [34]: KB2524375
                              [35]: KB2525694
                              [36]: KB2529073
                              [37]: KB2530548
                              [38]: KB2532531
                              [39]: KB2533552
                              [40]: KB2533623
                              [41]: KB2534366
                              [42]: KB2536275
                              [43]: KB2536276
                              [44]: KB2539635
                              [45]: KB2541014
                              [46]: KB2544893
                              [47]: KB2545698
                              [48]: KB2547666
                              [49]: KB2552343
                              [50]: KB2555917
                              [51]: KB2556532
                              [52]: KB2559049
                              [53]: KB2560656
                              [54]: KB2562937
                              [55]: KB2563227
                              [56]: KB2563894
                              [57]: KB2564958
                              [58]: KB2567053
                              [59]: KB2567680
                              [60]: KB2570791
                              [61]: KB2570947
                              [62]: KB2572077
                              [63]: KB2579686
                              [64]: KB2586448
                              [65]: KB2607712
                              [66]: KB2616676
                              [67]: KB958488
                              [68]: KB976002
                              [69]: KB976902
                              [70]: KB976932
                              [71]: KB982018
    Network Card(s):           4 NIC(s) Installed.
                              [01]: Realtek PCIe GBE Family Controller
                                    Connection Name: Local Area Connection
                                    Status:          Media disconnected
                              [02]: Intel(R) WiFi Link 5100 AGN
                                    Connection Name: Wireless Network Connection
                                    DHCP Enabled:    Yes
                                    DHCP Server:     192.168.1.254
                                    IP address(es)
                                    [01]: ????
                                    [02]: ????
                              [03]: Microsoft Virtual WiFi Miniport Adapter
                                    Connection Name: Wireless Network Connection 2
                                    Status:          Media disconnected
                              [04]: Cisco Systems VPN Adapter for 64-bit Windows
                                    Connection Name: Local Area Connection 2
                                    Status:          Hardware not present
    Hope that this will help.
    Thanks again
    Regards
    Trevor

  • I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes W7/64 or a known hardware issue?

    I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes and W7/64 or a known hardware issue?
    Example-CD : "Tracy Chapman , Telling stories" is not able to import . I have more such negative cases. But in other cases it works fine and the sound is great.
    The firmware at the inbuild CD/DVD DS-6E2SH is the latest version.
    What can I do??

    hi b noir,
    I don't no about virtuel drives like you mententioned. In the mean time I have rebooted the XPS and run again the iTunes diagnostics. I think the back - chance in the registry was not ready to use.  Now there are another results. They are the same in case of a running CD or a not running CD. The difference in total is like before. It takes more time that iTunes reads the (bad) CD and at the there is no good sound. In both cases ( running or not running CD) iTunes diagnostics gives as a result :
    (the copie from ITunes shows the result of the not running CD from Tracy Chapman)
    Microsoft Windows 7 x64 Ultimate Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.3.1.55
    QuickTime 7.6.9
    FairPlay 1.11.17
    Apple Application Support 1.5.2
    iPod Updater-Bibliothek 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.0.25
    Apple Mobile Device Treiber 1.55.0.0
    Bonjour 2.0.5.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes-Seriennummer 00D7B2B00CD25750
    Aktueller Benutzer ist kein Administrator.
    Aktuelles Datum und Uhrzeit sind 2011-06-11 19:33:22.
    iTunes befindet sich nicht im abgesicherten Modus.
    WebKit Accelerated Compositing ist aktiviert.
    HDCP wird unterstützt.
    Core Media wird unterstützt.
    Info zu Video-Anzeige
    NVIDIA, NVIDIA GeForce GT 540M
    Intel Corporation, Intel(R) HD Graphics Family
    **** Info für externe Plug-Ins ****
    Keine externen Plug-Ins installiert.
    iPodService 10.3.1.55 (x64) arbeitet zurzeit.
    iTunesHelper 10.3.1.55 arbeitet zurzeit.
    Apple Mobile Device service 3.3.0.0 arbeitet zurzeit.
    **** CD/DVD-Laufwerkstests****
    LowerFilters: PxHlpa64 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    D: PLDS DVDRWBD DS-6E2SH, Rev CD11
    Audio-CD im Laufwerk
    11 Titel auf der CD gefunden, Spieldauer: 42:07 auf Audio-CD
    Titel 1, Startzeit: 00:02:00
    Titel 2, Startzeit: 03:59:47
    Titel 3, Startzeit: 07:19:27
    Titel 4, Startzeit: 11:31:30
    Titel 5, Startzeit: 15:31:50
    Titel 6, Startzeit: 20:07:50
    Titel 7, Startzeit: 24:27:15
    Titel 8, Startzeit: 27:49:10
    Titel 9, Startzeit: 32:41:25
    Titel 10, Startzeit: 35:29:65
    Titel 11, Startzeit: 38:38:00
    Audio-CD erfolgreich gelesen (Suche nach alter Firmware).
    Laufwerksgeschwindigkeit erfolgreich erkannt
    Die CDR-Geschwindigkeiten des Laufwerks sind:  4 10 16 24
    Die CDRW-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDR-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDRW-Geschwindigkeiten des Laufwerks sind:  4
    After starting the import it is going slower and slower. If it is helpful I can send you a soundfile with these distortions.
    best regards
    tcgerd

  • I bought the external DVD player/burner for my Macbook.  I tried using it with my Dell laptop but it will not work.  Is it not configured to work with anything but apple operating systems?

    I bought the external DVD player/burner for my Macbook.  I tried using it with my Dell laptop but it will not work.  Is it not configured to work with anything but apple operating systems?

    If you purchased the Apple USB SuperDrive, it will only work with select Apple devices. It won't work, for example, on my Late 2011 model that has a SuperDrive built-in, but it will work with an Air, Retina model, new 'drive-less' iMacs, etc.
    As far as I know, though, you can only hack the drive to work with some other Apple devices, but not with Windows PCs. Which is a shame as other, less expensive DVD/CD devices will work with just about any machine.
    Sorry,
    Clinton

Maybe you are looking for