BEx analyzer shows 0,000 in rows, but 0,5 in total

Hi Experts,
In BEx Analyzer my query shows 0,000 for a key figure in 3 rows, but in total of these 3 rows there is 0,5 %. The key figure is used as an attribute to a custom characteristic. When I display the characteristic, I see values 0,1 + 0,2 + 0,2 which gives correct total. If I display more decimal places in Bex, it is still the same like 0,00000.
We are on SAP BI 7.1 SP 06. Can anybody help?
Michal

Problem was solved via OSS note 675235.
transaction SPRO:
-> BW Customizing Implementation Guide
  -> General settings
  -> Check units of measurement
     -> Select the Units of measurement button  and set decimal places rounding.
  Michal

Similar Messages

  • Report in BEx Analyzer shows Red "X" in records field

    Dear Experts.
    Report in BEx Analyzer us showing red "X" in the records field. Although there are figures in the field and is getting calculated in the overall result, but still the numbers donot appear.
    Kindly advise how to fix this.

    Please detail the KF formulae here..
    Any value divided by 0 is not defined.
    So if formula if its using division , you must use not div by 0 function. i.e.NDIV0 function
    Edited by: SKDDON on Oct 13, 2009 10:13 AM

  • Can i show 10,000 of rows in jtable

    hello,
    can i show 10,000 (>10,000) of rows of data (from databases)in jtable at time.
    thanks
    daya

    if you want to increase the memory, you have to start a new JVM. This is the way I have always maximized the memory:
    public static void main(String[] args)
            try
              if(Runtime.getRuntime().maxMemory() < 64*1024*1024) //64 megabytes ; I think the default is about 32 ?
                   Process p = Runtime.getRuntime().exec(new String[]{"java","-Xmx512m","-Xms512m",getClass().getName()}); //512 megabytes; however much you want, just watch your greed =D
                   new ThreadGobbler(p); //defined below
                   return;
         }catch(IOException e) { e.printStackTrace();}
            // now start your usual main() ...
    }what that snippet of code does is check to make sure you have at least 64 megabytes of memory. If you do not, the program re-runs with the specified args - the Xmx sets the max memory, and Xms sets the min memory (I think...). Not quite sure what the differences are, but it works =D
    anyway, the thread gobbler is used just to redirect output and input to the default System.out and System.err. If you do not need to redirect, just delete/comment out the line above. (I don't know if this is the most elegant way to do it because lines are lost if the streams madly flush data, but...)
    class ThreadGobbler
         private Process process;
         private BufferedReader std, error;
         public ThreadGobbler(Process toDo)
              process = toDo;
              std = new BufferedReader(new InputStreamReader(process.getInputStream()));
              error = new BufferedReader(new InputStreamReader(process.getErrorStream()));
              new Thread()
                   public void run()
                        try{
                             checkError();
                        catch(IOException e){
                             System.err.println("Error in error reading.");
                             System.exit(1);
              }.start();
              new Thread()
                   public void run()
                        try{
                             checkStd();
                        catch(IOException e){
                             System.err.println("Error in std reading.");
                             System.exit(1);
              }.start();
         public void checkError() throws IOException
              String error;
              while((error = this.error.readLine())!=null)
                   System.err.println(error);
         public void checkStd() throws IOException
              String std;
              while((std = this.std.readLine())!=null)
                   System.out.println(std);
    }Hope that helps! If you have any questions, just reply =D
    Alex

  • CKF not showing correct results in BEx Analyzer

    Dear Friends,
    I am getting different results when viewed from BEx Analyzer and Web Analyzer for the same query. BEx Analyzer shows incorrect results. The column that is showing different is a local formula (say Formula3) that is a result of dividing Formula1 by Formula2.
    BEx Web calculates Formula3 correctly while BEx analyzer does not.
    I am in BI 7.0 SP 10.
    Any Clues?
    Thanks
    Viren

    For this calculated column set aggregation level as sum.

  • Issue with status of data information in Bex analyzer report

    Hi BI gurus,
    One of the queries showing older date for the "status of data" information in the report of Bex Analyzer. I have tried to correct it in Bex analyzer by removing existing Text information element and adding a new Text element in the Bex Analyzer designer for the query. But it doesn't worked out as the changes made to the query through Bex Analyzer are only being saved as a local work book rather than reflecting to the query. Please suggest me with some options to resolve this issue and give any Idea to correct the "Status of data" in the Bex Query designer.

    Hi Aditya
    This is a common problem faced by users when reporting on Multi-Provider.
    In my project what I did to overcome this is to run a Fake DTP to the cube whose status is creating problem.
    Like , if under MultiPro I have a planning cube which is only updated monthly but all the actual cubes updated daily.  In this case create a DTP under Plan cube with some impossible selection condition ( like fiscal year 2099). This will bring 0 records to planning cube ( and thereby not impacting the data) but will update the last loading time.
    Regards
    Anindya

  • Error when launching BEx analyzer from Portals

    BI Gurus...
    We are working on an initiative to migrate our user interface from SAP GUI to Enterprise Portal.
    Bex Analyzer is primary mode of reporting at this time.
    After importing the Roles into EP, I am able to execute the web queries successfully, in the BEx Wen analyzer. But, I get an error when I click on any of the excel workbooks. Our expectation was that once we click on the excel workbook name, the BEx analyzer will launch from EP. But it seems like the issue is with launching BEx Analyzer from BI Portal.
    Has anyone faced this issue before?
    Is it possible to launch BEx Analyzer from EP?
    Are their some key portal settings we have missed out on to enable launching BEx analyzer from EP?
    Please provide your thoughts/experience.
    Thanks,
    Ajay.

    Hi WernerS,
    Thanks for your response.
    The RRMXP Transaction works and it launching the BEx Analyzer as expected.
    Now, as per our research, I think there are 2 ways of launching BEx analyzer from BI Portals.
    1) Call via a URL
    You can call BEx Analyzer via the following URL: http(s)://<server:port>/sap/bc/bsp/sap/rsr_bex_launch/bexanalyzerportalwrapper.htm
    You can modify the URL to open BEx Analyzer with either a workbook, a query or a query view. You can use the following parameters to do this:
    ●      Parameter to open the workbook: ?WBID=<wb_id>
    I have tried calling via URL iView, but instead of launching the BEx Analyzer, it just throws a dialog box to "save" or "open" a file, RRMX.bex. When I try to open this file, it says "Invalid File Format".
    I tried opening the file in notepad and I see the following parameters passed.
               test
               Data=BX2,CONAJP,EN,mikoyan,17,,,250,
               9
    Any clue about what I am doing wrong?
    2) Calling via a Transaction
    You can generate BEx Analyzer in Portal Content Studio as an SAP Transaction iView.
    The iViews are of type SAP Transaction iView and have the code link com.sap.portal.app integrator.sap.Transaction.
    The most important properties are System, Transaction Code (TCODE) and ApplicationParameter.
    ●      The Transaction Code for all workbooks is RRMXP.
    ●      The ApplicationParameter property contains the value WBID=<WORKBOOK_ID>.
    I have tried this approach as well. When I open this iView, I see the RRMXP transaction in the Internet explorer, but the workbooks still does not open in the BEx Analyzer (Excel)
    Any thoughts on where am I going wrong ?
    Thanks,
    Ajay.

  • BEx Analyzer Workbook, display query 2 under query 1

    Hello Guys,
    actually I got a problem and did not find a solution for that.
    I have a query, displaying all cars from one particular salesorg. Under this query I want to add a new query displaying all other cars, not belonging to that salesorg. Now I have two problems:
    1) Is there an automated way to display one query among another in bex analyzer, if the number of rows in each query is not constant?
    2) Can I negate the variable from my first query (not salesorg in first query)?
    Thank You!
    Markus

    Hi Markus Alber,
    why can't you do this in one query?
    You can create two selections:
        One for that particular salesorg can use restriction on "salesorg"
        another selection uses "salesorg" restrictions of excluding that particular salesorg
    Feng

  • Opening Bex Analyzer in Webgui using NetWeaver Webdynpro

    I have a Netweaver Webdynpro(Java) application which stores Transactions as favorite URLs (eg: SE37, SE38, RRMX..). When user clicks on the favorites link, the application supplies the URL to the transaction by appending the System , host details and the transaction opens up in a webgui.
    This works for all transactions except <b>RRMX</b> for <b>Business Explorer Analyzer</b>(Bex Analyzer). For Bex Analyzer, the SAP WebGui opens up, but the Bex Analyzer does not open up. The message displayed is "<b>Please install suitable Excel version."</b>
    Does anyone know what is missing?

    Ok.. I have to add this. The BEX ANALYZER works in the same scenario for another link defined on Portal. So, the problem is not with the Excel/Office installation.
    The only difference is that the link which works correctly on the portal : uses an Transaction Iview whose SAPGUI type <b>WinGui</b>.
    Where as the application which we built forms a Url with the transaction code. So, when user clicks on the URL,  what happens is the <b>Transaction</b> opens up in the <b>WebGui</b> mode. This is the main difference.
    And, we have a whole list of transactions which needs to be opened and it would not be feasible to make seperate transaction iviews for each transaction. Currently, we are thinking of calling this already configured <b>Transaction Iview</b> for only the RRMX transactions. But, we are stuck trying to launch this transaction iview from WebDynpro.
    Reason: The window closes after launching the Bexanalyser and we are unable to get the URL of this window before it closes. How do we read this PCD information from WebDynpro to get to launch this Transaction iview for RRMX?

  • Quantity is Showing Blank : Bex Analyzer, Source - Bex Query Designer

    Hello Expert SAP BI,
    I Extracting Data from Flat File,
    Till then Cube My Transaction data Loaded Perfectly  ,
    i want to create Report in Bex Analyzer, fetching fields from Bex Query Designer.
    Characteristics are showing in Rows , that showing in Report , but in Columns added Key Figure , its not showing in Report .
    Can any one Suggest , what will be issue and how i have resolve it.
    - Thank you.

    Datasource -> Transformation -> InfoSource
    Infosource -> Transformation -> DSO
    DSO -> Transformation -> Cube

  • Missing Row Data on BEX Analyzer Report

    Hi, been a while since I used BEX Analyzer.  Have a BEX Query  that we added a row of data to and the results show the row populated in Query Designer.  However, when I open up a workbook in BEX analyzer that uses that query, the row still does not show up.  What do I have to do to make the row of data show up?
    Thanks.

    Hi Keith,
    I am not sitting in front of system now,but there are three checks which needs to be done. there is one refresh on every opening option also which needs to be selected.
    Thanks and regards

  • No data in Portal Report but have data in Bex Analyzer

    Hi experts,
    I have problem regarding portal reports. When you view the report using the bex analyzer, there is data. But when you view the report in the portal from iview, there is no data.
    Please help experts.
    Thanks

    Hi Emmanuel (that's weird, I am an Emmanuel too! and we both have Filo origins),
    There can be heaps of reasons for this.
    1) Please try to run the query in transaction RSRT by entering the query name and clicking "Java Web". See if that gives you results. If that gives your results, then the iView that was saved in the portal might need some reconfiguration. Check it out.
    2) Check the logic of your user exit variables. The sequence of the I_STEP calls is a bit different if you run a query in the Portal. For example, if you don't have a mandatory variable in your query, then the olap engine will call I_STEP=1 to 3 before it shows the variable screen. This behaviour is not documented in help.sap.com. However, it does work that way.
    3) Try to check the caching settings for your iView. It might be caching the result. You can change this in Content Administration in the portal.
    Try the above and see if it helps. Otherwise, post another message.
    Cheers.

  • User Variables values are not showing in Bex analyzer

    Dear Friends,
    I created a report in Bex analyzer ( Excel).
    Now i want to show the variables values in the report.
    i put text item there and click on it but in filter tab there is no variable is exist.
    Any help will be highly appricated.
    Regards
    Naeem

    dear i know how to display the variable values.
    But unfortunatilly there is nothing appear in filter tab.
    my variables are not in filter tab its empty.
    i already choose the data provider.
    regards
    Malik

  • BEX analyzer -Maximum number of rows (65535) exceeded. Result is incomplete

    Hello Experts,
    I am trying to Run a report on BEx Analyzer.There are around 200,000 records to be displayed in the result.
    I am getting the below error.
    Maximum number of rows (65535) exceeded. Result is incomplete.
    Message no. BRAIN675
    We are on SAP GUI 7.X and Excel 2007
    Is there any setting that I have to change inorder for BEX analyzer to display all the 200,000 records.
    Also any memory setting for the result set to be changed ?
    Please let me know your thoughts
    Thanks
    Doodle

    Hi Doodle,
    The rows limit for Excel 2007 is 1 million so this is not the problem with row limitation. It seems like you have opened the pre-excel 2007 workbook in excel 2007, check your title bar if it says "Compatible Mode". This will limit you to old standard of 65K.
    May be what you can do is , save your file using save as option and try running the workbook.
    Your new file extension will be .xlsx
    Regards,
    Durgesh.
    Edited by: Durgesh Gandewar on Jul 14, 2011 10:03 AM

  • Working in BEx Analyzer but giving error dump in Web Analyzer

    Hello Experts,
    I have a BEx Query, that has couple of customer exits for initial filter selection, and some base KFs and conditions as part of definition. When I run this query in RSRT or in Bex it was running fine, and results showing up in 3 to 5 seconds hardly 10 seconds.
    but the same query throwing error in Portal / Web Analyzer.
    error contains;
    Error Summary : error processing the current request
    root cause: The initial exception that caused the request to fail was:
    java.lang.UnsupportedOperationException
    Messages: warning there is a condition on Plant and Material to suppress results.
    contest: under this heading many line of HTML code
    when I debug the query in RSRT, I found any issue, all the exits, and the query is quite OK.
    does anyone has any idea, whats going wrong?
    we cannot suspect the portal / Java patches or anything, Because we have other queries running good.
    could someone give me some idea..how to go through this portal/web related errors.?
    Appreciate your time and help

    Thanks for your help.
    This issue was caused by "Bad programming in Customer Exit". Exit is trying to give too many Single values as selection to certain batch characteristics plus some are redundant. So code logic modified to fetch distinct values hence problem solved.
    it worked in BEx analyzer but not in Web is just because of its limitations. As I said there is no syntax errors in the exit rather bad logic.
    Thanks Again

  • BEx Analyzer variable screen not showing for user

    Hello,
    I have a BEx query that shows the variable screen to enter the query parameters when I run the query but when the user runs it, he is not given the variable screen and therefore cannot enter the variables.  Both the user and myself are running the query in BEx Analyzer (Excel). 
    The user is new to BEx.  Is there perhaps some security or role setting that needs to be changed?  Something else?
    Thanks in advance for your help!

    Hi Paul,
    I am also facing exactly the same problem as you were facing. Could you please tell, whether your problem got solved? If yes, then would you please provide the solution for the same?
    Thanks in advance,
    Sanjeev

Maybe you are looking for

  • SPServices with FullCalendar

    I want to create a calendar view where I can apply custom filters(dynamic)- 1) People picker 2) Calendar control 3)Dropdown I could not apply the meta/key filters(List Settings->Metadata Navigation Settings) on the default calendar Daily/Weekly/Month

  • Screen resolution with Mode in BDC

    Hi All, In call transaction statement I am using mode as well as options from statement but 1 error is coming that i can't use mode and update with options from statement. But I want to run in background as mode 'N' as well as I want the default scre

  • Export bookmark pages

    I'd like to run an export of my pages to an image as the bookmark name I gave for that page.. Is this possible?

  • Bizarre finder alphabetization behavior

    Aside from possibly butchering a made-up word, I am having a bit of an issue. I am finding that screenshots taken in the AM are showing up /after/ screenshots taken in the PM. I thought I had correctly determined and solved this issue with the help o

  • Where can I download additional content for Motion 4?

    I am learning Motion 4 and am trying to find additional content such as particle emitters, replicators, shapes, etc.  I see on Apples website that the additional content is available for download for Motion 5 but I can not find it for Motion 4. Thank