DWW: BI Content is empty

Hi all,
after login on BI System, I can open Object types but when I "Select Object" under any object types, nothing is display instead of a "input help for Metadata" sub window.
does anyone know the reason why?
Thanks,
Chuong Hoang

hi,
goto RSA1select system-statusthere you can see a find symbol(push button) under sap system data. select that onesearch for software component BI_CONT with release, level and support package. if its' there means the bi content is installed. otherwise not.
hope this help you
regards
harikrishna N

Similar Messages

  • When opening a word document, I get this:The table of contents is empty because none of the paragraph styles selected in the Document Inspector are used in the document. Is there a way to solve this?

    The table of contents is empty because none of the paragraph styles selected in the Document Inspector are used in the document.
    The above is what I get when I open a word document. Is there a way to solve this?

    Hmmm. Apply the styles?
    Peter

  • Tab content is empty when tab is dragged

    I have two TabPanes which can move tabs each other. This is the code of the TabPane which receives the dragged tabs from the user:
    tabPane.setOnDragDropped(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && TAB_DRAG_KEY.equals(dragboard.getString())
                            && DragBuffer.getDraggingTab().get() != null
                            && DragBuffer.getDraggingTab().get().getTabPane() != tabPane)
                        final Tab tab = DragBuffer.getDraggingTab().get();
                        tab.getTabPane().getTabs().remove(tab);
                        tabPane.getTabs().add(tab);
                        tabPane.getSelectionModel().select(tab);
                        event.setDropCompleted(true);
                        DragBuffer.getDraggingTab().set(null);
                        event.consume();
    I noticed that when I drag the tab into the target TabPane the content of the tab is empty. But when I swith to the next tab of the target tabPane and return back I can see the content. This is couced by this line:
    tab.getTabPane().getTabs().remove(tab);
    Can you tell me how I can change the logic in order to prevent the empty tab body?
    Ref javafx 2 - Tab content is empty when tab is dragged - Stack Overflow

    This looks like a bug; I see the same thing in the context of your other thread. I can't seem to find a workaround. I have some sample code below which demonstrates the same problem without cluttering the code with drag and drop. This should move the selected tab in the bottom tapPane to the top tabPane ("Up" button) or the selected tab in the top tabPane to the bottom tabPane ("Down" button). When a tab is moved it is automatically selected; moving a tab to the top tabPane fails to show its content. (Strangely, moving a tab to the bottom tabPane works fine.) You should probably file a JIRA; reference this thread ("discussion" in the new forum-speak).
    import java.util.Random;
    import javafx.application.Application;
    import javafx.beans.binding.Bindings;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.Tab;
    import javafx.scene.control.TabPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.Pane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TabSelectionTest extends Application {
    @Override
      public void start(Stage primaryStage) {
      final TabPane tabPane1 = new TabPane();
      final Random rng = new Random();
      final int NUM_TABS = 4 ;
      for (int i=1; i<=NUM_TABS; i++) {
        tabPane1.getTabs().add(createTab(rng, i));
      final TabPane tabPane2 = new TabPane();
        for (int i=1; i<=NUM_TABS; i++) {
          tabPane2.getTabs().add(createTab(rng, i+NUM_TABS));
      final Button moveToPane1Button = new Button("Up");
      final Button moveToPane2Button= new Button("Down");
      final HBox buttons = new HBox(10);
      buttons.getChildren().addAll(moveToPane1Button, moveToPane2Button);
      moveToPane1Button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Tab selectedTab = tabPane2.getSelectionModel().getSelectedItem();
            tabPane2.getTabs().remove(selectedTab);
            tabPane1.getTabs().add(selectedTab);
            tabPane1.getSelectionModel().select(selectedTab);
        moveToPane2Button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Tab selectedTab = tabPane1.getSelectionModel().getSelectedItem();
            tabPane1.getTabs().remove(selectedTab);
            tabPane2.getTabs().add(selectedTab);
            tabPane2.getSelectionModel().select(selectedTab);
        moveToPane1Button.disableProperty().bind(Bindings.isEmpty(tabPane2.getTabs()));
        moveToPane2Button.disableProperty().bind(Bindings.isEmpty(tabPane1.getTabs()));
        VBox root = new VBox(10);
      root.getChildren().addAll(tabPane1, buttons, tabPane2);
      primaryStage.setScene(new Scene(root, 600, 500));
      primaryStage.show();
      private Tab createTab(Random rng, int i) {
        Tab tab = new Tab("Tab "+i);
        Pane pane = new Pane();
        pane.setMinSize(600, 400);
        String style = String.format("-fx-background-color: rgb(%d,  %d, %d);", rng.nextInt(256), rng.nextInt(256), rng.nextInt(256));
        pane.setStyle(style);
        pane.getChildren().add(new Label("This is tab "+i));
        tab.setContent(pane);
        return tab ;
      public static void main(String[] args) {
      launch(args);

  • Discoverer portlet error: blob content is empty.

    I created 6 disco reports and some are giving error, Failed to retrieve an entry from the cache in the Discoverer Portlet Repository. The BLOB content is empty.
    This error only happens with certain users. The users can log directly into discoveer viewer and see the reports. Just not in portal. It also gives me this error randomly and I have to delete the portlet and recreate it. Has anyone else experienced this problem.
    BH

    I copied and pasted the above code to my jsp. It works fine for me . I get the content correctly. Tried on a ps 7.1
    hope the additional character "/>" is not intended
    <td>city</td><td><input name="city"value="city"/>/></td>

  • File Content Conversion: Empty File

    Dear Experts,
    I'm doing a file to file scenario with FCC. My file gets picked up from the source folder but the communication channel doesn't send the file for processing ahead. This is the error I get in Communication channel monitoring:
    Channel Send_Acceptance_File: Entire file content converted to XML format
    2008-10-10 12:09:38| Warning |Channel Send_Acceptance_File: Empty document found. Proceed without sending message
    2008-10-10 12:09:38| Success |Confirmation mode test found. File will be resent next time
    I don't see any entry in sxmb_moni.
    What could be the possible reason for this.
    Thanks and Regards,
    Merrilly

    Hi Merrily
    Problem is with your FCC.
    Are you using Key field in FCC with and keyFieldInStructure      as ignore?
    This problem arises due to incorrect keys or Data type mis match for the record structure in FCC.
    Thanks
    Gaurav

  • MS - contention with empty materialized view on demand - 10.2.0.4

    Could somebody explain what is MS - contention? I've searched everywhere and got just that it is used to setup materialized view log. I need more deeper explanation. Why is it needed? And the main thing - I have this materialized view:
    CREATE MATERIALIZED VIEW "CLIENT_MV"
    ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 1048576 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    BUILD IMMEDIATE
    USING INDEX
    REFRESH FAST ON DEMAND
    WITH PRIMARY KEY USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE
    AS SELECT CLIENT_ID FROM CLIENT WHERE 1=0
    And mlog on it. What activity can cause MS-contention on it? I tried concurrent updates on a master table, refreshed it at the same time, but can't get contention. May be it is important that I saw this contention in v$active_history view
    Edited by: user6895786 on 26.02.2010 6:11

    user626582 wrote:
    Hi all
    I have trouble on a 10.2.0.4. All Users have lost their Passwords, that means that the column password in the view dba_users is empty an Users can't login anymore.
    I didn't found a logfile or something else. Have you got an idea ? Profiles eg ?
    Thanks for your help.What is the error that the users are getting, invalid user name and password, is it? Did you do any recent patching of your system/db? I would suggest that you raise an SR with oracle as it would highly descreuctive to play with base tables on your own.
    HTH
    Aman....

  • Effect and Content Panel Empty

    HI
    have iMac Intel Core i3 OS 10.6.6.
    Bought Adope Photshop Elements Software with DVD, made full install, however the "Effect" and "Content" panels are empty.
    No effects, no frames etc. to choose from!
    Where is the stuff, how can I get it installed?
    Many thanks
    A from CH

    Go to your hard drive>library>Application Support>Adobe>Photoshop Elements>9.0>Locale>en_US (or wherever you are) and delete mediaDatabase.db3. The next time you start PSE don't do anything till the contents of the panels show up.
    Note that you have 3 library folders: system>library, your username>library, and the one at the top level of your hard drive. You want the last one.

  • Effects / Contents folder empty, Elements 9 on Mac 10.6.8

    Hi. My Effects / Contents folders are showing empty, and of course they are both checked in Window. Various forums suggest doing un-install on previous Elements versions and reloading, which I have done without success. Another suggestion is deleting Mediadatabase.db3 from Locale/en_US, but I am not seeing the Mediadatabase file in Locale.
    Any suggestions please ?
    Thanks.
    Dave.

    Then are you sure you're in the correct folder? It should be in library (the one at the top level of your hard drive, not system>library or your username>library)>Application Support>Adobe>Photoshop Elements>9.0>Locale>en_US (or wherever you are).

  • Gadget Content are empty

    We are using plumtree 4.5 WS. We have strange thing happing for the remote gadget only. It is dispalying the gadget heading and not displaying any content of the gadget. When I looked into API calls used by PLUMTREE in frameworkfile mypage\myportal.asp(I haven't change the framework code), I experienced that it is not pulling the content. Is there any thought what might be happing behind the scene??
    Sanjay

    After adding or deleteing some nodes from the DOM tree
    and then outputting the data back to the XML files, I
    always find some empty lines within the XML file.
    Does that make the XML file invalid?No.

  • File Sender Content Conversion Empty Fields

    Hi
    i have a problem with a filecontentconversion in the file sender adapter.
    my incoming csv has the following structure:
    ID,name,,,,,,,email,tel,,,,,
    in the xml that i am processing i would just need a structure
    <rootnode>
    <user>
    <ID></ID>
    <name></name>
    <email></email>
    <tel></tel>
    </user>
    </rootnode>
    i would like to ignore the rest of the fields.
    can anybody tell me if its possible to make a conversion like this or do i have to define a structure where all elements are included ?
    thanks ,
    martin

    Hi Martin,
    In the data type for your sender Service Interface, just set the occurrence of your optional fields to 0..1. Thanks to this, they will not be created by FCC for empty values from a file, which is what you want to achieve.
    Hope this helps,
    Greg

  • OLM Catalog Administrator content is empty

    Hi,
    I have an issue with one user that has Oracle Learning Management Administration responsibility assigned but he goes to Catalog administrator it show No Results found and he can't view, add, move category as they are hidden and unshown. however a different user with the same responsibility can view the content and see all course and move catalog.
    One additional thing, that more functions are assigned to user 2 than user 1 even though they both has the same responsibility. for example user to has enrollement, organization, setup in their menus while user 1 doesn't.
    both users has the following functions
    •Catalog Administration
    •Resources
    •Resource Bookings
    •Learner Enrollments and Subscriptions
    •Learning History
    •Content Administration
    •Cost Transfer Finance Headers
    •Setup Administration
    Your help is very appreciated

    Thank you for your reply. Is it possible to do it with a different user than sysadmin but he has System Administrator and User Management Respoinsibilities assigned to him or it will cause setup problems.

  • Globally adding content to empty cells in InDesign Tables

    I have a file with 190 tables, all with a number of empty cells. The client has decided that these cells need to contain an m-dash. Is there a way to globally add this m-dash to all empty cells, to avoid having to go cell by cell?

    I think that would have to be scripted.
    Perhaps check out the Scripting forum - but sometimes those clever scripters are lurking here too

  • After updating Firefox, I can still open my Telia webmail but the mail content is empty

    see above. When using Internet Explorer my webmail account works without a problem

    What about clearing the cache and cookies? The section at which the link starts "The problem only happens with certain websites", suggests clearing the cache and cookies for three message types:
    *The connection was interrupted
    *'''''<u>The connection was reset</u>''''' -- '''''isn't that similar to the message in your question?'''''
    *The connection has timed out
    Checking the proxy setting is suggested for 2 other messages, not "The connection to the server was reset":
    *The proxy server is refusing connections
    *Unable to find the proxy server
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How to create a Table of Contents using Pages 09?

    Hi guys,
    I have little problems creating a Table of Contents in Pages, though it seems quite simple. I'm working with the template 'Term Paper' and I use paragraph styles (Title, Heading I, II, etc.). I have some very long documents (about 80 pages long) so I wanted to create a TOC (using sections) but it says:
    The table of contents is empty because none of the paragraph styles selected in the Document Inspector are used in the document.
    When I compare the paragraph styles I do use and the paragraph styles in the Document Inspector, they match. So I'm a bit upset about this because I really need to use this great feature!
    Thanks for you answers guys!

    I would say: Try and Error. Create a copy of your document and unmark in the copied document in the document inspector all boxes for the TOC. Then mark them again. Maybe you should also delete the paragraph styles and mark them again. If that doesn't work, try to copy the complete text of your document to a new created one. Maybe that works.
    Good luck!
    P.S.: If that doesn't work look here. Maybe this helps.

  • Can see contents of remote disk, but can't see it's contents

    Hi community.
    My configuration: MBA 13" (late 2010) and a Win7 computer with a DVD drive. Done everything as described in this note: http://support.apple.com/kb/HT1777
    On MBA, I see the entry "Remote disk" on the sidebar, i see my Win7 PC in the list.
    But when I expand it, the contents are empty (a dvd is inside and I can see it both by file sharing and by RDP on Windows)
    What do I do wrong? Tx in advance

    I can see the Windows PC, but I cant see the drive.
    So I only can do a 'Get info' on the PC and it says 'PC server'

Maybe you are looking for

  • Triggering END_OF_PAGE IN CLASSIC REPORT

    Hi Experts,                       I have one classical reporting in that END_OF_PAGE is not Triggered At last Page due to Less No of Records in last Page,can anyone tell me how to trigger END_OF_PAGE  . i want to display the page total for every page

  • Proxy to JDBC

    Hi, We have a scenario PROXY(ABAP)->XI->JDBC. The source structure is Partners(occurance n),Line items(occurence n). The target structure is Details(Occurance n). For "n" number of Partners and "m" number of Line items in source we need m*n(i.e, m mu

  • Allow Networking Disabled when Webpage Renders in an App Hosting Webbrowser Control

    Was there a change with Security for Network requests for Flash player 11.4? I have a Windows Application that hosts the Webbrowser Control. When browsing webpages with Flash files that load external requests, the Flash ActiveX control does not load

  • Can't start obextool

    I installed obextool (via pacman) in an attempt to make it easy for me to ftp stuff to/from my phone via bluetooth.  Every time I try and start it I get the following error: Error in startup script: can't find package tablelist     while executing   

  • I can't load Adobe Flash. It looks like it installs but it is not working!

    I download flash and it tells me to close Firefox. After I do that it appears to install. But, anything that requires flash tells me I don't have it installed and asked to download it again. It does work with IE