Values not showing up in Report

Hello experts,
I have saved data using Input schedules for certain combinations. Now I want to see the data in the report but here the problem, I am able to do so if I am giving the exact combinations as there in IS.
For example: I have entered data at GL account level for certain BLI. if I select BLI and Time in row and column axis respectively I am expecting to get the aggregated data but this is not happening.
Instead in the log file there are some error messages.
2014-06-10 09:58:56,173|ERROR|FPMXLClient|FPMXLClient.ReportManagement.SheetReport.IsValidForReportUpdate|INFBPC4|||||1|Exception of type 'FPMXLClient.Common.MissingAxisException' was thrown.#
Any idea about this?
Regards,
Kavita

Kavita,
This is really confusing.
What is BLI, CLI, dimension members (parent or base) of which dimension? What is the structure?
How can I get the overall values sum for my Entity. --> Are you posting data entitywise - say to multiple entities and then are you not able to see data at the parent node of entity?
I am not seeing the net values but the value are based on the BLI in context lock. --> What does this mean? If BLI is entity member, don't you have this in your row axis? Context won't have any role to play if you have it in your row axis.
Please be a bit clear about what data have you saved, and then what is the structure of your report.
Regards,
Ashish

Similar Messages

  • Option claims from CRM are not showing in BW report.

    Hi All,
    We are having a problem with BW report. The report shows all the claims thatt are created in CRM system( spource sys- CRM). We notices that claims that are called as option claims are not showing in BW report, but they are present in BW. I have checked filters in report design. no filters exist. Where they are getting filtered out. Please help me.
    Haaris..

    Hi,
    I am giving you ore information on the above issue, the above query is running on an infoset, I realized, data is missing from infoset. Where as the data is present in DSO.
    The other thing I can see every other claim in BW, but I cannot see Option claim which are very less compared to other claims.
    The infoset has four DSOs and one characteristic as components.
    Please let me know if you get any idea?
    Haaris.

  • Safari 6.0.1 not showing in System Report (installations)

    I have noticed that Safari 6.0.1 is not showing in System Report (installations) only the previous Safari 5.1.7 - Anyone know why this should be so? Now in Mountain Lion we do not have the update info in Software Update as before; only by going to "About this Mac". Any help appreciated!

    Now in Mountain Lion we do not have the update info in Software Update
    If you click your Apple menu icon you should see Software Update from the drop down menu.
    Clicking Software Update should open the App Store for you.

  • Crystal Reports For Eclipse - Multi-values not showing on page..

    Tried two different ways to set params, but to no avail.  Values seems to be set, but only one value appears on the report.The value is updated, so not an old value or anything.
    Also if I look at the values I can see the values are set!  The Field is set to multi=true and the height is big enough to display lots of date grow=true.
    <%@page import="com.businessobjects.samples.JRCHelperSample" %>
    <%@page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer" %>
    <%@page import="com.crystaldecisions.reports.sdk.ReportClientDocument" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.application.OpenReportOptions" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSource" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.data.Fields" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.data.ParameterField" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.data.ParameterFieldDiscreteValue" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.data.Values" %>
    <%@page import="com.crystaldecisions.reports.sdk.*" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.lib.*" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%
         // This sample code calls methods from the JRCHelperSample class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the JRCHelperSample class.
         try {
              String reportName = "Report1.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // ****** BEGIN LOGON DATASOURCE SNIPPET **************** 
                        //     Database username and password
                        String connectString = "jdbc:oracle:thin:@localhost:1521:XE";
                        String driverName = "oracle.jdbc.OracleDriver";
                        String JNDIName = "";
                        String userName = "darren";
                        String password = "darren";
                        // logon to database
                        //JRCHelperSample.logonDataSource(clientDoc, userName, password);
                        // Switch all tables on the main report and sub reports
                        JRCHelperSample.changeDataSource(clientDoc, userName, password, connectString, driverName, JNDIName);
                   // ****** END LOGON DATASOURCE SNIPPET ****************           
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
                        // Create the CrystalReportViewer object
                        CrystalReportViewer viewer = new CrystalReportViewer();
                        //     set the reportsource property of the viewer
                        IReportSource reportSource = clientDoc.getReportSource();                    
                        viewer.setReportSource(reportSource);
                        // set viewer attributes
                        viewer.setOwnPage(true);
                        viewer.setOwnForm(true);
                        // MyParameter
                        String paramName = "MyParameter";
                        String theValue1 = "Hello";
                        String theValue2 = " World!";
    // Method 2
                        //We will be using the ParameterFieldController quite a bit through-out the rest of this function.
                        ParameterFieldController paramFieldController = clientDoc.getDataDefController().getParameterFieldController();
                        // MULTI-VALUE DISCRETE PARAMETERS.
                        Object[] multiVals = {theValue1, theValue2};
                        // sReportName - the report that contains the specified parameter field.
                        // sFieldName - the parameter field name.
                        // newValue - the collection of values to be stored in the parameter field.
                        paramFieldController.setCurrentValues("", paramName, multiVals);
    // Method 1
                        Values values = new Values();
                        values.add(theValue1);
                        values.add(theValue2);
                        ParameterField paramField = new ParameterField();
                        paramField.setName(paramName);
                        paramField.setAllowMultiValue(true);
                        paramField.setAllowCustomCurrentValues(true);
                        paramField.setCurrentValues(values);
                        Fields parameterFields = new Fields();
                        parameterFields.add(paramField);
                        viewer.setParameterFields(parameterFields);
                        viewer.setEnableParameterPrompt(true);
    // Show parameter values to console          
                        Fields fields = viewer.getParameterFields();
                           for (int i = 0; i < fields.size(); i++) {
                           ParameterField pf = (ParameterField)fields.get(i);
                           Values v = pf.getCurrentValues();
                           if (v.isEmpty()) {
                                System.out.println(pf.getName());
                           } else {
                                System.out.println("v.size(): " + v.size());
                                for (int j = 0; j < v.size(); j++) {
                                     ParameterFieldDiscreteValue pfdv = (ParameterFieldDiscreteValue)v.get(j);
                                    System.out.println(pf.getName() + " - " + pfdv.getValue());     
                        // Apply the viewer preference attributes
                        viewer.refresh();
                        // Process the report
                        viewer.processHttpRequest(request, response, application, null);
    Thanks in advance!

    This is not a support site but a community forum. For direct help purchase a case on line

  • Planned Values uploaded in KP06 not showing on GL Reports

    I have uploaded the budget but now I can't see the values in the Planned values Column in SAP.  I have checked OKEQ and see that for 2012 and the planning version that everything is working.  I checked the previous fiscal year and it show fine there.  Any other ideas why this wont show up on the report?  It ias the same report we used last year of course changing the dates.  Please le me now.
    Thanks,

    Yes I have tried that report.  So I should have put in my original post that I see the values have uploaded and that cost center report shows the planned values.  It is one of the custom (Z) reports from report painter that I can't see the values in.  The strange thing is last years values are showing but for this fiscal year it is not.  In OKEQ I have the fiscal year added and I have "Integrated Planning" checked.

  • Lov Values are not showing for Discoverer Reports in Application

    Hi,
    I developed some discoverer reports, those reports having parameters with LOV. Those LOV values are showing in Discoverer Desktop, but after registering those reports in Oracle applications those LOV values are not showing. Pls let me know how resolve this issue.
    Regards,
    Hanimi.

    Hi,
    Also it is necessary to know how the LOVs are defined. Are they based on Application flexvalues for example? In which case it may be that you have not got your NLS language parameters set correctly when connecting from Applications.
    Rod West

  • Non-cumulative Values not showing in Inventory Management Queries

    Hi:
    Has anyone had a problem with the new version and Non-cumulative key figures not showing up in Bex for Inventory Managemet reports? Specifically, they showed and validated back to ECC for our Development and QA boxes but now in our Regression box they are all showing zeros. Our Cumulative values are all showing correctly still within the Regression box. For example, Total Receipts and Total Issues are correctly poplating values but Total Stock is not.
    I have checked and validate that the configuration in the Regression box matches or Dev and QA box.

    Found the problem.  It had to do with the compression variant in the delta process chain.  The compression was set to 'no marker update'.  Since we only started receiving measureable deltas in or regression box this is where the incorrect setting showed up.  Reinitalized and the deltas are working correctly now.

  • Report Document not show on Crystal Report Viewer in C#

    My program is modified from VB.NET. Now I struck with Crystal Report that Crystal Report Viewer didn't show Report Document.
    Printing code is composed of two forms. One assign parameters and objects need. Other is Crystal Report Viewer form, CrystalReportForm. Last one run report by parameter from the first.
    When run this code that it didn't found any error but the problem is no report show on Crystal Report Viewer on second form. It just blank Crystal Report Viewer. There arm't any message response.
    Here is my code.
    // report caller form.
    private void Print()
       CrystalReportForm rptForm = new CrystalReportForm();
       string[] strtbl;
      strtbl = new string[1];
       string[] strqry;
      strqry = new string[1];
       // prepare var
       string myqry;
       string myrpt;
       // Pass The Table That you used in the crystal Report
      strtbl[0] = "r_receipts";
       // Pass the Query
      myqry = "SELECT * FROM r_receipts";
      myrpt = "rptReceipts.rpt";
      strqry[0] = myqry;
       //Pass For Mdi True
      rptForm.MdiParent = this.ParentForm;
      rptForm.ViewReport(myrpt, strtbl, strqry, "");
       //Parameter Value It is Optional
      rptForm.Show();
    // Crytal Report Viewer form.
    public void ViewReport(string ReportName , string[] TableName, string[] QueryString , string Parameter = "")
       //Me.MdiParent = mainpage;
       if (TableName.Length  != QueryString.Length  )
       MessageBox.Show("Passed Variable Are Not Correct", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
       return;
       CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
       CrystalDecisions.Windows.Forms.CrystalReportViewer crv  = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
      crv.ActiveViewIndex = 0;
      crv.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      crv.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None;
      crv.Dock = System.Windows.Forms.DockStyle.Fill;
      crv.Location = new System.Drawing.Point(0, 0);
      crv.Name = "CrystalReportViewer";
       MySqlDataAdapter at =new MySqlDataAdapter();
       DataSet ds = new DataSet();
       for (int i = 0; i < TableName.Length; i++)
      at = GetDataAdeptor(QueryString[i]);
      at.Fill(ds, TableName[i]);
       string rptPath  = "";
      rptPath = Application.StartupPath + "\\" + ReportName;
      rpt.Load(rptPath);
      rpt.SetDataSource(ds);
       if (Parameter != "")
      rpt.SetParameterValue(0, Parameter);
      crv.ReportSource = rpt;
      crv.Refresh();
       //CrystalReportViewer.DataBind();
       //Me.Panel1.Controls.Add(CrystalReportViewer);
       Panel panel1 = new Panel();
      panel1.Controls.Add(crv);

    Hi Bhushan,
    It's not yet fixed. My dataset (ds) can't bine to DataGridView as
    DataGridView1.DataSource = ds
    But it could do like this
    DataGridView1.DataSource = ds.Tables[0];
    When I bine to Crystal Report Viewer setdatasource
    CrystalReportViewer1.setdatasource = ds.Tables[0];
    It still not work, anyway you suggest let me in the right way. I very confuse the thing I fix to bine to DataGridView
    Thank,
    Chaiwat

  • Filter values not showing on iPad

    Hi,
    I have a BW query based universe (UNV) that is published to iPad. The WebI report runs fine in BI Launchpad. However, when I open same report on iPad, the prompt values are not show (I see only blank Blank Blank) and report is not executed. BW server is BW 7.3 BO is BO 4, SP2.
    How do I fix this issue?
    Regards,
    Nikhil

    Hello Simone,
    please can you tell me, if the open document function with refresh parameter is working in BO mobile App V 4.0.3 (Build 1211)?
    In the Release notes for this Version it is described how to do this:
    Open Document
    1. Apart from iDocID, sIDType and sDocName, other document identifier parameters are not supported
    in the OpenDoc URL.
    2. Apart from sReportName, sRefresh, IsM[name] and IsS[name], other input parameters are
    not supported in the OpenDoc URL.
    3. Session management parameter (token) is not supported.
    4. Output parameters are not supported in the OpenDoc URL.
    We tried to use the following link, but the report did't refresh with the correct parameters:
    http://svie32sapbo1:8080/OpenDocument/opendoc/openDocument.jsp?iDocID=AfFdCbmEEvZIiVXXFLh4iPY&sIDType=CUID&sRefresh=Y&lsMWert=Alarmierung
    The Part "Wert=Alarmierung" should be dynamical in future.
    Thank you and regards
    Wolfgang

  • Ssrs parameter default value not showing ,when available values is binded to query dataset

    I have developed a report using sql server data tools for vsiual studio2012 ,i have defined few parameters ,on one of the parameter when available values is binded to a dataset query, the report default value is  not showing in report preview .
    Many Thanks
    Chandra

    Hi Chandra,
    According to your description, you have set the default value for a parameter, but it's not displayed when initially running the report. Right?
    In this scenario, since you have set the available values bind to query, so your default values should be within these available values. If these default values are not within the available values, the default values will be not displayed. So please check
    the default values.
    Reference:
    Add, Change, or Delete Default Values for a Report Parameter (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Data not showing up on report

    Hi
    I have an Infocube that has data (ready for reporting) loaded from APO Livecache.
    I'm running a BEX report that gets data from that cube, and for some reason the value for one Key figure is not showing up.
    It's there in the infocube, but is not showing up on the report. The column for that key figure is just blank.
    What can I check or do to see the value there?
    Thanks!
    Pooja

    Hi
    There are no restrictions or conditions on the KF and it is running on a single Infocube.
    There are non-zero values in the cube.
    The field level authorizations are also fine...
    we used to be able to see the values when we last ran this report 2 weeks back.
    There's a calculated key figure that is a sum of this key figure that's not showing up and another one. It is showing the aggregate value correctly! Eg:
    KF not showing up: Production Planned
    2nd KF : On Hand Stock
    Calculated KF Ending Inventory = Production Planned + On Hand Stock
    Although Production Planned is not showing up in the report, I checked its value in the cube and the Ending Inventory value is summed correctly in the report.

  • BCWP values not showing in CNE5

    Hi,
    After executing CNE5 report it not showing BCWP value in particular project only.I have checked all the necessary data like actual dates are maintained.
    What could be the reason.
    Please guide.
    Regards
    Nitin

    Hi,
    Thanks for reply.
    I've already done that.
    BCWP is not showing only for 4 projects & in other project it is giving correct BCWP value.
    When we generate MIS through BW Module I am getting BCWP graph for the same project whose BCWP not showing in CNE5.
    Thanks & Regards
    Nitin

  • Value not showing in Radiogroup

    Hi,
    I have a radiogroup that seems to be defined correctly based on a database column value, but the selected radiogroup values do not show up on the Edit form. I see the values in the table and on a report but not on the Edit form. Other fields on the form show up correctly. The Radiogroup works fine for data entry, but not for edit. Any ideas on what could be wrong would be appreciated. Even compared it to other forms and the radiogroup properties are almost identical.
    Using version 3.2.1 of Apex.
    Thanks,
    pat

    Is the radiogroup item set to retrieve the value from the database with each page view? This is controlled with the "Source Used" setting on the radiogroup item.
    This is from the help:
    >
    Determines which value takes precedence, the cached value from session state or the item source value. For items with source type Database Column, select Always unless you do not want the associated row fetch operation to populate the item if the page branches back to itself.
    For items with other source types you must decide based on how the page is used, whether the previously sourced value should be displayed, or if the source type should be applied anew for each page view.
    >
    Just an idea.
    Earl

  • Sales order values not coming in copa report can been seen in ke24

    hi
    i have did sd and billing and actual settlement through va88
    i can able to values in ke24 actual line items.
    but when i cant able to see values in ke30 copa report aganist sales order characteristic
    and aganist record type A values are not flowing in copa report.
    please help me.
    thanks
    kareem

    hi ajay,
    i have again prepare actual line items report from ke94 ,ke91 and executed report ,
    here for that particular sales order values are flowing through record type C but not flowing for record type A.
    sales order is not displaying for record type A.
    and for that c only revenue and  and  raw material cost is flowing.
    thanks
    kareem

  • Records Not Showing Up On Report

    I'm using Crystal XI
    I can take the query from "Show SQL Query..." and paste it into a query screen in SQL Server 2008 management studio and retrieve the correct records.  However, the report itself does not contain all the records the should have been returned.
    To the best that I can figure, the records where a transaction date (date/time field) is null is not showing up on the report.  I only display the field, do not do any calculations based on the field. 
    It is part of the record selection formula, where I test for the field to be between start/end parameters or is null (which produces the correct SQL query as I stated above)
    So why are the records not showing up on the report, and more importantly, how do I get them to show up?
    TIA

    It already was set to "Exception for Nulls"
    On the other hand, just on a whim, I tried reversing the order of the query from what it was:
    {MyQuery.Company = {?Company}
        And
        {MyQuery.Transaction_Date} In {?Start/End Date}
        Or
        IsNull({MyQuery.Transaction_Date})
    To:
    {MyQuery.Company = {?Company}
        And
        IsNull({MyQuery.Transaction_Date})
        Or
        {MyQuery.Transaction_Date} In {?Start/End Date}
    And that seemed to work.  I'm not sure why it will work in the Mangement Studio, but not in Crystal Reports, but at least it works.
    Thanks for the tug in the right direction.

Maybe you are looking for

  • Need help restoring data

    I have several disparate Windows 2003-based database with limited storage and memory resources. Each database is running in NOARCHIVE mode. I have a need to backup the database prior to upgrades. If errors occur, I'd like to be able to restore the da

  • Problem with Android app

    One article in my folio should show a pdf-file, there is the link to this file in Web content frame. In iOS everything works fine, but Android devices don't show the file! Can native Android apps show pdf-files in Web Content???? And is it possible t

  • OS X Maverick Multi Display Support for grouping multiple monitors into one display?

    Will the new Mac Pro be capable of grouping multiple monitors into one large display?  Similar to AMD Eyefinity for the purpose of gaming.

  • Make a pic into a button

    I am new to flash. I want to make a picture into a button to link to a URL. How do I do this? please remember I am new so please baby steps. I would've tried F1 but it just doesn't open.

  • GB songs from iMac to iPod?

    (believe me I did try to search for this before posting) How do I get my GarageBand '11 songs I created on my iMac (full iLife version) onto my iPad? Many thanks in advance! Bryan