Cannot see data in HFR

I have a Planning application which is showing up data in data forms for a particular scenario/version/year/period combination.
However, when trying to view the data through a HFR financial report for the same intersection, there is no data all of a sudden. I double checked the intersection combination to make sure it matches what we see in the data forms, and it does.
Just wondering if anybody has any guidance as to how to proceed: what else can I check?
thanks.

Login to Workspace > Explore > Tools > Database Connection Manager. Confirm that the database connection is created. Click Close.
Click on Tools > Change Database Connections > Find your report > Click OK > The first box (Find all references to the Database Connection) shows you which db connection your report is mapped to.
Hope this helps.
Cheers,
Mehmet

Similar Messages

  • Cannot see data in BSO from transparent ASO partition

    I have 2 cubes: BSO (target) and ASO (source).
    BSO should show data from ASO corresponding element "Fact" from dimension "Scenario".
    I can see the data using ASO directly, but I cannot see data viewing it from BSO using transparent partition...

    Hi,
    When you have the data in the ASO( i.e source cube) ,it should reflect in the BSO ( i.e destination) . I am sure there is problem with the transparent partition ,you had created .Validate and share more info of error ( if you encounter during partition creatino) , that should be resourceful
    Sandeep Reddy Enti
    HCC

  • Cannot see data in SAP.Web.UI.Controls.Table

    Hi,I have created a portal project and dragged a sap table into the design area. then i call a webservice and bind the resulting dataset to the table. the dataset seems to bind, since i can see there are the right number of pages in the table, but i cannot see any of the data. all the rows are blank. am i treating the ascx file correctly? i deploy and browse to test it.
    this is the code in the aspx:
    <%@ Register TagPrefix="sap" Namespace="SAP.Web.UI.Controls" Assembly="SAP.Web, Version=1.2.0.0, Culture=neutral, PublicKeyToken=50436dca5c7f7d23" %>
    <%@ Control language="vb" Codebehind="PortalComponent1.ascx.vb" AutoEventWireup="false" Inherits="pdkdemo2.PortalComponent1"  targetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
    <!%@ PortalComponent name="PortalComponent1" %>
    <LINK href="C:\Program Files\SAP\SAP Portal Development Kit for .NET 1.0\Controls\ur\ur_design.css"
         type="text/css" rel="stylesheet">
    <body class="prtlBody">
         <sap:Table id="Table1" runat="server">
              <sap:Caption Text="Table" ID="Caption2"></sap:Caption>
              <sap:TableRow ID="Table1_ItemTemplate">
                   <sap:TableCell ID="TableCell4" Title="Column1">
                        <sap:TextView ID="TextView4"></sap:TextView>
                   </sap:TableCell>
                   <sap:TableCell ID="TableCell5" Title="Column2">
                        <sap:TextView ID="TextView5"></sap:TextView>
                   </sap:TableCell>
                   <sap:TableCell ID="TableCell6" Title="Column3">
                        <sap:TextView ID="TextView6"></sap:TextView>
                   </sap:TableCell>
              </sap:TableRow>
         </sap:Table>
    </body>
    and this is the code behind:
    Imports System
    Imports System.Collections
    Imports System.ComponentModel
    Imports System.Data
    Imports System.Drawing
    Imports System.Web
    Imports System.Web.UI
    Imports SAP.Portal.Web.UI
    Imports SAP.UI
    Imports SAP.Web.UI.Controls
    Public class PortalComponent1
        Inherits SAP.Portal.Web.UI.PortalComponent
        Protected WithEvents Table1 As SAP.Web.UI.Controls.Table
        Protected WithEvents Caption1 As SAP.Web.UI.Controls.Caption
        Protected WithEvents Table1_ItemTemplate As SAP.Web.UI.Controls.TableRow
        Protected WithEvents TableCell1 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView1 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell2 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView2 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell3 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents Caption2 As SAP.Web.UI.Controls.Caption
        Protected WithEvents TableCell4 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView4 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell5 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView5 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell6 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView6 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TextView3 As SAP.Web.UI.Controls.TextView
        Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim proxy As New secblrnd.Service1
            Dim ds As DataSet
            ds = proxy.GetData("U020_EQUIP", "ALL", "NO", 0, "MOODLET1", "MOODLET1")
            Table1.DataSource = ds
            Table1.DataBind()
        End Sub
    #Region "Web Form Designer generated code"
        Protected Overrides Sub OnInit(ByVal e As EventArgs)
            ' CODEGEN: This call is required by the ASP.NET Web Form Designer.
            InitializeComponent()
            MyBase.OnInit(e)
        End Sub
        ' Required method for Designer support - do not modify
        ' the contents of this method with the code editor.
        Private Sub InitializeComponent()
        End Sub
    #End Region
    End class
    any assistance would be highly appreciated.

    Hi,
    The problem is that the SAP table doesn't support this kind of "dynamic binding" at the moment. The SAP table can contain any one of several controls in each cell, and these controls have several possible properties to bind to. So currently you have to "tell" the table what you want to bind to.
    You have several options:
    1. The easiest option, if you can create a typed dataset in design-time, according to what your webservice returns, then do that... and then put an instance of it on your portal component, and bind your table to that typed dataset (using the designer property grid). This should create a default ItemTemplate with all textViews in the cells, and the texts will be bound to the columns.
    2. Write code in ItemCreated Event handler of the table. This event will be raised for each row in the DS. There you can tell the cells to get the data from the content. Remember that you'd have to create the cells according to the number of columns and set the content of each cell to be what control you want (like TextView) and then fill the properties of that control.
    3. If you know the Data structure, but don't want to or can't create a typed DataSet - First define the columns using the designer (right click the table, select "edit columns"). Then in the event handler (from "2") just set the property "text" of each TextView which is in the content of each cell (use the Cell's property "TableCellContent" to get to the TextView control)
    4. Don't use databinding and create the table contents completely manually (See here -
    How to modify cells in a table?)
    One last thing, here's a link to some more explanations about DataBinding in SAP controls:
    https://media.sdn.sap.com/html/submitted_docs/PDK_for_dotNET_10/Programming%20with%20PDK%20for%20.NET/SAP%20NetWeaver%20.NET%20Controls/Data%20Binding/Complex%20Data%20Binding.htm
    If you choose a solution and need more help, just ask. 
    Regards,
    Ofer

  • Cannot see data or enter data in pdf forms

    I am an elementary school teacher, and use an application to maintain student information.  I am able to navigate thru the app to select various student data, but when I click to display a students information, a blank PDF form is displayed.  Borders and grids display, but no data is displayed, and I cannot enter any data.  The IT help desk suggested uninstalling the old Adobe Reader, and replacing with 9.4.1, but this did not help.    

    It's really hard to say what's going on without knowing more about the system. It's possible that the program is generating an FDF (Forms Data Format) file and launches it, causing the PDF to load and populate with the data in the FDF. Folks have reported that recent changes to Reader have broken this type of thing. So you may need to go back to an even earlier version, such as 9.2 or 9.3, or somehow contact the developers of the application for help.
    Is this something that happens in a web browser?

  • ITunes cannot see data in the MyBookLive shared drive, but it's there

    I have iTunes on a Mac OS X 10.6 and the 2TB MBL. I transferred 40G of music from local drives to my MBL successfully. I can see those in Finder - Public - Shared Music. I enabled the Public Share to be "ALL" for media sharing. I can see the MBL in the SHARED options in iTunes, then when I click on it, or double click on it, I only see the 3 default playlists - Movies, Music, and TV. There are no files in any of them. I have iTunes Enabled in the MBL Settings - Media. I then rebootedthe MBL then rebooted the Mac, and still no luck.
    The WD goons think this is an apple issue. Please help.

    Moved to Crystal Reports forum.
    ludek

  • Cannot see data in infotype when creating new Crystal Report

    Dear Experts,
    I have installed SAP Crystal Report 2011 trial version. After many weeks of trying to install CR2011 and making it work, i finally able to connect to SAP R/3 (ECC5.0).
    The problem is after choosing the table (eg. PA0002) and selecting field "employee number", "name", "start date", "end date" and other fields and selecting preview, the report only show "employee number", "start date" and "end date".
    The rest of the fields in PA0002 is showing BLANKS. I check in backend R/3 and the data is there.
    I also tried choosing "Mandt", the field is also showing blank in report preview.
    My basis team has done the following:
    1. Performing ABAP imports
    2. Grant authorisation for crystal report connection
    But still the fields above is not showing.
    Any clue?
    Thank in advance,
    Zul

    HI Zul,
    Its clearly the problem with the version of crystal you are using
    you have mentioned that you are using crystal 2011 and the ECC is SAP R/3 5.0
    Because crystal 2011 is only compatible with latest ECC client like 6.0 and above ...
    Solution are :-
    1.) you can upgrade the connectivity driver with the ECC
    or
    2.) you can use 2008 crystal report tool to connect the table , so can find the missing feilds
    Please try this and let me know you are able to fix this
    Thank you
    R.Arun

  • Cannot see data on  totals for a cross tab report

    Hi All,
    I create calculation with Count_Distinct function in crosstab format
    when insert Total in the bottom, the data is not appear in total.
    What is wrong about my report?
    Thank you,
    Mcka

    Is the same problem happening in a 'table' as well as the xtab?
    If so, then have you more than 1 folder being joined in this report?
    Russ

  • Cannot see data in table column

    Hello All,
    There is no data being shown in my table columns as soon as I increased the amount of data that is being placed in each column. how should i fix this?
    Thanks

    Hi Vijay,
    Please explain your question in detail.
    Please check the table Datasource property and check the column data bindings.
    Regards, Anilkumar

  • Cannot see dates in time machine

    I am trying to use Time Machine but when it opens it only shows my files from todays date. It doesnt show the previous dates. Any ideas?

    Have earlier backups completed successfully?
    Does the Time Machine Preferences panel show a last backup date?
    Assuming you're starting from a Finder window, was the folder it's showing backed-up previously?

  • Excel - Cannot see any new data in Excel Workbook

    Hi There,
    Wonder if anyone can help, we have a .xlsx file, we have it setup so that only one person at a time can edit the workbook.
    When a colleague edits some data and saves the change, I go into it but cannot see the new data. I then do the same but she cannot see the changes and neither can a 3rd colleague. In effect, whenever any one
    makes a change in the workbook, no one else can see the new saved data that has been added. 
    The work book is not protected. It is stored on a server, all users are running Office 2013 apart from
    1 who is using 2003, but it doesnt matter as even if a change is made using office2013, another office 2013 client still can't see the change.
    It doesn't seem to happen with any other workbooks.
    Tried open and repair which didn't work. Also tried saving a new version of the workbook, this works for a while but then the issue comes back on the new version.
    Any ideas, as currently we keep having to save new versions of the workbook.

    Hi,
    What's the extension of this particular file ?Try another file format to test this issue.
    Did you get any message when try to save the document? Also does this problem happens when use the 'save as' option within Excel to save the file?
    Also try to download the excel file to local driver, update the Excel file,then upload it to the server.
    Wind Zhang
    TechNet Community Support

  • Cannot see System DSN ODBC Data source (however user DSN is Ok)

    We have installed BO 6.5.1 on Windows 2008 R2 64 bit and set up ODBC Data source to the existing SQL server.
    When we try to set the BO up (Administration>Safe recovery etc.), in the "Database middleware selection" - "Define new connection" - "Data source name" we cannot see the System DSN name that we've created in the Window's "ODBC data source administration" control panel applet. If we create a User DSN, we can see it ok but it works for one user only (as it should).
    So, in a nutshell, if we setup a User DSN it works fine but if we setup a system-wide System DSN BO cannot see it. I've got no idea why...
    Can anyone point me to the right direction, please?

    Are you using the ODBC Administrator from control panel?  If so, try launching this instead:  odbcad32.exe from start/run.
    This is the 32-bit ODBC administrator and since we are a 32-bit application, a 32-bit DSN will need to be configured.
    Here's another forum thread that may be helpful:
    http://social.msdn.microsoft.com/Forums/en/sqldataaccess/thread/49e206c3-f4f8-4757-8990-71b93120d2bc
    and this one too:
    http://forums.techarena.in/windows-x64-edition/698703.htm
    Thanks
    Jonathan

  • I used time machine to restore on a formatted MAC. Now the HDD space has reduced by 100GB but I cannot see any of the files. How do I find and delete those 100GB data from the HDD?

    I used time machine to restore on a formatted MAC. Now the HDD space has reduced by 100GB but I cannot see any of the files. How do I find and delete those 100GB data from the HDD?

    dglenn9000 wrote:
    I created a new user account just to see if it was my user Library or if there was something wrong with my system. And the new user account is doing most of the same things so I will need to do a full restore anyway.
    Not necessarily. I'd suggest downloading and installing the "combo" update. That's a combination (thus the clever name) of all the updates to Leopard since it was first released, so installing it should fix anything that's gone wrong since then, such as with one of the normal "point" updates. Info and download available at: http://support.apple.com/downloads/MacOS_X_10_5_8_ComboUpdate Be sure to do a +Repair Permissions+ via Disk Utility (in your Applications/Utilities folder) afterwards.

  • HT1418 I have iPod4 and cannot see day-to-day appointments, etc on PC Outlook calendar.  Only repeated items (birthdays, anniversaries, etc.) are visible.  Where is the rest of my data and how do I restore it to the only calendar I have in Outlook?

    I have iPod4 and cannot see day-to-day appointments, etc on PC Outlook calendar.  Only repeated items (birthdays, anniversaries, etc.) are visible.  Where is the rest of my data and how do I restore it to the only calendar I have in Outlook?
    Thanks

    Hello Schimi. The Time Capsule is a kind of product that offer you two possibility:
    - To use the TC as a router or as an external HD.
    The difference between WPA and WPA 2 are:
    - They are two kinds of internet connection.
    WPA uses dynamic key encryption , which means that the key is constantly changing and makes the invasion of a wireless network more difficult than WEP . WPA is considered one of the highest levels of wireless security for your network and is recommended if your devices support this kind of encryption . Newer routers offer WPA2 security . WPA2 is compatible with WPA , but offers higher security level . In fact, it meets the high standards of many government agencies . If the router and computer support WPA2 , this should be your choice.
    If you need any help or if you find some difficult setting up it you can contact Apple Support.
    I am sure that they can help you with that.
    I am sory for the delay. I holpe that you solve your issue.

  • Please help: User cannot see webi report data

    Hi,
    I've got a wired problem here in my webi report. Basically I am located in Singapore and produced a webi report for our user in UK. The report looks totally fine with all the data shown correctly. But when our report user logged into the dashboard from UK, she could only see partial data and some of the information are missing(blank cells in the report).
    To verify the cause I've done the following test:
    1. I remote control her computer and log into dashboard using my account, the result is I get same problem and I cannot see some of the data.
    2. I let her remote control my pc and log into dashboard using her account, she no longer has this problem and can see complete data.
    We use same version of IE, same JAVA version. And the report data is not time sensitive, so different time zone might not the possible cause.
    This problem is killing me. Can anyone please help and let me know any possible solution? Thanks so much.
    Edited by: Sinsin Tan on Jul 14, 2010 5:59 AM

    Hi Sinsin, what version of BusinessObjects are you using? Is it XI 3.1?
    I don't know if it is the same problem or not, but I have seen that before when a user cannot view the data, change the font and/or background color and the data becomes visible. Reinstalling the client fixed that problem. If you couldn't figure out the root cause, you might want to consider this option.
    If you are using the BusinessObjects tool, you should join [ASUG|www.asug.com]

  • I cannot see all the data in target disk mode

    I have an issue where my MacBook pro is not booting into the Yosemite.  I see the progress bar hangs at about 45% on the startup screen. I called Apple support and they asked to use the target disk mode to connect to my mac and then copy data like that. I am using the same technique but I am not seeing all the data under users. My data under the folder users had another users data that I cannot see.
    How can I see my data for all the other users? Help please!!!

    Could be that the the data or directors on the HD are corrupted.
    - Copy all data you can
    - Try cloning the whole disk to another disk before you attempt recovery methods.
    - Try repairing the HD via Disk Utility
    - Try a data recovery program
    http://data-recovery-software-review.toptenreviews.com/mac-recovery-software/

Maybe you are looking for

  • Background scheduling in BAPI

    REPORT  ZIND_BACKGROUND_JOB MESSAGE-ID zsd                                     NO STANDARD PAGE HEADING                                     LINE-SIZE 160. Tables TABLES: mara,mvke. Data Definitions. TYPES: BEGIN OF ty_mat,          matnr     TYPE mar

  • Delete From Table on Cancel Button.

    Hi, i am facing funny problem. i have created form with report page and i have implement send email option on Page so i am attach more document with email.if i attach document then it's going in DUMY_DOC_FILE table . i have create a process delete fr

  • The "View in iTunes" button doesn't work on Chrome

    When I'm looking at an iTunes Preview of an album on the iTunes web version (not the program) and I click "View in iTunes" so I can go buy the album or look at the artist's other stuff in the program, nothing happens. There's no message, iTunes doesn

  • Please will like to get my deleted recording back from quick

    Please I will like to get my deleted recording back from quick voice app

  • USE OF FM MODULE HRIQ_READ_INFTY_1001 URGENT

    Hi, My best wishes in the new year for all. Well, I've been using the FM HRIQ_READ_INFTY_1001 in order to read the infotype HRP1001. I need to get the info of the field ADATANR, in order to build the key of the HRPAD500. Now, the gotten data by using