KP06 cannot enter number with decimals in fxd. consumption

Hi!
When using transaction
KP06 Change Cost Element/Activity Input Planning with
Planner Profile SAP102,
layout 1-102 Std.layout Activity input ActInd/ActDep
we cannot enter number with decimals in field Fxd. consumption
Field name MEF
Data element MEFXXX
When we enter number with decimals like 12,45 it gets rounded in 13.
I have tried to change number format of this collumn from Not defined
to 0,00 but this is not helping. The rounding still takes place.
My question is where can I assign the unit (of measurement) for posting of quantities.
Regards,
Marina

The UOM is assosiated with Activity Type, and has a certain number of decimal points in the definition of UOM.  The other place to influence decimal points in the proper planning layout (column settings).

Similar Messages

  • Truncating a number with decimals

    I have created a field {@years} with the value -10 which was used as part of a formula. This part has worked fine. I also wanted to use {@years} as part of the report heading where -10 represented a time period. However, the number came up as -10.00. I used the formula Truncate(Abs({@years})) but only the Abs part seemed to work. The number came up as 10.00 instead of 10.
    Is there a problem with the formula I'm using or with Crystal Reports X or something else?
    Regards
    Jorge

    You said:
    "I tried to use Abs within your formula ToText(Abs({@years},0,"")) but it says that too many arguments have been given to the function."
    You've almost got it.  Check that your parens are correct.
    I haven't run this on my machine yet, but I see that
    the Abs function is not ended after @years...you have } but not
    ) after that.  See what I mean ?
    The Panda
    Here you go, I just ran it. First, here is the Abs function:
    abs(-2.0)
    Then I place the abs function inside the ToText function:
    ToText(abs(-2.0), 0, "")
    Notice how (-2.0 is closed off with a paren -  ")".
    Yours is not closed off and the compiler thinks you are throwing (...giving) too many parameters to the Abs function (...which you are   :).
    The Panda

  • Cannot Update Contingent Worker Number with API when no assignment exists

    Hi
    I am using hr_person_api.update_gb_person to update Contingent Worker Numbers (NPW_Number in PER_ALL_PEOPLE_F). This works fine apart from one exception. I get the following error: ORA-20001: You cannot enter a Contingent Worker number because you are not creating a Contingent Worker.
    The Contingent Worker failing has 4 records in PER_ALL_PEOPLE_F. The 3 date tracked (end dated) records update fine as expected....the new NPW_Number appears in PER_ALL_PEOPLE_F. However, the current active record does not update it returns the error mentioned. This appears to be because the person in question was terminated. (ie via Others and selecting End Placement in the screens).
    This person now shows as Ex-Agency Person Type. This process does not generate a record in PER_ALL_ASSIGNMENTS_F. I am wondering if this causes the API some confusion?
    I can go into the screen and manually change the Contingent Worker and it saves fine so I would expect the API to do the same. However it returns ORA-20001: You cannot enter a Contingent Worker number because you are not creating a Contingent Worker....for this single record only.
    Any suggestions as to what may be causing the API to return this and any workaround please?
    Many thanks in advance.

    Sometimes APIs are not behaving as Forms do.
    An ugly solution in this case could be reverse the termination (hr_ex_employee_api.reverse_terminate_employee), then update the Contingent Worker Number with your API, then terminate him/her again.

  • HT5552 I see mediocrity is still trademark of Apple. Cannot enter my Visa number to make a purchse. Mind you my old iTunes got corrupted (again); so info should still be there.

    I see mediocrity is still trademark of Apple. Cannot enter my Visa number to make a purchse. Mind you my old iTunes got corrupted (again); so info should still be there.

    Hi Aidan123,
    Welcome to the forum and thanks for your post!
    Sorry for the problems you've had getting set up on BT Mobile and getting your number transferred across.  You can send over your details and I'll help you with this from here.
    Click on my username and under the "about me" section of my profile you'll see the link to get in touch with us.
    Cheers,
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Attempting to install Adobe Acrobat 7 installer isn't recognizing my product serial number as a valid serial number.  I tried entering it with and without the dashes and neither methods work.  What should I do now?

    I bought a new computer and I'm attempting to install my older Adobe products that I still use, Adobe Acrobat 7 is the issue for now.  I followed the instructions on the Adobe site for installing the older apps, but the installer isn't recognizing my product serial number as a valid serial number.  I tried entering it with and without the dashes and neither methods work.  What should I do now?

    You cannot use your original files and serial number.  See the following for the files you need and the associated serial number(s)....
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3 -
    http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • HT1414 Hello, do you know what I can do when my Iphone is blocked with the apple appearing ? I cannot enter into the phone and I don't know what to do ? Thank you

    Hello,
    Do you know what I can do when my Iphone is blocked with the apple appearing ?
    I cannot enter into the phone and I don't know what to do ?
    Thank you for your help
    AMGSO

    Basics from the manual are restart,  reset, and restore.
    Have you tried these?

  • Cannot enter data into table with column named DATE

    I have a table as follows:
    CREATE TABLE PACKINGLINE (
    SNO VARCHAR2(13),
    "DATE" DATE DEFAULT SYSDATE,
    PRDORDNO VARCHAR2(12),
    NOW DATE DEFAULT SYSDATE,
    CONSTRAINT PACKINGLINE_PK PRIMARY KEY ("SNO", "DATE"));
    Note the "cleaverly" named DATE and NOW columns (yes, that is the name of the column... our company was bessed with a very clear SQL server DBA in the past)
    This SQL statement works:
    INSERT INTO PACKINGLINE (SNO, PRDORDNO) VALUES ('1000808972', '100080897');
    However when I try use SQL Developer as follows I cannot enter data:
    1. Open SQL Developer
    2. Click on "Tables" then on my table named PACKINGLINE
    3. Click the "Data" tab
    4. Click the [+] "Insert Row" Icon
    5. Enter the same data as above
    6. Click Commit
    7. The following error is shown in the log window and I cannot commit the data change.
    Error message
    ==================
    INSERT INTO "DBO"."PACKINGLINE" (SNO, PRDORDNO) VALUES ('1000808971', '100080897')
    One error saving changes to table "DBO"."PACKINGLINE":
    Row 5: ORA-06550: Row 1、Column 25:
    PL/SQL: ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: Row 1、Column 7:
    PL/SQL: SQL Statement ignored
    ==================
    I can copy and paste the above query into a normal SQL statement window and the data commits fine.

    Its so flaky there really must be something wrong Mr Adobe support person....
    If I load a PDF, do nothing, gently save it, reopen and then waiting for my trial dialogue to wake up so that I can click on continue trial... then save as extended reader blah.... then close. I have finally saved one that works!!!! but how difficult is that????
    WHAT IS WRONG ADOBE??

  • I have purchased Adobe Acrobat XI Pro.  I have a serial number (removed by host)  I purchased this product after the free test period had expired.  Now I cannot enter the serial number into the website because it says that the product is not

    I have purchased Adobe Acrobat XI Pro. I purchased it after the free test period had expired.  In the drop down menue on the website XI Pro is not listed so I cannot enter the serial number [removed by host].  So I cannot use the program.  John Steele.  [personal information removed by host]  Thank you

    @Bill, I removed your post, since its subject now contained the serial number which I could not remove.
    Bill’s original reply: I cannot edit your post. Please remove the S/N ASAP. You should never post S/Ns.
    I will add to Bill’s reply and add that you should not post your phone numbers or other personal information on the internet.

  • After updating with ios7, I cannot proceed because I cannot enter my password since it uses Greek letters but the keyboard available is Latin. How can I change the keyboard to Greek?

    After updating with ios7, I cannot proceed because I cannot enter my password since it uses Greek letters but the keyboard available is Latin. How can I change the keyboard to Greek?

    try tapping holding on the key that would be most similar to the letter you want to enter, that will bring up a menu of other characters similar to that character and maybe the greek letter will be included in that menu

  • RPD - Cannot obtain number of columns for the query result :Working with MS SQL 2012 schema

    Hi All,
    I have created my warehouse in MS SQL 2012.
    For management purpose, I have created different schemas in SQL database
    In RPD, Physical layer, when i view data > I get error as
    [nQSError:16002] Cannot obtain number of columns for the query result.
    [nQSError:16001] ODBC error state : S0002 code : 208 message: [Microsoft][ODBC SQL Server Driver][SQL Server] Invalid object name 'tbl'..
    [nQSError:16001] ODBC error state : S0002 code : 208 message: [Microsoft][ODBC SQL Server Driver][SQL Server] Statements could not be prepared..
    I have already browsed : OBIEE 11g Strange ODBC Driver Error with SQL Server : Total Business Intelligence ... did not help me
    please help!!!

    Hi All,
    After all R&D it is been found that Oracle business administrator( RPD) needs default dbo schema. It doesn't accept custom schema for pulling data.
    If anybody have other views please share.!!
    Thank you

  • Number with No decimals

    Hi:
    In my formula one number fields returns with decimals and comma, and I want to know how to get only the absoulte value. Your ideas appreciated.
    Regards,
    Dima
    Ex: 2,829.00
    I need 2829.

    Dak,
    That's a formatting issue. Just right click the field and choose Format Field.... Then on the number tab choose the -1123 format style.
    HTH,
    Jason

  • I cannot enter my iTouch as it is locked with a password.  However, I have forgotten the password!  Can anybody advise? The product is not supported by apple support.  Thank you.

    I cannot enter my iPod Touch as it is locked with a previously set password which I can't now remember.  Can anyone advise how I resolve this as my Ipod Touch is now unuseable Many thanks. 

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                          
    If recovery mode does not work try DFU mode.                         
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings         
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Customer information screen not showing when installing photoshop CS2 -- cannot enter serial number

    I own Adobe Premier CS2. When I run photoshop installation, customer information screen is not showing. So I cannot enter serial number. I have serial number.

    CS2: Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3 -
    http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • I receive an error message whenever I text recently entered contacts. It says the number is invalid. I have tried entering the number with the area code and without the area code.

    I receive an error message whenever I try to send text messages to new contacts. It says the number is invalid and to enter a 10 digit number. I have tried entering the phone number with the area code and without the area code. Any ideas?

    Same problem here. I've deleted the contact and had them text me, but when I try to text them back I get the same invalid number message! So frustrating! Please help!

  • Cannot enter boot recovery with 0 or F8

    Hi all,
    I have a Toshiba Satellite S855D and I cannot enter the boot recovery when holding either 0 or F8 during bootup. There's nothing wrong with my computer currently, but it's important I be able to access this in case Windows goes belly up. I'm very concerned that everything suggested in the user manual does not work.
    Does anyone have a solution to this or is it impossible to enter the boot recovery menu?
    Solved!
    Go to Solution.

    More info...
    All of the Windows 7 image-creation and restore tools are available in Windows 8.
       Control Panel > Windows 7 File Recovery
    You can make a shortcut to that utility (sdclt.exe).
    You'll want a bootable repair disc too. It's another way to reach the recovery environment if Windows does not boot.
    Or make one this way for choice of a flash drive (and an OEM recovery image).
       Control Panel > Recovery > Create a recovery drive
    And there's still more, if you like...
    -Jerry

Maybe you are looking for