Business Objects 5.1 Standard File/Insert/Tools/etc. menu not displayed

Post Author: wbartlett
CA Forum: Older Products
I'm a bit confused. As a user, I don't seem to see the Business Objects 5.1 Standard File/Insert/Tools/etc. menu when I sign on to B/O Reporter. The menu was appearing, but now it's gone!
Any ideas?
Thanks, bb
This was resolved by Hari Prasad <@AMA"&gt;[email protected]>@AMA
by replacing the REGEDIT entries

Post Author: C.Sides
CA Forum: Older Products
The menu is accessable by using the <alt> shortcut keys (<alt>F brings up the File dropdown menu).  I was able to get the tool bars back by <alt>V - Toolbars but the menu is still not visible.

Similar Messages

  • Some PDF files and other emails do not display the whole page. Is there a way to change that?

    Some PDF files and other emails do not display the whole page. Is there a way to change that?

    If an app does not behave as expected, try closing the app completely and reboot the iPad. It appears as though you have the original iPad. It helps if you list your iPad model and the iOS that you are running.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button twice.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Creation of Generic business Object for a standard transaction

    Hi,
    We have a requirement where we are depreciating the assets (standard transaction ABAA) using a custom BDC program. We need to maintain a history (called audit trail) for the particular asset that has been depreciated using this program. For this audit train we have been asked to use "Generic Business Object" in transaction code ABAA.
    Unfortunately, Generic object services are not available in this transaction code. Can you please suggest me how to create "Generic Business Object" for a particular standard transaction code. Also, we have show the details of custom workflow that follows the approval process in order to depreciate the asset. how to show this workflow details using Generic Business Object. This is a very critical issue, any help will be very help ful.
    Please let me know should you require more information on this topic.
    Thanks,
    Ashish

    this is already answered in the forum, and also explained in the sap library

  • Business Objects Customization Using Class file without net bean

    Hi,
    Any one please help me out.
    my requirement is like I want to use Business Objects SDK
    <%@ page import="com.crystaldecisions.sdk.framework.CrystalEnterprise" %>
    above is example..
    in Class file of Java without using netbean.
    I try to do this with creating Batch file add all Jar file and set path and but its not working.
    Also can I Login Into business Objects through class file not using netbean(means from command prompt)
    and create user group into CMS.

    Please find following servlet code who dont understand my requirement.
    * GroupCreation.java
    * Created on September 2, 2008, 3:47 PM
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import com.crystaldecisions.enterprise.ocaframework.ServiceNames;
    import com.crystaldecisions.sdk.exception.SDKException;
    import com.crystaldecisions.sdk.framework.CrystalEnterprise;
    import com.crystaldecisions.sdk.framework.IEnterpriseSession;
    import com.crystaldecisions.sdk.framework.ISessionMgr;
    import com.crystaldecisions.sdk.occa.infostore.IInfoStore;
    import com.crystaldecisions.sdk.occa.managedreports.*;
    import com.crystaldecisions.sdk.occa.security.ILogonTokenMgr;
    import javax.servlet.http.Cookie;
    import com.crystaldecisions.sdk.occa.infostore.*;
    import com.crystaldecisions.sdk.occa.pluginmgr.*;
    import com.crystaldecisions.sdk.plugin.CeProgID;
    import com.crystaldecisions.sdk.plugin.desktop.user.*;
    import com.crystaldecisions.sdk.properties.*;
    import javax.servlet.http.HttpSession;
    * @author prashant.joshi
    * @version
    public class GroupCreation extends HttpServlet
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException
    HttpSession session = request.getSession(true);
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    String cms = request.getParameter("CMS");
    String username = request.getParameter("UserID");
    String password = request.getParameter("Password");
    String auth = request.getParameter("Aut");
    IEnterpriseSession enterpriseSession = null;
    try
    ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();
    catch(SDKException e)
    out.println(e.getMessage());
    Exception failure = null;
    boolean loggedIn = true;
         // If no session already exists, logon using the specified parameters.
    if (enterpriseSession == null)
    try
    // Attempt logon. Create an Enterprise session
    // manager object.
    ISessionMgr sm = CrystalEnterprise.getSessionMgr();
    // Log on to BusinessObjects Enterprise
    enterpriseSession = sm.logon(username, password, cms, auth);
    catch (Exception error)
    loggedIn = false;
    failure = error;
    if (!loggedIn)
    // If the login failed, redirect the user to the start page.
    out.println("<SCRIPT language=\"javascript\"> " +
    " alert (\"Sorry - you could not be logged on to this server." +
    " Ensure that your user name and password, as well as the CMS name are correct." +
    "\"); </SCRIPT>");
    out.println("<META HTTP-EQUIV='refresh' CONTENT='0;URL=LogonPage.jsp'>");
    return;
    else
    try
    // Store the IEnterpriseSession object in the session.
    session.setAttribute("EnterpriseSession", enterpriseSession);
    // Create the IInfoStore object.
    IInfoStore iStore = (IInfoStore) enterpriseSession.getService("InfoStore",
    ServiceNames.OCA_I_IINFO_STORE);
    // Store the IInfoStore object in the session using the
    // helper functions.
    session.setAttribute("InfoStore", iStore);
    // Create the IReportSourceFactory object.
    IReportSourceFactory reportSourceFactory = (IReportSourceFactory) enterpriseSession.getService("PSReportFactory");
    // Store the IReportSourceFactory object in the session
    // using the helper functions.
    session.setAttribute("ReportSourceFactory", reportSourceFactory);
    // Retrieve the logon token manager.
    ILogonTokenMgr logonTokenMgr = enterpriseSession.getLogonTokenMgr();
    // Retrieve a logon token and store it in the user's cookie
    // file for use later.
    Cookie cookie = new Cookie("LogonToken", logonTokenMgr.createLogonToken("", 60, 100));
    response.addCookie(cookie);
    // LOCUse the plugin manager and the UserGroup plugin to create a new
    // UserGroup object._ENDLOC_
    // LOCIf the infoStore object is not found then display an error message._ENDLOC_
    IInfoStore infoStore = (IInfoStore) session.getAttribute("InfoStore");
    // LOCIf the infoStore object is not found then display an error message._ENDLOC_
    if (infoStore == null)
    throw new Error("_LOC_InfoStore object not found. Please logon again._ENDLOC_");
    IPluginMgr pluginMgr = infoStore.getPluginMgr();
    //IPluginMgr pluginMgr2 = infoStore.getPluginMgr();
    IPluginInfo userGroupPlugin = pluginMgr.getPluginInfo("CrystalEnterprise.UserGroup");
    // IPluginInfo userGroupPlugin2 = pluginMgr.getPluginInfo("CrystalEnterprise.UserGroup");
    // LOCCreate a new InfoObjects collection._ENDLOC_
    IInfoObjects newInfoObjects1 = infoStore.newInfoObjectCollection();
    IInfoObjects newInfoObjects2 = infoStore.newInfoObjectCollection();
    // LOCAdd the UserGroup interface to the new InfoObjects collection._ENDLOC_
    newInfoObjects1.add(userGroupPlugin);
    newInfoObjects2.add(userGroupPlugin);
    // LOCGet the new UserGroup object from the collection._ENDLOC_
    IInfoObject iObject1 = (IInfoObject) newInfoObjects1.get(0);
    IInfoObject iObject2 = (IInfoObject) newInfoObjects2.get(0);
    // LOCOnce you have the new UserGroup object, set its properties._ENDLOC_
    iObject1.setTitle ("Single Home Group");
    iObject1.setDescription ("It is Single Home Group");
    iObject2.setTitle ("Multi home Group");
    iObject2.setDescription ("It is multi Home Group");
    // LOCRetrieve the ID of the InfoObject (user group)._ENDLOC_
    // objectID = iObject.getID();
    // LOCSave the new group to the CMS._ENDLOC_
    infoStore.commit (newInfoObjects1);
    infoStore.commit (newInfoObjects2);
    catch(Exception ex)
    // If the User group is already created.
    out.println("<SCRIPT language=\"javascript\"> " +
    " alert (\"Sorry - The User Group is already created Please enter another User Group." +
    "\");</SCRIPT>");
    out.println("<META HTTP-EQUIV='refresh' CONTENT='0;URL=LogonPage.jsp'>");
    return;
    // If the User is Logged on the Business objects
    out.println("<SCRIPT language=\"javascript\"> " +
    " alert (\"UserGroup get created in CMS.\"); </SCRIPT>");
    out.println("<META HTTP-EQUIV='refresh' CONTENT='0;URL=LogOff.jsp'>");
    out.close();
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    when I paste above code in simple notepad as class file and run this file from command prompt
    it gives error like following 1 example I getting 46 errors for different Business Objects classes
    symbol : variable CrystalEnterprise
    location: class GroupCreation
    ISessionMgr sm = CrystalEnterprise.getSessionMgr();
    Please help me Out.
    Thank you.

  • Business Objects Explorer XI R3.1 SP1 (Polestar) installer does not start

    I am trying to install Business Objects Explorer XI R3.1 SP1 on Business Objects Edge Professional 3.1 on Win2k8 Server, but the installer dialog box disappears once I click "next" on "Configure Web Application Server" dialog box.
    Note: When I use "disappear" above, I mean the "setup.exe" disappears from task manager. Also, the installation dialog box disappears from the screen.
    I followed the same steps on Business Objects Edge Standard 3.1 and everything ran fine. I also tried to reproduce the issue on Business Objects Enterprise Premium, but it ran fine. All these installations were done on 64 bit win2k8 server.
    Any help or tip on this issue would be highly appreciated.
    Thanks,
    Gaurav

    Hi there,
    I extracted the files to a different drive and ran the installer from there. It eventually ran fine. I still don't know why it couldn't run from the same drive.
    I tried running it from the command line as well, but it failed from there. I raised it to SAP as well which they haven't yet responded to.
    Thanks,
    Gaurav

  • Start page missing fil,bookmarks ,tools etc

    The start page for Firefox is missing the line at the top which has the file, bookmarks, tools, history etc. How do I get it back? This has just happened in the last week when I go to Firefox.

    For details of how to restore it, see the [[menu bar is missing]] article.

  • Flash objects (images/buttons/etc) does not display on some PC's

    I am trying to deploy an out of the box web application called the Mid-Tier, where some forms/pages in the application have embedded flash images/buttons/icons that do not display on IE despite the fact that there is Flash installed on these PC's. Most of the PC's are XP.
    I suspect it is some of the security settings in IE. Unfortunately security options are disabled to end users so I cannot even get to see what these settings are..
    This web application works perfect on some test PC's that have default browser settings and the same flash version installed.
    The flash objects appear on these screens as white boxes instead of some control buttons and icons that should have been displayed.,. Hence these pages are non functional.
    Any hints?
    Joe

    Hello David,
    except the latest Flash Player you have also and the latest Java installed (Next Generation Java Plug-in 10.25.2 for Mozilla browsers) , check if you activate the plugins : [https://support.mozilla.org/el/kb/troubleshoot-issues-with-plugins-fix-problems#w_determining-if-a-plugin-is-the-problem Determining if a plugin is the problem], select always active.
    see also: [https://support.mozilla.org/en-US/kb/why-do-i-have-click-activate-plugins#os=win7&browser=fx23 Why do I have to click to activate plugins?]
    you said : ''One guy said you could fix it by going Tools > options > content > make sure Automatically load images is checked (but there is no such thing on that tab in my Firefox????)''
    not exist any more from 23.0 version and above (see : http://www.mozilla.org/en-US/firefox/23.0/releasenotes/) because of this : http://limi.net/checkboxes-that-kill , if you 1 (as a value) in '''permissions.default.image''' in [http://kb.mozillazine.org/About:config about:config] you are OK (checked[v]).
    also many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Tiff (or tif) file created in Photoshop is not displaying in Firefox 2 or 3 with Quicktime plugin

    I embedded a tiff file that was created in Photoshop but it is not displaying in Quicktime/Firefox.
    It works in other browsers but not Firefox 2 or 3. And another point is that if the Tiff file is created in any other graphics application then it works!
    It leads me to think that Photoshop might be adding some metadata to the file that Quicktime/Firefox is not liking.
    Any ideas on what might fix this?

    There are different types of TIF files with different kinds of contents (compression schemes, channels, bit depths, etc). It is no surprise that you might get different results with different browsers/plugins.
    What kind of TIFF are you using? Why are you not using a more standard web image format that does not require the overhead and hassle of an optional plugin?

  • Tiff (or tif) file created in Photoshop is not displaying in Firefox 2 or 3

    I embedded a tiff file that was created in Photoshop but it is not displaying in Quicktime/Firefox.
    It works in other browsers but not Firefox 2 or 3. And another point is that if the Tiff file is created in any other graphics application then it works!
    It leads me to think that Photoshop might be adding some metadata to the file that Quicktime/Firefox is not liking.
    Any ideas on what might fix this? By the way it happens in both Mac and Windows

    There are different types of TIF files with different kinds of contents (compression schemes, channels, bit depths, etc). It is no surprise that you might get different results with different browsers/plugins.
    What kind of TIFF are you using? Why are you not using a more standard web image format that does not require the overhead and hassle of an optional plugin?

  • Tiff files with Alpha Channels do not display or print correctly...

    I have Tiff files that have been edited in Photoshop that do not display correctly. As far as I can tell this is caused by the existence of Alpha channels in the channels panel in PS. When the files are imported to Aperture, they only display information from either the alpha channel or a layer using that alpha channel as a mask.
    If this is true, what are people doing about it. This cant be acceptable???
    Are there any work arounds and is apple addressing this problem?
    Can anyone else confirm this?
    I am using Aperture 1.1.2, OS 10.4.7 and PS CS. on a Dual 2GHz Power PC G5 with 4.5 GB RAM
    Please note, these are NOT .psd files. I have read and am aware of some psd compatibility issues, and have checked the maximize compatibility in PS.
    -Sol

    Thank you for your response, I am trying to figure out what to do differently when we re-create the PDF so we don't have font issues when we combine. I don't want to keep recreating the problem, I am looking for a solution. Why does this happen? What settings do I tell other to apply on their Acrobat? Is the a font issue in Adobe? I found this on a Google search on the internet and can't seem to get it to work on XI PRO.
      Embedding fonts into Acrobat 9 through Distiller:
    Launch Acrobat.
    Choose Advanced > Print Production > Acrobat Distiller.
    Select Standard in Default settings.
    Go to Settings and select Edit Adobe PDF Settings.
    Select Fonts and in the font source window select the fonts you want to Add.
    Click Save As and then OK.

  • Lately pdf files from the Web do not display properly; what is wrong and how can I fix it so I don't have to use IE?

    I am a professor and frequently need to open pdfs of academic journal articles from electronic databases. Within the last two or three weeks, when I try to do this using Firefox, only the first page of the pdf displays and the rest are blank. In addition, a bar appears across the top with the message "This pdf file may not display properly." So I have had to switch to Internet Explorer to open the files and do my research. What is going on and how can I fix it so I can open pdf files from the Web in Firefox and have them display properly?

    My question is simple - why would you put an application in production that has a lot of bugs? To replace a good and steady Adobe product? My customers will believe that I put a pathetic fallible form online. They are not sophisticated on computers so I just tell them to use IE. Ugh
    I must agree with pgwebgirl!

  • RAW CR2 files from my Canon G11 not displaying thumbnails in SL finder. Why

    I just loaded some CR2 RAW files from my Canon G11 last night. They displayed perfectly in iPhoto 09 but when I opened the folder the image files are in SL's finder I got icon placeholders which but no image icon display. I have loaded all the latest updates... Is SL no yet compatible with G11 RAW Cr2 files? Or do I not have something set up correctly as of yet?

    HI,
    Go to ~/Library/Preferences and move this file: com.apple.QuickLookDaemon.plist file to the Trash and restart your Mac.
    Carolyn

  • JFileChooser file filter and view does not display Drive letters

    This code displays only files that end in abc.xml, and directories. For example, "helloabc.xml" and directory "world" will display as hello and world, respectively.
    However, I am surprised to find that the drive letters are not displayed at all. eg. C:
    any insights?
    thanks,
    Anil
    import java.io.File;
    import javax.swing.JFileChooser;
    import javax.swing.filechooser.FileFilter;
    import javax.swing.filechooser.FileView;
    public class NoDrive {
         protected static final String ABC_FILE_EXTN = "abc.xml";
         public String selectFile(String function){
              File file = null;
              JFileChooser fc = new JFileChooser();
              fc.setFileFilter(new FileFilter() {
                   public boolean accept(File f) {
                        if (!f.isFile() || f.getName().endsWith(ABC_FILE_EXTN))
                             return true;                    
                        return false;
                   public String getDescription() {
                        return "ABC files";
              fc.setFileView(new FileView() {
                   public String getName(File f) {
                        String name = f.getName();
                        if (f.isFile() && name.endsWith(ABC_FILE_EXTN))
                             return name.substring(0, name.indexOf(ABC_FILE_EXTN));
                        return name;
              int returnVal = fc.showDialog(null, function);
              if (returnVal == JFileChooser.APPROVE_OPTION) {
                   file = fc.getSelectedFile();
                   return file.getName();
              return null;
         public static void main(String[] args) {
              (new NoDrive()).selectFile("Open ABC");
    }

    OK. Here's the correct code:
        fc.setFileView(new FileView() {
          public String getName(File f) {
            String name = f.getName();
            if (f.isFile() && name.endsWith(ABC_FILE_EXTN)){
              return name.substring(0, name.indexOf(ABC_FILE_EXTN));
            else{
              return super.getName(f);
        });

  • IK Bone Tool Bones are not Displaying

    This may be a very dumb question, but how do you get the bones to display?
    I have connected 5 graphics together with the bone tool, but when I was clicking and dragging the bones did not appear. The armature was created and I can click and drag them into position, BUT I only see the end result and it doesn't show what the armature is doing while I'm dragging it around.
    When I select the armature layer, I don't see the bones either. The only reason I know it works is that when I click and release the armature, it is moved to a position normally produced by the bone tool.
    In summary:
    Bones are not displaying.
    Armature is not animating when being dragged.
    Any help would be great.
    Cheers,
    Mike.

    Hi Mike,
    Were you using Actionscript 2.0 or 3.0 document? The bone visibility is available only when you use Actionscript 3.0 document.
    Quynh

  • Nested Objects for a Data Provider in a Data Grid, not displaying data

    Hi, I have a datagrid and the dataprovider for this grid is the result of a RPC call. The result set has the following structure:
    Array
    [0]->Object #1
          [one] => 1
          [two] => 1
          [three] => Object #2
              [apple1] = > Object #3
                  [color] =>    red
                  [rate] => 20
              [apple2] => Object #4 ( the    number of apples is dynamic, apple3,apple4 .. and so on)
                  [color] =>    blue
                  [rate] => 100
    and so on ... so the number of apple objects will vary since its
    dynamic. How do I display this data in a datagrid ??? Please help!! I
    saw many articles on creating the "Nested DataGridColumn " classes...
    like this :
    http://active.tutsplus.com/tutorials/flex/working-with-the-flex-datagrid-and-nested-data-structures/
    it helps, but the problem with my data is that some of the indexes (like  apple1,apple2 etc) are dynamic.
    Also, my flex application is a desktop application (in case that matters). Just to see whats going on, I
    dropped all the nested arrays and used a plain simple one-dimensional array. Even in this case the data
    isnt getting displayed.
    I dont know what im doin wrong. the datafields, labels etc e'thing is correct. I even debugged and
    im getting the result on the flex side. whats going on ?

    No luck ... i converted the result set to a List, and even tried with an iList. Same problem -  nothing gets displayed...
    I have no idea whats happening ....
    This is my code :
    [Bindable]private var privilegesArray:ArrayCollection = new ArrayCollection();
    public function init():void{ // called on creation complete
                    RO.getPrivileges.addEventListener(ResultEvent.RESULT,handleGetPrivileges);
                    RO.getPrivileges();
    protected function handleGetPrivileges(event:ResultEvent):void{
                    privilegesArray = event.result as ArrayCollection;
    <mx:DataGrid id="privilegesDG" dataProvider="{privilegesArray}" width="100%">
            <mx:columns>
                <mx:DataGridColumn headerText="Name" dataField="name" />
                <mx:DataGridColumn headerText="Alias" dataField="alias" />
            </mx:columns>
        </mx:DataGrid>
    The data that gets returned is smthing like this : (for the moment I have removed all the nested objects and arrays and returning just a simple plain array)
    Array => [0] => Object #1
                              [name] => some name
                              [alias] => alias

Maybe you are looking for

  • Gift card for new school day

    Hello Apple staff, I bought a iPad mini retina display with a $50 gift card for new school day. I received the e-mail saying that the gift card has been sent. However, I have not really received any gift card code to redeem yet. So I'm here to ask he

  • How to invoke dll from Java applications

    Hello Friends, I am new to JNI application and I never tested it before. Now I have to interact with dll�s Which is running on AS400 machines. Currently our application, which is mainly retrieving the data and passing some parameter to the dll�s thro

  • Flashplayer only works as root

    Hello there. Since this is rather long time since this thread http://bbs.archlinux.org/viewtopic.php?id=51055 ([solved]Flash only works as root?) I made a new thread. I've installed firefox with pacman -S firefox. So did I installed flashplugin. The

  • BSP & e-recuitment

    Hi All I have to implement e-recuitment and also i need to customize it. i am good in webdynpro java and EP but i dont have exposure to webdynpro ABAP. For e-recuitment should i know webdynpro ABAP. for this what are the basic requiments.should i ins

  • Missing Device Files

    We had an issue with our SAN this morning and we were missing some device files but not all. I cannot seem to find anything that shows what device files ASM is expecting to see for each disk group. For example, we have a data disk group with 10 LUNs