UOM EACH not to allow decimal values

Hi
I am back with the same issue. The Unit of measure EACH should not allow decimal values. I changed the decimal values  in CUNI and it doesnot allow decimal values in PO. However when creating PR or doing Goods receipt (561 movement type) it doesnot stop decimal values. But anywhere it should not allow decimal values. Please help......

The decimal notation is maintained as you mentioned already.
The reason it triggers error in PO alone is,  a system error message is defined but in PR creation or GR, such message is not maintained.

Similar Messages

  • Editable alv not update with decimal values

    Friends.
    i have editable alv, there is a editable field is with 3 decimal places.
    my problem is when i changed there value as  15 its take 1.5 and if i change as 150 its take 15.
    can you please help me to solve my problem?
    thanks in advance!

    Hi Friend,
    This Problem will be solved in below method.
    Define Your filed type in currency.
    Eg. vnumber TYPE CE1SAS1-KWABLK (kwablk is a currency field).
    In FIELDCATALOG add currency.
    Eg:
    lw_fcat-fieldname = 'VNUMBER'.
    lw_fcat-edit = 'X'.
    lw_fcat-datatype = 'CURR'.

  • ALV removal of decimal values

    Hi All,
    I want to remove the decimal values of report output based on certain condition I am using code like this
    type-pools: slis.
    DATA: begin of itab6 occurs 0,
    chk type c,
    a type p decimals 2,
    b type p decimals 2,
    c type c,
    end of itab6.
    data: ls_fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    wa_layout TYPE slis_layout_alv.
    itab6-a = '1.12'.
    itab6-b = '2.25'.
    itab6-c = '+'.
    append itab6.
    append itab6.
    append itab6.
    append itab6.
    ls_fieldcat-fieldname = 'A'.
    ls_fieldcat-seltext_m = 'A'.
    append ls_fieldcat.
    ls_fieldcat-fieldname = 'B'.
    ls_fieldcat-seltext_m = 'B'.
    ls_fieldcat-decimals_out = 0.  "this ll do
    append ls_fieldcat.
    ls_fieldcat-fieldname = 'C'.
    ls_fieldcat-seltext_m = 'C'.
    append ls_fieldcat.
    wa_layout-box_tabname = 'ITAB6'.
    wa_layout-box_fieldname = 'CHK'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = sy-repid
    it_fieldcat = ls_fieldcat[]
    IS_LAYOUT = wa_layout
    TABLES
    t_outtab = itab6[].
    But still it is not removing the decimal value.
    What could be the reason?
    Regards
    Sagar.

    Thanks Florian,
    Issue resolve
    Regards
    Sagar

  • Decimal values are not flowing to Excise Invoice created in J1IIN

    Dear Sap Gurus,
    Please help me with the problem. After creation of invoice in VF01 when i am creaing outgoing excise invoice decimal values for BED, ECS and SEC. ECess( AT1) are not coming instead values are rounded of to nearest whole number.
    for ex.
    if invoice values are as below
    BED= 16
    ECS= 3.2
    HSC= 1.6
    when excise iinvoice is created values are changes as below
    BED= 16
    ECS= 3
    HSC= 2
    please give propeer solution
    reg.
    suresh

    Check in Logistics - General -> Tax on Goods Movements -> India -> Basic Settings -> Maintain Company Code Settings. 
    Also ensure that in V/06, for the respective excise condition types, rounding is not activated.
    thanks
    G. Lakshmipathi

  • Decimal values not showing in PO output

    In PO qty is created with decimal values ( 30.500 M)
    when print  the output it is coming as 31 m ( values is getting rounded off)
    PO is created with ref to sales order , where as qty is  EA
    in SO . ( Qty EA is not affecting PO / PR)
    Please advise on the PO configuration part to get the PO output with decimal values.
    Thanks & regards
    Ray

    if PO has the correct quantity with decimal places, then check the sapscript form.
    Muralidhar

  • Seeing decimal values in TOAD, but not in SQL Developer

    I'm writing on behalf of a co-worker. He's using SQL Developer to look at some records in a database, but in one column he sees zeroes instead of the correct decimal values (the values are between 0 and 1).
    However, the developer he's working with is using TOAD and sees the correct decimal values in the column.
    Any idea as to how to get the decimal values to appear correctly within SQL Developer?

    The database version is 10g, the version supported by TOAD is 9.
    Hi ,
    1/I have not seen this reported please give a create
    table statement and some test data to insert to
    reproduce the problem.. Please give versions of
    SQLDeveloper and the Oracle database - out current
    production release of SQLDeveloper is 1.5.1(.54.40)
    2.If you can convert the number to a string at the
    database side say with TO_CHAR you should see the
    string representation of the number in SQLDeveloper.
    This would work if you are using a select via the
    worksheet or a view on the table with the number if
    you want to see it in a views data tab.
    -Turloch

  • LetterSpacing not accepting decimal values

    Im trying to give an specific text format to my textFields. The problem here is that when I set the property letterSpacing with a decimal value I get a rounded space result... 1.4 becomes 1 and 1.5 returns a 2 px spacing. It is very fustrating.
    Adobe documentation:
    "A number representing the amount of space that is uniformly distributed between all characters.       The value specifies the number of pixels that are added to the advance after each character.       The default value is null, which means that 0 pixels of letter spacing is used.      You can use decimal values such as 1.75."
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextFormat.h tml?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6#letterSpacing
    This code will show you my problem, you will noticed the absence of inbetween values from round spacing values.
    Paste inside .fla file
    var stringtest:String="Hello World";
    var numJump:Number=20;
    var spacingVal:Number=0;
    var increment:Number=0.2;
    var textFormat:TextFormat=new TextFormat();
    textFormat.font="Arial";
    textFormat.size=12;
    textFormat.letterSpacing=spacingVal;
    for(var i:int=0;i<25;i++){
        var testText:TextField=new TextField();
        textFormat.letterSpacing=spacingVal;
        testText.defaultTextFormat=textFormat
        testText.width=stage.stageWidth;
        testText.text=stringtest+" "+textFormat.letterSpacing;
        testText.y=testText.textHeight*i;
        stage.addChild(testText);
        spacingVal+=increment;
        spacingVal=(Math.round(spacingVal*10))/10;
    Thanks in advance.

    you must embed your font is use fractional letterspacing.  add Arial font to your library and assign it class=ArialF.  you can then use:
    import flash.text.Font;
    var stringtest:String="Hello World";
    var numJump:Number=20;
    var spacingVal:Number=0;
    var increment:Number=0.2;
    var textFormat:TextFormat=new TextFormat();
    var tf:Font = new ArialF();
    textFormat.font=tf.fontName;
    textFormat.size=12;
    textFormat.letterSpacing=spacingVal;
    for (var i:int=0; i<25; i++) {
        var testText:TextField=new TextField();
        textFormat.letterSpacing=spacingVal;
        testText.defaultTextFormat=textFormat;
        testText.width=stage.stageWidth;
        testText.embedFonts = true;
        testText.text=stringtest+" "+textFormat.letterSpacing;
        testText.y=testText.textHeight*i;
        stage.addChild(testText);
        spacingVal+=increment;
        spacingVal=(Math.round(spacingVal*10))/10;

  • Negative values should not be allowed for fields

    Hello Gurus,
    I have a table and right now the feilds f1 and f2 are allowing negative values to be stored as they are of type char4, now that i dont want those feilds to allow negative values. i am using these feilds in the feild catalog in the ALV as a result when the coloumn is editable, the user may enter negative values, which i dont wnat to allow it now. what will be hte best possible solution.
    thanks in advance

    Hello,
    You can set this in the domain itself.
    Please check this SAP documentation:
    Output with sign: If fields that refer to this domain can contain negative values, the Sign flag must be set. When the field contents are output to the screen, the first output location is reserved for a sign. If the flag is not set but the field contains negative values, problems could occur when outputting to the screen. Entries can only made in this field for data types DEC, FLTP, QUAN and CURR.
    BR,
    SUhas

  • Setting an Edit pattern does not allow inputting values

    I'm using a custom field (Phone Number North America) in a designer form. My users want to be able to edit and display value in (999) 999-9999 format. So I set the Display and Edit formats to text{'('999')' 999-9999}. Setting this pattern only displays the value in this format, but when I go to edit the field for the first time (when the field is blank), it allows inputting without any format. And when I want to edit an inputted value in the field, it does not even allow to change anything. It seems to be readonly/locked.
    What I want to be able to do is that the field must allow the user to input values in the format that I set in the Edit pattern box. This must work even if the field has a phone number value already in it.
    Any help will be highly appreciated.
    FYI...My Adobe LiveCycle Designer ES2 version is:  9.0.0.2.20101008.1.734229 Cipher: 128-bit.
    Thanks in advance...

    Hi Mahabub,
    Keep the below script on exit event of the Phone Number dnt select any pattern for the field.
    // Regular Expression for the phone number (999) 999-9999
    var vPattern = /^(\(\d{3}\) \d{3}-\d{4})$/;
    if (vPattern.test(this.rawValue))
    app.alert("Matched");
    else
    app.alert("not matched")
    This gives you Error message if the entered value is not matched with the pattern.
    Please let me know if you need any more info.
    Vjay

  • Crystal Report V9 do not display decimal value HELP!

    <p>I have a field in Informix data type is Decimal(6,2)</p><p>when i used the field in the report, the decimal is not displayed</p><p>example: field1 = 305.50, in crystal report it only displayed 305.00, already setup the formatting. any possible solution?, please help!</p>

    <p>have check all the options in my pc and crystal report, all seems to be ok, and have tried displaying an informix field decimal(5,2), and it displays ok (154.23) in my crystal report, but when trying to display the field decimal(6,2) crystal report display decimal up to 99.99, but when it reaches 100+, it will not display the decimal, very weird, help.</p><p>have tried the formula as well but still doesnt work.</p><p>any other possible solutions, pls help, thanks.</p>

  • How do I convert an alpha character from a text string to its decimal value

    I am trying to find out the actual decimal value of a character in a string. So far the code below is as far as I got. I am able to get what I guess is a byte value.
    This is for a school assignment:
    The idea behind what I am trying to do is to design a hash function to store dictionary words into a bucket array hash table, without using the existing Hashtable.class
    so far this is what I can come up with to get some kind of value for each character in the string, however, what I am trying to get is the decimal value for each character.
    public static void main(String args[]){
         String word = "abcdefghijklmnopqrstuvwxyz";
         for (int i=0 ; i < word.length(); i++){
         System.out.print((word.substring(i,i+1)));
         System.out.print("\t : "+((word.substring(i,i+1))).getBytes());
    Thankyou for any replies.

    I'm not sure I completly understand your goal- what you mean by "decimal value", but, if you simply want to find the byte value of each character in a String, you would probably be better off using getBytes() in a way like this,
    byte [] bytes = string.getBytes();
    Then, if you need to map that to a charcter, you could use a for loop like
    for (int x = 0; x < bytes.length; x++) {
    table.put((char)bytes[x], bytes[x]);
    which assummes this bucket class of yours allows primitive data types like so (in Hashtable or HashMap, you would have to use a wrapper Object). I guess, my point reduces to, don't use substring and string search methods (like indexOf()), unless you have to because they are more expensive then just maping the array of bytes and chars, which seems to be what you are interested in doing.

  • Decimal values for EA in MIGO

    Dear Experts
    Recently we have upgraded to SAP AFS 6.5 from SAP AFS 5.0. In previous version we could GR (using MIGO) decimal values for unit of measure EA. Now when we are trying to perform goods receipt decimal values it is automatically rounding off to an integer.
    After go live we got an issue which is similar like this and it was corrected after consulting SAP OSS. check the this; Rounding off in MIGO- Error
    I have checked settings in CUNI in previous and current versions. There is no change. Decimal places are zero. Please suggest if you have any idea on this.
    Regards
    Jeewana

    Hi,
       Please check whether all the correction instructions mentioned in the note:  1971912 
    are implemented correctly. If its already maintained correctly, then you may directly raise an OSS ticket to SAP.
       Also refer the similar notes: 1893043 - Decimal places not allowed in MIGO for movement type 561
    1932640 - Incorrect rounding in asset PO with no material.
    Regards,
    AKPT

  • Sum of values exceeds the allowed maximum value per service line

    Hi Guys,
      While creating PO wrt to contract : I get error msg : Sum of values exceeds the allowed maximum value per service line Message no. SE402. Can I change it to warning or should I bifurcate one line into two , as the value is very big. Totalling to 11 characters excluding decimal. Its like xxx,xxx,xxx.xx inr.
    Regards,
    SK

    Hi,
       For service line items, the maximum allowed limit is 999999999.99 (total 11 digits including 2 decimals) as per design. If you want more than that, you may split the service in to two line items.
       The note:   1810281 - System does not issue error message SE 402  explains the logic.
    Regards,
    AKPT

  • CS4 angry with decimal values

    Hi,
    I can't find the answer to my problem :
    I'm on Indesign CS4 (french) and Windows XP. Constantly, without no (obvious) reason, the fields x, y, height and width (top left) suddenly doesn't take decimal values anymore.
    It drives me crazy!
    I work for a printer, I daily use Indesign so it's important.
    Apparently, the problem disappear when i restart the soft.
    I tried with point and decimal point,
    I tried to change one number when the value is already a decimal,
    I checked my keyboard (AZERTY),
    but nothing at all….
    Each time, the soft display "Valeur numerique incorrect" (Incorrect numeric value).
    Did someone already had this problem ? An even more important, does anyone have a solution?
    Hope you can help.
    THX

    Are you using the correct separator for the decimal (comma vs dot -- not sure which would be right for you), and are the files all French in origin (not sure tht matters).
    Check the Language settings in Windows under regional settings, and diable the keyboard shortcut to switch languages if you have multiple languages installed. That screws things up all the time becasue the OS interprests one of the common ID shorcuts as a call to switch languages.
    You might also want to trash your prefs. See Replace Your Preferences

  • Waht to restrict user to enter decimal value?

    Hello Experts,
    I want to user to restrict to enter the decimal value in text field on forms.
    Please help me out. i do not want the round fucntion but want to indicate the user.
    Thanks
    Yash

    Hello,
    Use a format mask that does not allow decimal parts, like 999990
    Francois

Maybe you are looking for

  • Problem w/resolutions on External Display after 10.5.7 update! Fixed yet?!

    After installing 10.5.7, like half of the entire planets Mac users I had problems with the resolution my MacBook displayed when connecting to my TV whether in Mirror or Extended desktop. I promptly reverted to 10.5.6 (thank the lord they recommend a

  • HP C7280 Solution Center won't work after upgrading to Windows 7

    I was running Vista and connected to the C7280 both wired and wireless. Last month or so has been wireless with no issues. I upgraded to Windows 7, reinstalled the driver I had, and now when I try to scan I get an error that says "An unsupported oper

  • Simple problem with resolution

    Hi All, I followed a tutorial which told me to put the flash template size to 600 square pixels. But now that I have got the hang of it, I want to increase the resolution of the whole thing, without having to change everything seperately. Basically m

  • Part nunbers for smf Metro cables

    Does anyone know the cisco part number for the small jumper cables used to connect the Metro 1500 WCM cards together? They are anywhere from 6 inches to a foot long, mini-SC connectors on both ends. thanks. - Ted

  • Trying to install update to iphoto

    I am trying to install the latest iphoto update and when I try to install it it comes up saying that it can't be verified. I tried downloading it again but the same thing happened. Anyone know what to do?