Missing BI content

Our BI system is missing some of the Business content objects.  Hence we cannot acivate them and use them.  The interesting thing is that we are able to see some object and active them, while few other objects are not showing up in the list to be activated.  Has anybody seen this problem before, and we would be curious to know how to solve this. 
While searching this post, noticed few suggesting to re-install BI content. Our install logs did not indicate any errors during install. 
Any suggestions? 
Below is our system details:
Soft comp                           Release                            Level
SAP_ABA          700          0019
SAP_BASIS                          700          0019
PI_BASIS                          2006_1_700                          0009
ST-PI          2008_1_700                          0001
SAP_BW          700          0021
BI_CONT          704          0003

We are having the same issue?  I am activating 0SD_C03 Sales Overview.  I have successfully activated the cube and datasources but none of the transformations are available to be installed. 
We have the following status
SAP_ABA     700     0019     SAPKA70019     Cross-Application Component
SAP_BASIS     700     0019     SAPKB70019     SAP Basis Component
PI_BASIS     2006_1_700     0009     SAPKIPYM09     Basis Plug-In (PI_BASIS) 2006_1_700
ST-PI     2008_1_700     0001     SAPKITLRD1     SAP Solution Tools Plug-In
SAP_BW     700     0021     SAPKW70021     SAP NetWeaver BI 7.0
BI_CONT     704     0003     SAPK-70403INBICONT     Business Intelligence Content
MDM_TECH     555_700     0008     SAPK-57008INMDMTECH     MDM_TECH 555 : Add-On Installation
ST-A/PI     01L_BCO700     0000          -     Servicetools for other App./Netweaver 04

Similar Messages

  • Missing BI content datasources

    Hi all. I have an issue... I'm trying to activate some BI content datasources, but there are missing a lot of them. Do somebody knows why?
    Here are my system status:
    SAP_BW     700     0017     SAPKW70017     SAP NetWeaver BI 7.0
    BI_CONT     703     0009     SAPKIBIIP9     Business Intelligence Content
    Note: It only happens in my BW DEV system. In BW QAS (same installation) there are all the missing datasources.

    There have not many BI content datasources in BI.
    If you are considering ERP data source, you should check RSA6 in ERP/QAS and Compare it with RSA6 in ERP/DEV.
    Transport all datasources in interests from ERP/DEV to ERP/QAS and replicated them to BI/QAS at once, and you will find the missing BI Content data sources.
    hope it can help.
    regards,
    K

  • SP23 missing BI content when processing EWA data

    Hello,
    In a recently upgraded solman system i am trying to process downloaded EWA data. For this a batch job SM:EXEC SERVICES is scheduled.
    This job cancels however with message InfoCube 0SMD_PE2D is not available in version A.
    When I search for this infocube in RSA1 i do not find it, so it seems I am missing some content.
    Is this true? Or am i doing something wrong here?. Do I need to activate some ehp1 funtionality for this?
    Thanks for any help
    Tom

    >
    Tom van Rooyen wrote:
    > One error at least was that in SOLMAN_SETUP the BI activation failed because the myself source system was not present at the time. Still the job went technically OK, which is not good practise
    Tom,
    Could you please open a separate thread in SDN or open a customer message on SV-SMG-INS to discuss the expected behavior within SOLMAN_SETUP.
    I would also appreciate to avoid running into issues during EWA processing. Detection should have been possible earlier for users.
    Thanks,
    Ruediger

  • App store icon gone missing/Web Content Filter - Apple Configurator

    I am using Apple Configurator to manage the iPads at my school. I changed the settings on my school's profile, within Apple Configurator, so that the App store was not available. The App store icon disappeared and all was good. I decided to change the settings back, to allow the App store, saved the settings and refreshed a group of iPads. The App store icon is still missing and it doesn't appear that my new settings have been applied. I quit Configurator and tried again, but no success. I am running Configurator 1.5 and the ipads are running iOS 7.1.
    Also, I have unchecked the "Allow use of You Tube" button because I want You Tube disabled, but Configurator still allows the use of You Tube through Safari. Is there any way to disable the use of You Tube without using the ridiculous "Web Content Filter", that when activated, limits adult content (good), which seems to include a lot of valuable educational sites (bad)? To me the only other option available seems to be to tick "Specific Websites Only" and spend the next year typing in all the possible sites that might have educational merit, ergo, my use of the word 'ridiculous'. Is there something I am missing?

    Locate it in the Apps folder and drag it to the dock.

  • Missing BI Content Objects

    Hello,
    I have a question concerning the activation of objects of BI Content (Release 703, Level12). When searching for a 3.x datasource (for example 0PM_OM_OPA_3) in the value help the datasource I want to activate is missing in our development BI system. In the productive system the BI content has the datasource as a possibility to activate. I activated and replicated the datasource in the system. Is there a technical step I have to activate for BI Content or maybe for meta data repository. Any help is appreciated!!!
    Thanks a lot!
    Aline

    The BI Content Standard dont...but the objects you activated...yes you can reactivate the same object...you have a very strange problem....when you select in Datasources 3.X in BI content you dont see this datasource.....i think is a Basis problem.....i have exactly the same BI Content level than you and i can see it in my system....
    Sometimes in new installations theres som BI Content problems like this....
    Regards

  • Missing the content when saving HTML from JEditorPane.write(..)

    hi,
    i m trying to develop html editor using JEditorPane. the document type used is HTMLDocument and HTMLEditorKit. when I try to save using the following function:
    try{
    FileWriter     w = new FileWriter("doc.html");
    //HTMLEditorKit edi = (HTMLEditorKit)editorPane.getEditorKit();
    EditorKit edi = editorPane.getEditorKit();
    //StyledEditorKit edi = new StyledEditorKit();
    //edi.write(w, (StyledDocument)editorPane.getDocument(), 0, editorPane.getDocument().getLength());
    editorPane.write(w);
    w.close();
    }catch(Exception de){System.out.println(de);
    }all the contents are missing, only the tags are intact in the output file doc.html. I am using JDK 1.4.2
    anybody can help me? thank you very much

    here is the code. hehe sorry lol it took me sometime to take off all the function. please try to type something and then save. only the update is saved but the default heading (well in this case, i have replace them all with a "something must be here". thank you very much
    // HTMLEditor.java
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.io.*;
    public class HTMLEditor extends JFrame{
      private JTextComponent textComp;
      public static void main(String[] args) {
        HTMLEditor editor = new HTMLEditor();
        editor.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        editor.setVisible(true);
      public HTMLEditor() {
        super("Swing Editor");
        textComp = createTextComponent();
        Container content = getContentPane();
        content.add(textComp, BorderLayout.CENTER);
        content.add(createToolBar(), BorderLayout.NORTH);
        setSize(320, 240);
        Template t = new Template((HTMLDocument)(textComp.getDocument()));
        t.setupTemplate();
      // Override to create a JEditorPane with the HTMLEditorKit in place
      protected JTextComponent createTextComponent() {
        JEditorPane jep = new JEditorPane();
        jep.setEditorKit(new HTMLEditorKit2());
        JEditorPane.registerEditorKitForContentType
         ("text/html", "HTMLEditorKit2");
        return jep;
      protected JTextComponent getTextComponent() { return textComp; }
      // Add HTML actions to the toolbar
      protected JToolBar createToolBar() {
        JToolBar bar = new JToolBar();
        bar.addSeparator();
        bar.add(new StyledEditorKit.BoldAction());
        bar.add(new SaveAction());
        return bar;
      class SaveAction extends AbstractAction {
        public SaveAction() {
          super("Save", new ImageIcon("icons/save.gif"));
        // Query user for a filename and attempt to open and write the text
        // components content to the file
        public void actionPerformed(ActionEvent ev) {
          JFileChooser chooser = new JFileChooser();
          if (chooser.showSaveDialog(HTMLEditor.this) !=
              JFileChooser.APPROVE_OPTION)
            return;
          File file = chooser.getSelectedFile();
          if (file == null)
            return;
          FileWriter writer = null;
          try {
            writer = new FileWriter(file);
            textComp.write(writer);
          catch (IOException ex) {
            JOptionPane.showMessageDialog(HTMLEditor.this,
            "File Not Saved", "ERROR", JOptionPane.ERROR_MESSAGE);
          finally {
            if (writer != null) {
              try {
                writer.close();
              } catch (IOException x) {}
      class HTMLEditorKit2 extends HTMLEditorKit{
           public Document createDefaultDocument(){
             HTMLDocument doc = new HTMLDocument();;
             doc.setAsynchronousLoadPriority(-1); // load synchronously
             return doc;
    class Template{
         HTMLDocument doc;
         StyleContext styles = new StyleContext();
         public Template(HTMLDocument doc){
              this.doc= doc;
              Style def = styles.getStyle(StyleContext.DEFAULT_STYLE);
             Style heading = styles.addStyle("heading", def);
             StyleConstants.setFontFamily(heading, "SansSerif");
             StyleConstants.setBold(heading, true);
             StyleConstants.setAlignment(heading, StyleConstants.ALIGN_CENTER);
             StyleConstants.setSpaceAbove(heading, 10);
             StyleConstants.setSpaceBelow(heading, 10);
             StyleConstants.setFontSize(heading, 18);
         public void setupTemplate(){
              Style s = styles.getStyle("heading");
              try{
                   doc.insertString(doc.getLength(), "Something must be here", s);
                   doc.insertString(doc.getLength(), "\n", null);
                    doc.setLogicalStyle(doc.getLength() - 1, s);
              }catch(Exception e){}     
    }

  • Disappearing (missing) delivery content

    Symptom
    User has composed and saved content and now delivery is empty (has no content).
    Cause
    User composes Delivery content on the Campaign Dashboard and Saves the Delivery. The "dirty" version of the Delivery is not committed to the database until the Campaign is saved. However, the Save button is not activated at this point.
    Next, the user goes into the campaign workflow and opens the Delivery activity there, makes a change, such as entering a subject line or changing the Delivery label and (not noticing that the content is missing) saves the Delivery and saves the workflow. The empty delivery is now committed to the database. When the user next opens the delivery on the campaign dashboard, the content is gone.
    Fix
    There is not really a fix except to recreate the content.
    Preventative
    After initially choosing a template and saving the delivery and workflow, only edit the delivery in one place, ideally the Campaign Dashboard.
    You can force the Save button to activate by making a change to the Campaign properties, even if you change and change back. Then Save the Campaign.

    Looks like my AdBlock Plus plug-in is responsible, in Firefox
    at least. Maybe Pithhelmet or some other plug-in in Safari (haven't
    troubleshot that yet). Lesson: disabling
    plug-ins/extensions/add-ons should always be part of your initial
    troubling shooting regimen.

  • Why do I loose page content from a tab when I switch to another tab? I have to refresh to restore the missing page content.

    When I have multiple tabs open, I loose some or most of the page display contents when I leave that tab and then come back to it. I have to either refresh the tab to get the full page display back, OR I can click another tab and then quickly click back to the tab with missing page display. This will restore the display of all page content.

    Could you try disabling graphics hardware acceleration? Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!

  • Missing Library content.

    I just installed CS 6. 
    Surprise... no Encore Library Files.  Got Adobe Help notes that said I needed to install the "Resource central libraty content"... which I did, and I now have "Menue Templates" and that's all. 
    Where are the Libraries for "Buttons, images, backgrounds, shapes", etc?
    Thanks... Marv.

    why don't they have the download in plain English instead of calling it "Resource Central Library Content"... i.e. Library Menues, Library Buttons, etc ?
    I hear that! Resource Central was (I think; never really dealt with it till it came to this issue) a more centralized repository/resource for functional content (even that word, a years old Adobe term is not exactly "plain English"!). And the term used is just "Resrouce Central" plus "Library content." See how simple?
    The problem is that they seemed ot have in the beginning that users would not miss the buttons etc. Boy did we! They could have easily pointed users to the right files/instructions.
    2.  {Many users don't use Encore. Adobe saves a lot of download time by making this a separate install.} So... are they using another program?... or are they totally not making any DVD's?
    Most are, guesses on my part, not making DVDs with Adobe products (and the only one is Encore). Some are hi gh end pros usoing scenarist or other expensive top line programs; some are  using other products similar to Encore; and some are hobbyists using more simple template only apps (e.g. windows movie maker; imovie, etc).

  • Missing purchased content.

    I recently had to delete all of my songs and import them again because it was the quickest way to fix my "content not found" problem in iTunes rearranging my computer files. 
    It's all back to normal aside from my purchased content from the iTunes store.  I can't find the downloads anywhere on my computer and there's no option to redownload them in the store.  Am I just missing something really easy?  Please help me figure it out!

    Hi ndl002,
    Thanks for using Apple Support Communities.  This article has steps to download previous purchases again:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Cheers,
    - Ari

  • Missing Web Content (Q?)

    When I browse to some pages, small or large sections of the page do not load. In place of the content, there is a picture of the Quicktime Q with a "?" in the center. Am I missing something simple like a plug-in?
    Hope someone can help.
    Thanks

    Thanks for the reply. I have more info (perplexing). There are three user accounts on the mac. When using Safari under two of the user accounts, the pages with flash content work perfectly. I get the Q? instead of the flash content on the third user account. I have uninstalled flash 9 and redownloaded/installed twice, and still have the problem. MAybe I should create a fourth user account, move all the docs/files over to the new one and delete the old one. I am a little stumped.
    Thanks

  • Missing Graphic content

    There seems to be a lot of graphics in the content area in full editing that were in Photoshop 9.0 that are totalling missing in that are missing or omited in Phtotoshop elements 10.  Anyway to get additional graphics.
    tim

    You have all the files you need. The en-US is what is inside the final download/extraction.
    In other words if I copy past them, it will replace the older files. Should I do that ?
    That is actually a good question. For the library, copy away. And for the others, it does not appear to matter. But, for example, with styles, the styles you have in your styles folder now were installed by the .exe that installed some Encore and Premeire Pro styles, templates, etc. In the Encore en-US styles, you will see some with .psdloc extensions, rather than .psd extensions. When you copy those, the ones with .psdloc will not work. But they are all (I think) already in the styles folder. Copying over them will not replace the ones that were previously without the .psdloc. I don't really know how all this works. It still looks like this is a mess.
    But put the library where they go, and you will have the content you need.

  • Missing page content

    I had a finished doc this morning, that I was editing toward the end. Its 272 pages. I saved it to pdf and noticed that some of the page content is missing. I have it separated into chapters. The first page of ch 8 is showing, but the next few pages are blank. The same has happened to ch 9. I wasn't even working on those chapters this morning. Also, I noticed that when I click on the first page of those chapters, the page link (blue line) is now going to the middle of the pages below, and not to the in port of the next page, but when I try to link it back to the next page, all kinds of intersecting blue lines appear. Can anyone help me? Thanks. This is only my 3rd project with In Design and my first with CC.

    Ok. I had to delete the pages that were not linked correctly, and then re-thread the text on new pages, but the text wasn't lost. Thank God. I still don't know what happened, so if anyone knows, please help. Thanks.

  • Missing styles content

    Hi
    I recently installed Premiere Pro / Encore (Windows) and the Libray and Styles templates were missing, just a couple of blank sets. I have downloaded the Library Missing Content, Library templates now appear to be there, but Styles is still missing, there appear to be some files in Styles but Encore does not recognise the files?
    Can anyone help?
    Thanks, Brendan

    Hi
    Yes CS6 WIndows on disc, library and styles were both empty after installation. I tried the top Windows link at http://helpx.adobe.com/x-productkb/multi/library-functional-content-missing.html, loads of files and folders, but nothing that was recognised or works. Then tried the 'additional solution' at bottom of the same page. This has worked for library, but not for styles. All the folders and loads of files are there, but all are 'PSDLOC' files and don't register in Encore. The library files are all normal PSD files, but there are only PSDLOC files in styles, no PSD?
    I think I may have to give the download another go?
    Thanks for the help,
    Brendan

  • Missing purchased content - do not want to duplicate purchase

    I have always used a partition on my hard drive to keep my iTunes media. I have always made sure that my library points to an iTunes folder on my e:\ drive.  Yesterday, I did a complete restore of my OS and reinstalled iTunes, pointing the library to my partition which is unaffected by my OS restoration process.
    Today, I have an entire season of a TV program missing.  My question is:
    1.  How did this happen?  I'm assuming it's gone, since downloads are placed locally in the \users directory.  Is there a way to force the program to download purchased content into a specified file?
    2.  More importantly, since this purchase is gone, I'd like to avoid a duplicate purchase by hitting the "buy" button.  It won't tell you that you're being charged or not until it's too late.  How do I go about obtaining this one season of a TV program without having to purchase it again?
    Thanks for your help and advice.

    Copy does exactly what the word "copy" implies.
    If you properly specify a destination folder, then the copy should go in the destination folder.

Maybe you are looking for