BO XI R2 - decimal numbers are truncated

Hi all,
When we create query in webitelligence the measure "item price" the decimal numbers are truncated/not shown. The right number is 23.123,55 but we get 23.123,00 ?
Configuration:
WIN 2003 server,
BOE XI r2 => IIS,
SAP int. kit XI r2
Thank you for reply!
Gregor

Hi Roman,
you can download the supported platforms list here [http://service.sap.com/bosap-support]. Just navigate to Documentation->Supported Platforms.
The work-around with the special system user may be used if you have truncation problems on your BOBJ server after installing the integration Kit for SAP. Please keep in mind that this is a work-around when using the integration Kit for SAP and not a recommendation for every installation. As far as I know this problem will be fixed in one of the future fix packs (at least for XI 3.x).
Regards,
Stratos

Similar Messages

  • I would like to read a text file in which the decimal numbers are using dots instead of commas. Is there a way of converting this in labVIEW, or how can I get the program to enterpret the figures in the correct way?

    The program doest enterpret my figures from the text file in the correct way since the numbers contain dots instead of commas. Is there a way to fix this in labVIEW, or do I have to change the files before reading them in the program? Thanks beforehend!

    You must go in the labview option menu, you can select 'use the local
    separator' in the front side submenu (LV6i).
    If you use the "From Exponential/Fract/Eng" vi, you are able to select this
    opton (with a boolean) without changing the labview parameters.
    (sorry for my english)
    Lange Jerome
    FRANCE
    "Nina" a ecrit dans le message news:
    [email protected]..
    > I would like to read a text file in which the decimal numbers are
    > using dots instead of commas. Is there a way of converting this in
    > labVIEW, or how can I get the program to enterpret the figures in the
    > correct way?
    >
    > The program doest enterpret my figures from the text file in the
    > correct way since the numbers contain dots instea
    d of commas. Is there
    > a way to fix this in labVIEW, or do I have to change the files before
    > reading them in the program? Thanks beforehend!

  • HS - link between ORACE and MS SQL - decimal numbers not transfered

    Hello folks,
    I have defined a HS connection using Windows ODBC Data Source Administrator between MS SQL database and Oracle.
    When I query data from ORACLE database from MS SQL table using HS database link, a returned numbers which should be decimal are truncated and returned as whole numbers!
    Any idea what settings is missing, or incorrect?
    Many thanks,
    Tomas
    initHELIOSSRO.ora
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = HELIOSSRO
    HS_LANGUAGE="CZECH_CZECH REPUBLIC.AL32UTF8"
    # HS_FDS_TRACE_LEVEL
    # Specifies whether error tracing is turned on or off for gateway connectivity.
    # The following values are valid:
    #   OFF disables the tracing of error messages.
    #   ON enables the tracing of error messages that occur when you encounter problems. The results are written by default to a gateway log file in LOG directory where the gateway is installed.
    #   DEBUG enables the tracing of detailed error messages that can be used for debugging.
    HS_FDS_TRACE_LEVEL= ON
    HS_KEEP_REMOTE_COLUMN_SIZE=ALL
    HS_NLS_NCHAR=UCS2
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>

    Hi Tomas,
         The usual reason that you loose the decimal part of the numbers is a difference between the territory settings between the source and target database.
    You have set -
    HS_LANGUAGE="CZECH_CZECH REPUBLIC.AL32UTF8"
    and this expects the decimal separator to be a comma - , - but if the source is using a full stop - . - then this will cause the decimal part to be lost.
    You should set the territory part of HS_LANGUAGE to match the setting used by the source database.
    If it uses a full stop then set it to something like -
    HS_LANGUAGE="AMERICAN_AMERICA.AL32UTF8"
    and try the select again from a new SQLPLUS session.
    If you have access to My Oracle Support have a look at these notes -
    NLS Guide for Generic Connectivity and Gateways (Doc ID 230239.1)
    Gateway and Decimal Digits (Doc ID 1453148.1)
    Regards,
    Mike

  • BI Publisher Report does not display decimal numbers

    Hi,
    I have created a one page BI Publisher Report. I generally take the .xdm and .xdoz files and send it to the client which they upload on their server. The report has been coming up fine until recently there was a glitch on the Client Server. Now the report does not show a a section which has decimal numbers. I can see it perfectly on my machine. I am extremely frustrated to search for a solution and client is not very helpful in providing the information what went wrong or what was the fix on their server. Any help is greatly appreciated.
    Thanks,
    DRL

    user8824622
    If i am understanding your issue right i guess i have faced the same one while ago.
    The solution for this one is, if you are on the latest patch or update, i am on July update
    Go to
    Administration--> manage Bi Publisher under Bi Publisher --> under run time configuration --> properties --> the last option on the list which is Use 11.1.1.5 compatibility mode true --> apply
    now it should be working
    Please let me know if it worked out and mark as correct if it have solved the issue
    Thank You

  • Conversion of a binary data stream to decimal numbers

    Hi
    I am having great difficult working out how to convert my binary data stream to decimal numbers.
    The data I am reading back is in the format of a binary string, starting with the Most Significant Bit (MSB) of the first word, then the corresponding Least Significant Bit (LSB), where a word is two bytes long. A carriage return indicates message termination.  The return message starts with ‘bin,’ followed by the number of bytes requested. No delimiters are used to separate the data, but a carriage return is appended onto the end of the data.
    bin,<first word msb><first word lsb>...<last word lsb><CR>
    e.g. bin,$ro¬z1;@*...etc
    Does anybody know of any examaple vi that can help me convert this data from binary to decimal numbers?
    Many Thanks
    Ash

    Hi Ashley,
    after getting the string you can strip the first 4 characters. After this try a typecasting to array of U16. If the numbers are not correct, you can add a swap bytes operation to the resulting array.
    Message Edited by GerdW on 09-13-2006 02:46 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    Convert.png ‏2 KB

  • Problem with decimal numbers..

    hi i posted the other day with a problem I had. I thought it was all sorted but I have just realised that there is another problem.
    I have the following code for an applet:
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TextFieldExample extends Applet implements ActionListener {
    TextField textInput;
    String text = "";
    public void init() {
    textInput = new TextField (20);
    add(textInput);
    textInput.addActionListener(this);
    public void actionPerformed(ActionEvent e) {
    text = textInput.getText();
    repaint();
    public void paint(Graphics g) {
         int x = Integer.parseInt(text);
         double y = Math.abs(x);
    g.drawString("You wrote " + text,20,500);
         g.drawString("The absolute value is: " + y,20,100);
    I am trying to do the applet so when you type in an angle, it tell you the sine, cosine etc. I can get it to work with whole numbers like 1,10,300, but it won't work when i try to use decimal numbers. Can anyone help?
    Thnk you in advance!
         

    Hi,
    you are using Integer.parseInt() to convert the input, so it will only work if the text is an integer. Use Double.parseDouble() instead.
    Andre

  • Sorting xml content based on decimal numbers

    hi,
    I would like to proceed a sorting an xml content. So, when the sorting elements are numbers, I must add the dt:dt="number" attribute in the concerned tag.
    But when this number are decimal numbers, it seems that the sorting occurs only when the decimal separator is the '.', but it does not work when the decimal separator is the ','.
    So is there a solution for sorting decimal numbr with the decimal separator ',' ?
    Thanks in advance
    Bye

    Typically the best way is if you know the name of the default table that contains your document. You do the update on the default table as follows
    update yourTable  t
         set object_value = updateXML(...)
    where ref(t) = (
                     select extractValue(res,'/Resource/XMLRef')
                       from resource_view
                      where equals_path(res,'/some/path/mydocument.xml') = 1
                          )

  • Sql Loader - Decimal numbers showing in null column

    Greetings,
    My apologies if this is in the wrong forum section. It seemed to be the most logical.
    I have added new column to a control file used in a sql loader upload and I am getting unexpected results. Long story short, I copy foxpro tables from a network directory to my local pc. A foxpro exe converts these tables to .dat files. Sql loader then uploads the .dat files to matching oracle tables. I've run this program from my pc for years with no problems.
    Problem now: We added a new column to a foxpro table and to the matching oracle table. This column in FoxPro in null for now - no data at all. I then added the new column to my ctl file for this table. The program runs, sql loader does it's thing with no errors. However, in the new field in Oracle, I'm finding decimal numbers in many of the records, when all records should have null values in this field. I've checked all other columns in the oracle table and the data looks accurate. I'm not sure why I'm getting these decimal values in the new column.
    My log and bad files show no hints of any problems. The bad file is empty for this table.
    At first I thought the positioning of the new column in the fox table, .ctl file and the oracle table were not lining up correctly, but I checked and they are.
    I've double checked the FoxPro table and all records for this new column are null.
    I'm not sure what to check for next or what to test. I am hoping someone in this forum might lend a clue or has maybe seen this problem before. Below is my control file. The new column is the last one: fromweb_id. It is a number field in both FoxPro and Oracle.
    Thanks for any advise.
    JOBS table control file:
    load data
    infile 'convdata\fp_ora\JOBS.dat' "str X'08'"
    into table JOBS
    fields terminated by X'07'
    TRAILING NULLCOLS
    (SID,
    CO_NAME "replace(replace(:CO_NAME,chr(11),chr(10)),chr(15),chr(13))",
    JOB_TITLE "replace(replace(:JOB_TITLE,chr(11),chr(10)),chr(15),chr(13))",
    CREDITS,
    EARN_DATE date "mm/dd/yyyy",
    COMMENTS CHAR(2000) "replace(replace(:COMMENTS,chr(11),chr(10)),chr(15),chr(13))",
    DONT_SHOW,
    PC_SRC "replace(replace(:PC_SRC,chr(11),chr(10)),chr(15),chr(13))",
    PC_SRC_NO,
    SALARY,
    SALFOR,
    ROOM,
    BOARD,
    TIPS,
    UPD_DATE date "mm/dd/yyyy hh12:mi:ss am",
    STUKEY,
    JOBKEY,
    JO_COKEY,
    JO_CNKEY,
    JO_ZUKEY,
    EMPLID,
    CN_NAME "replace(replace(:CN_NAME,chr(11),chr(10)),chr(15),chr(13))",
    JOB_START date "mm/dd/yyyy",
    JOB_END date "mm/dd/yyyy",
    FROMWEB_ID)

    I apologize for not explaining how this was resolved. Sql Loader was working as it should.
    The problem was due to new fields being added to the FoxPro table, along with the fromweb_id column, that I was not informed about. I was asked to add a column named fromweb_id to the oracle jobs table and to the sql-loader program. I was not told that there were other columns added at the same time. In the foxpro table, the fromweb_id column was the last column added.
    The jobs.dat file contained data from all columns in the foxpro table, including all the new columns. I only added the "fromweb_id" to the control file, which is what I was asked to do. When it ran, it was getting values from one of the new columns and the values were being uploaded into the fromweb_id column in Oracle. It is that simple.
    When I had checked the FoxPro table earlier, I did not pickup on the other new columns. I was focussing in on looking for values in the fromweb_id column. When back-tracing data in the jobs.dat file, I found a value in the fromweb_id column that matched a value in a differnt column (new column) in FoxPro. That is when I realized the other new columns. I instantly knew what the problem was.
    Thanks for all the feedback. I'm sorry if this was an inconvenience to anyone. I'll try to dig a little deeper next time. Lessons learned...
    regards,

  • Decimal Numbers in Oracle Configurator

    We are trying to use decimal numbers in a parent Option Class, such the example below:
    Item Type Qty
    - 000000x Option Class 0,14444
    - 00000xx Option Class 1
    What occurs:
    When I used decimal numbers on an option class, the structure down of it and the same level of it doesn´t updating on Oracle Configurator.
    There are any error message. But seems that the structure of this point to down is being ignored.
    Today I have ~5,000 items that use the same structure on my BOM that would need to use this funcionality because the unit of measure is liter, and these items have different quantities of consume and all of them can be configured on Oracle Configurator.
    E.g (According the width of the product that were configured, the quantity of paint necessary to build this product can be variable )
    I don´t know if it´s work because i know that OM have some limitations about, but maybe somebody can help me in this issue.
    Tks!

    Have you found any solutions on this yet?
    I have a similar problem and have an SR open at the mo for it! I am wanting to feed a decimal value out of the model and assign it against the (selected) child of the (selected) option class.
    I have learnt to far that inventory is limited to 4 decimal places so its not going to work if you go over this number.
    Then i learnt that an option class will nto support decimal places at all so you need to feed it directly to the child/ren and skip the option class. To do this I set up a Total feature and in my calculation rule I contributed the output to the Total feature. Then the total feature sends the output value to the child by the rule:
    Contribute 'Dummy' * &x1.state() To &x1 FOR ALL &x1 IN {'MJ OUTER MAT OC'.Options()};
    This isn't the correct solution but its nearly there. This assigns the value to all the children of the OC and not just the one that is required causing the whole model to fall over. If you have any solution to your issue or anyone can help me with this one, would be much appreciated.
    Vikki

  • ITunes: filenames are truncated to 37 characters

    I downloaded podcasts from the internet with itunes. the filenames appear correctly in iTunes but on the hard drive (My Documents\My Music\iTunes\iTunes Music\Podcasts\)
    filenames are truncated to 37 characters. Any idea how to get the full filenames?
    using Windows XP SP2
    iTunes 6.0.5

    FYI this isn't entirely benign. i've had this cause actions to OVERWRITE files without giving any warning. specifically if a batch action is done on a bunch of files with long filenames with numbers at the end. the numbers are omited and so every file has the same name and is over written as the action progresses. this would overwrite an unnumbered but same named file too.

  • Decimal Values getting truncated

    Hi,
    In my query results, the decimal values are getting truncated.  e.g.
    0.30 + 0.44 = 0.70  (expected result = 0.74)
    0.30 + 0.45 = 0.80  (expected result = 0.75)
    0.40 + 0.48 = 0.80  (expected result = 0.78)
    What am I supposed to do to make sure that the second decimal point is not truncted.
    Thanks,

    Hi,
    I do not have any conditions.  Except that I am just using the function NODIM to get the decimal values in my report.
    I did tried using the decimal places in the Key Figure properties.
    Are there any other possibilities to solve this?
    Thanks,

  • Why does the sum function not work when I try to add a column of decimal numbers?  The value is always returned as 0.  No problem with whole numbers but decimals do not work!

    just bought a MacBook Air and using Numbers to make a spreadsheet for financial purposes.  The sum function is working ok for whole numbers but when I try to sum a column of 2 decimal place numbers the result always comes back as 0.  Can anyone help?

    Hi laura,
    I suspect that your 2 decimal place numbers are formatted as text. Change the format of the column to currency and see it that works.
    Also You might want to update your profile to reflect your current systems!
    quinn

  • Which functions and features in Numbers are NOT exported correctly to Excel?

    I wish to know EXACTLY which functions I use in a Numbers sheet WILL FAIL to export correctly to an Excel or Neoffice spreadsheet.
    For instance, I created a Numbers spreadsheet using prolific use of the IFERROR function. However, when I EXPORT to XLS, all the cells that used the IFERROR function were replaced by the literal value of the cell. My IFERROR formulae were not EXPORTED as I had expected.
    I note that some formulae were converted correctly in my EXPORTED spreadsheet: eg MAX, MIN, AVERAGE.
    I understand that IFERROR was a function introduced recently to Excel, ie in the 2007 version. Consequently, I suspect that Numbers exports to a pre-2007 version of Excel. If so, which version?
    I have found this list that shows which functions are compatable amongst various versions of Excel:
    Excel Functions: Compatibility Reference (2010, 2007 & 2003). (n.d.). Retrieved from https://docs.google.com/spreadsheet/ccc?key=0AsHau4_IeCfwdG45c0VhcjBBUGNreVo2ZzN NRU1BT0E#gid=0
    This list shows that, for instance, IFERROR exisits inb both Excel 2007 and Numbers-09. So why is IFERROR not exported?
    Curmi, J. (n.d.). Summary of function in excel and numbers-09. Retrieved from http://curmi.com/blog/wp-content/uploads/2009/01/functions-in-excel-and-numbers- 09.pdf
    Some examples of my use of ISERROR in Numbers are as follows:
    =IFERROR(RANK(C47,$C47:$J47,1),"")
    =IFERROR(MEDIAN(C51:C58),"")
    =IFERROR($C32-C88+1,"")
    I use the above function to  carry out the calculation ONLY IF  a cell is non-blank and contains a number.
    More questions
    What are the rules that Numbers uses to convert to Excel?
    Is Numbers converting to the 2003 version of Excel? ... or an earlier version? ... which version?
    Why desn't Numbers advise me there were conversion errors or simplifications made?
    eg: "Cell A33 Function IFERROR was exported to the cell value for Excel"
    Is there a preference that I can select which version of Excel that Numbers will export to?
    In the meantime, I must abandon Numbers and use NeoOffice!

    Thanks,
    I applied your suggested ISERROR transformation to examples such as:
    =IFERROR(RANK(C47,$C47:$J47,1),"")
    =IFERROR(MEDIAN(C51:C58),"")
    =IFERROR($C32-C88+1,"")
    However, a caution for young players....
    Certainly, the ISERROR function exports to .xls. However, it behaves differently in NeoOffice.
    Items 1 and 2 function identically in the case of say, ranking a row in which some cells are blanks.
    Item 3, when translated using ISERROR to =IF(ISERROR(C32-C88+1),"", C32-C88+1), results in "" (ie error is raised) in Numbers but yields figure 0 in NeoOffice when there is a blank in either of the cells.
    I  recall from programming school in the mid-1970s that using GOTO statements and On Error branch statements were not admissible as routine programming steps. In fact, we received an automatic fail grade if we used a GOTO or GOTO like construction. So, I have found a more programmatically elegant way to solve my problem: eg:
    =IF(C88="","",C32-C88+1)
    Curiously, earlier I found/suspect this does not work equivalently in Numbers and NeoOffice:
    =IF(ISBLANK(C88),"",C32-C88+1)
    When you try using ISBLANK you always get an intuitively unexpected result because ISBLANK ONLY gives TRUE when there is absolutely nothing in a cell. A Formula reference in the cell, even if the function result yields "", gives FALSE... because, according to the definition of ISBLANK the cell contains a formula.
    As I tell my students, ALWAYS lookup the HELP on any function you use. ALWAYS test the function to see how it performs!.... and lesson 3: Always test your spreadsheet on different systems.... then hope!
    FYI:
    Here's a  link to my Spreadsheet (Neoffice .xls) and a video explaining its use.
    Team Contribution: Introduction (Prototype). (2013). Retrieved from http://www.youtube.com/watch?v=bj87FGLoplk&feature=youtube_gdata_player 
    I don't guaranteee this link for ever! ... and I continue to "tweak" it
    https://www.dropbox.com/s/1jz7gzksejnbqo1/Team%20Contribution.xls

  • I have just purchased photoshop elements and premiere package. I tried to download them but it tells me the serial numbers are inapplicable. I notice the platform says windows and I am using a mac book pro.  It didn't give me an option when purchasing. wh

    I purchased Photoshop Elements and Premiere package today.  I have been trying to download them but it tells me the serial numbers are inapplicable.  I am using a mac book pro and I have just noticed that the platform in my receipt says 'win" .  I don't remember being given an option for mac or windows  when purchasing.  what can i do now?

    Return, cancel, or exchange an Adobe order

  • I am unable to dial India toll free numbers from my iphone, these numbers are like 1800-***-1515. There is nothing as dial assist in Ios7.1.1 which i can disable and dial in india toll free numbers.Please respond if anyone has any solution

    I am unable to dial India toll free numbers from my iphone, these numbers are like 1800-***-1515. There is nothing as dial assist in Ios7.1.1 which i can disable and dial in india toll free numbers.Please respond if anyone has any solution

    Check this post, the dial assist is part of the iOS 7.1, according to page 49 of the iphone_user_guide
    Make calls to your contacts and favorites while traveling abroad. (GSM) Go to Settings > Phone and turn on Dial Assist. Dial Assist automatically adds the prefix or country code for calls to the U.S.
    This user had a similar problem and solved it by switching off the dial assist feature in Settings/Phone/Dial Assist
    Re: How to save toll free no starts with 1800?

Maybe you are looking for

  • Logical solution in data selection

    Hi Experts, I have one problem in in my code.  I have a selection sceen for input two dates and a check box in my screen. For Extractind data i m using folloing statement. SELECTdebit credit profit loss tdate FROM Zpfaccount INTO      (itab-debit, it

  • Application off screen - Mac OS X 10.7

    Application is off screen. Happens after using 27inch display. Clearly a resolution issue. Tried everything including playing with the resolution, etc. After looking at several discussions and forums the one that works on my Macbook Air https://discu

  • Array of Fields in JSP page

    hi, i am just a biginer in java forum& application developement, *********problem**************** I am using jsp+struts2 combination. one of my jsp page contains a select field to select number (n). on basis of that selected number(n) I've to display

  • RSP 2.4 and WebDav

    I'm running into some problems of trying to setup webdav to work with RSP.  I've installed webDav via IIS 7.0 and have played around some settings.  It seems to be functional at the moment but as I'm still unable to connect to the webdav server from

  • Copy and Paste option from CR 11 Viewer

    Hi, We are doing migration Crystal Reports from CR 8 to CR XI. The CR 8 reports will be accessed from VB application. The converted CR XI reports will be accessed from VB.Net application. In CR 8, There is a popup menu when we do right click from the