More than three decimals

Hi all,
   I am on 3.5.
   I have created an attribute of a master data characteristic (0MATERIAL) that is is a key figure.  This attribute will hold very small values (.000016, FREX).  I created the infoobject with six decimal places.  When I load the master data, this attribute will be filled via a routine in the transfer rules.  However, when I load the data, and look in SE16 at the p table, I see the infoobject, but it has defaulted to '.000' in the table. 
   Why?
   I want to see all six - why can't I?  Further, I don't believe that the object is holding the .000016 value that I am looking for.
   Thanks.
Dave

If this is currency field, Check the setting:
SPRO -> SAP Netweaver -> General Settings -> Currencies -> Set decimal places for currencies
Edited by: p008754 on Feb 17, 2009 12:40 PM

Similar Messages

  • Can't import videos or more than three songs at a time

    I updated and among other problems with this update, I can't put videos in itunes anymore. I converted a DVD with videora to put in itunes, and itunes doesn't even try to import the video like it used to. Same thing with bringing in more than three songs at a time. I tried the file>add file and I tried the click and drag method, neither of which worked.

    Thank you so much Tamara, I wonder why the folks at help desk for iPhone are not a ware of this answer.. You been very helpful I really appreciated. Happy Holidays to all!

  • Query in SAP don't shows more than 2 decimals

    Hi!
    I'm trying to create a query that shows the Currency for each operation by day, in this case are the payments, the operations. But the problem is that my query get all the payments when the paymeny is by local currency and foreign currency, i mean when is dollars and when is pesos, so even when the payments are in pesos whe need to get the currency of the dollar at these day, so my query get the currency from the table of the currencies when is in pesos and when is in dollars it get the currency from the payments table, so this is my query.
    Reporte de Pagos
    /SELECT FROM OINV T1/
    DECLARE @FECHA AS DATETIME
    /* WHERE */
    SET @FECHA = /* T1.DocDate */ [%0]
    /SELECT FROM OINV T2/
    DECLARE @FECHA2 AS DATETIME
    /* WHERE */
    SET @FECHA2 = /* T2.DocDate */ [%1]
    SELECT DISTINCT T0.[DocNum],T1.[DocEntry],T2.[NumAtCard],T0.[CheckAcct],T0.[DocType],T0.[Canceled],T0.[CardName],T0.[DocDate],
    CASE
    WHEN T0.[DocCurr] = 'USD' THEN T0.[DocTotalFC]
    WHEN T0.[DocCurr] = 'MXP' THEN T0.[DocTotal]
    END AS 'Total'
    CASE
    WHEN T0.[DocRate] = 0 THEN (SELECT CAST(T3.[Rate] AS float) FROM ORTT T3 WHERE T3.[RateDate] = T0.[DocDate])
    WHEN T0.[DocRate] <> 0 THEN CAST(T0.[DocRate] AS float)
    END AS 'T.C.'
    ,T0.[DocCurr],
    (SELECT T4.[SlpName] FROM  OSLP T4 WHERE T4.[SlpCode] = T2.[SlpCode]) AS 'Vendedor'
    FROM ORCT T0 
    INNER JOIN RCT2 T1 ON T0.DocNum = T1.DocNum
    INNER JOIN OINV T2 ON T1.[DocEntry] = T2.[DocEntry]
    WHERE T0.[DocDate] >= @FECHA
    AND T0.[DocDate] <= @FECHA2
    The real problem is that with this, the query just bring me 2 decimals in the currency and i need at least 4 decimal, i don't know what happen because if i run the query in the SQL Management Studio the decimals are correct it brings me more than 4 decimals, but when i run the same query inside SAP Query Manager it brings me just 2 decimals.
    How can i fix that?
    Hope you help me.
    Thanks in advance
    Regards!
    Xavier

    Xavier,
    This is because the decimal place setting in General Settings > Display tab is 2 decimals.  Similar question has been raised a few times on this Forum and I will send you the link when I find it.
    In the meanwhile the hint is to use CAST function.
    Link for the thread  Rounding in Query Generator
    Suda

  • DVD Burn more than three hours

    I have a video that lasts more than three hours and I want to burn to DVD. How I can compress it but I lose quality among all video on the DVD?

    Hi
    DL-DVDs - can hold up to 4 hours
    Using Toast™ and a SL-DVD can hold about 10 hours - BUT at a quality so bad that VHS-tapes recorded in EP-mode (x4) Will look excellent in comparision.
    Yours Bengt W

  • How can I enter "Flate rates for travel costs" with more than 2 decimals?

    Hi expert,
    I want to enter flat rates for travel costs in table T706F.
    I have a figure with more than 2 decimals (0,066), but I cannot save it, because only 2 decimals are allowed for EUR.
    I don't want to change the decimals for this currency.
    I found OSS note 446116 which is release independent. It is a note of 30.10.2001.
    It suggests to create a new currency e.g. EUR3 and enter translation ratio's and exchange rates.
    This seems pretty drastic.
    Do you know if there is another way to handle this issue?
    Thank you.
    Kind regards,
    Linda Verding

    Hello Christian,
    I have checked it with consultants from SAP Brussels.
    They confirm that OSS note 446116 can be used to create flat rates for travel costs with more than 2 decimals.
    I will create a new currency (EUR3) with the description "for travel expenses only".
    Kind regards,
    Linda Verding

  • Can't concatonate more than three items in a portal select statement ?

    I'm running a Report from SQL query
    as Far as I can tell you can't do;
    select 'blah1'||name||'blah3'||'blah3'
    from scott.emp
    as soon as you put in a 4th item it fails.
    It also fails using select concat (,)
    I'm trying to run a report which selects a web address stored in a database table ie. http://www.yahoo.com and wrap it in html tags so it will appear as a link.
    I've got to do it with more than three items because the only way to display the < in <ahref is to quote it seperately.
    ie
    '< '||'ahref='||ADDRESS FROM DATABASE||etc.etc.
    anyone any ideas?
    should i do it another way?

    Let me explain a bit further.
    If I want to display;
    www.yahoo.com as a link I need add the html tags
    Yahoo
    www.yahoo.com is an entry in a database.
    I want to select the entry www.yahoo.com from the database and concatonate it with the html tags.
    ideally;
    select 'Visit
    This does not work
    To concatonate characters like > in a select statement within portal you need to concat. seperately;
    select '< '||'a href="'||ADDRESS FROM DATABASE||'"> '||'Visit< '||'/a> '
    This does not work as you can't concat more than three items.
    Could I write a trigger to add in the html tags to the data stored in the database, when data is entered via a portal form?
    Again my problem is In need to add text to the start and end of the data being stored ie.
    user enters www.yahoo.com in a form
    a trigger or two converts that into;
    Visit

  • Drill down using more than three items

    Is it possible to supply more than three parameters to the column link?
    I am making a drill down from summary report to the detail report, and I need to pass five parameters to the detail report. The list of items under
    Application Builder > Application X > Page Y > Report Attributes > Column Attributes > Link
    is limited to three items. Is there a way around this limitation?
    Thanks,
    Tim

    You need to change you link type from <b>Page In This Application</b> to <b>URL</b>. You'll then need to encode each parameter name and it's value into the last two elements of the f?p format. You can use a two or three parameter URL as an example and just modify from there. <br>
    <br>
    For example (from one of my applications):<br>
    <br>
    f?p=101:13:::NO::P13_NAME,P13_SEQ_ID:Lee%2C396<br>
    <br>
    The relevant part is the last colon (or the fields on either side of it more specifically). The first set of fields <b>P13_NAME,P13_SEQ_ID</b> are my page item names on the destination page (where we're going) and the last two <b>Lee%2C396</b> are their values from the source page (where we're coming from). The %2C is an encoded comma. In order to get this in your output, you want to set your URL to something like:<br>
    <br>
    f?p=101:13:::NO::P13_ITEM1,P13_ITEM2:&P12_ITEM1.,&P12_ITEM2.<br>
    <br>
    I'm doing this from memory since I can't find a good example for you, but I think I'm pretty close in the syntax.<br>
    <br>
    Hope it helps.<br>
    <br>

  • History for a person more than three months

    Hi 
    Any body can reply how can I found a history of a certain person for more than three months.

    This is a user to user help forum. You aren't talking to Apple here. We are all users.
    Contact Apple Support - http://www.apple.com/contact/

  • I can't restore more than three closed wndows.

    I can't restore more than three closed windows. After I right click on the Firefox icon on the toolbar at the bottom of my screen and select close all windows, the next time that I restart Firefox, I can only restore three windows, instead of all of them. This happens whether it is set to automatically restore the previous session on startup or I do so manually. I have read that the browser.sessionstore.max_windows_undo is set to three by default, but don't see anywhere to change that. This problem has only been since the most recent automatic update of Firefox. I would tell you what version, but I can't even find that. I think it may be 29. I have also read that if you close the windows by clicking on the Firefox icon in the upper left corner of the page and select exit that this problem does not occur, but that option doesn't exist in the current version. I am using Firefox browser on Windows 7 Professional operating system. If you need more information or I am missing something, please let me know. If this is a bug, then please let me know when a fix is expected or provide a link to instructions on how to return to the previous version of Firefox that I was happy with.

    Hey, in order to change your Firefox Configuration please do the following steps :
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''' to continue to the about:config page.
    # Then you can change or add browser.sessionstore.max_windows_undo and set the value.

  • Support for file extensions with more than three characters when saving - I want my FLAC!

    Why does the Wave Editor still drop characters from filenames with more than three character extensions when you save a file? But since -opening- a FLAC file with an extension of ".flac" doesn't get chopped to ".fla", why does Audition still chop off the extra character when -saving-?
    It gets old quickly when you have to save, close and reopen files in order to get Audition's Multitrack editor to play nice and be able to find files when you reopen the Session.
    Given that the FLAC filter is open source, I may just have to modify the code and recompile it to force a save to ".fla"... But of course, ".fla" is a Flash file extension, which I also use, so that is a crude hack for me.

    Hi bro...
    use in BYTE mode in place of in TEXT mode. and at the end of each line give some special charactor so as to distinguish between lines.This is effected  by unicode check too
    regards
    Edited by: Mohit Kumar on Feb 9, 2009 9:44 AM

  • WiSM Issue - More than three APs working at the power above threshold

    According to the RRM document: http://www.cisco.com/en/US/tech/tk722/tk809/technologies_tech_note09186a008072c759.shtml , for each AP, the 3rd loudest AP should be heard at the power equal or lower than the threshold (default -65dbm or -70dbm according to different codes). But in our enviroment, I can see it is not true. Many APs have more than three neighbours heard at above threshold. Is it true in your enviroment as well?
    Thanks!
    Zhenning

    It's the way I have deployed the network. When the number of access point increases (though in diff channel) chances of interference increases leading to decreased performance. So Adjust the power settings and the number of access points accordingly.

  • Returning not more than three rows???

    Hi guys,
    can somebody told me how I can tell a query to not return more than three
    rows??? Can somebody told me that?
    This is my query:
    select distinct a.PRIO from POI.ASSETTYPE a,POI.ASSETREIHE ab
    where ab.STYPID=a.STYPID
    and ab.MATCH='fonds'
    and ab.DATUM='31.05.2002'
    order by a.PRIO
    I want that the query do not give back more than three rows.
    Thanxx
    Schoeib

    Hi Schoeib,
    just add a 'WHERE ROWNUM < 4' to your statement!
    Hth, regards
    Bernhard

  • Deploying more Than three iPads at a time

    Has anyone found a way around registering more than three iPads a day on a computer? Very frustrating to have to move from one computer to another to get multiples registered.

    I have not used it with more than 30 devices at once, however, based on the linked Apple document, I take it to mean that only 30 can be connected at once. Then you could potentially hook up 30 more, and then 30 more, if you like. But only 30 USB devices can be connected at once.
    http://images.apple.com/iphone/business/docs/iOS_Apple_Configurator_Mar12.pdf
    Page 2: "...up to 30 USB-connected devices at the same time."

  • More than three TVS

    I just signed up for FIOS TV not installed yet. Will FIOS TV support more than three TVs?
    I have cable TV now and have 4 analog TVs plus 1 HD with coax cable to each TV. Normally use just three TVs.
    Can additional digitial adapters be rented when family is in town? What would I need to do?
    Thanks ahead of time.

    Yes, FiOS supports more than 3 TVs.  I originally had 2 HDTV's and 2 Ananlog TV's hooked up along with 20/20 Mbps Internet service.  I cut back on the FiOS internet speed to become a Verizon Triple Freedom customer (land line, internet, ExtremeHD TV programming).  Ask the tech when he comes out to intall in reference to the other part of your question.. 

  • Can we give the more than 2 decimals for key figure

    Hi,
    can we give the more than 2 decimals for key figure while entering the manuall planning.
    Ex:There is keyfigure called 0DEBIT which is having values as 1000.00 USD, 137688.00 USD.which are displaying bydefault whenever we entered the values while planing or File.
    what Customer is asking us 0DEBIT keyfigure values should be display 1000.0000 USD, 137688.0000 USD. ( added two more decimals for keyfigure value).
    Can we maintained decimals more than two.........?
    Thanks,
    Ven
    Edited by: vanarasi venkat on Apr 13, 2009 4:35 AM

    Hi,
    Though you can specify the no of decimal places for each keyfigure in the 2nd screen of layout builder but say if you have entered scaling factor as 1 and decimal places as 4 and user enters value as 15.2546, then in the cube it will be stored as 15.25 because physically the keyfigure can store values only upto two decimal places, so it will round up the figure to two decimal places. But, if you specify the scaling factor as 2 and decimal places as 4 than value 15.2546 will be stored in the cube as 1525.46.
    If above explanation doesn't help you i finding out the solution for your requirement than you have to either change the number of decimal places in the keyfigure or tell user that technically it's not possible in BPS.
    Regards,
    Deepti

Maybe you are looking for