How to disable BW context menu in new BI 7 Analyzer

Dear Expert,
    It might be stupid question.
        in Analyzer 3.5, I can disable BW context menu via untick "OLAP Functions with right-click",  how I fulfill same thing in BW 7 Analyzer ?  I can not find it.
Thanks
Jie

Hi,
Please Uncheck the checkbox "Allow Navigation" under Properties of Analysis Grid->General tab of BEx Analyzer 7.x.
-Vikram

Similar Messages

  • How to disable the context menu

    Hi folks,
    we have an application running in EP. We want to disable the context menu (right click hand). Any help is welcome.

    Hi!
    I have the same problem because we want to run WDA applications in th internet and there it is "not allowed" to "overwrite" the user's normal browser context menu.
    Additionally we are interested in how to disable the F1 and Ctrl.-F1 help features for the whole WDA application. We do not want to present technical details in the internet.
    Any help very welcome!!!!
    Regards,
    Volker

  • How to enhance the context menu in Web Applications - BW 7.0

    We have to enhance the context menu of several Web Applications and,
    initially, we based our solution on the paper "How to enhance the
    context menu of Web Applications", from June, 2002, but the solution
    described on the paper refers to the BW version 3.0 and we need the
    solution for the BW version 7.0. The technical content described on the
    paper, version 3.0, is very different from the content of the version
    7.0, used by us. Is this feature available for the version 7.0?

    Hi,
    did you find a solution already?
    Thanks,
    Frank

  • How to create a Context Menu submenu?

    I am trying to create a submenu which lists scripts in the content window - Does anyone know how to do this?
    This works:
    if (MenuElement.find ('Thumbnail/tscript') == null) var ah_ScriptsContext = new MenuElement( "command", "Scripts", "at the end of Thumbnail", "tscript");
    But the submenu does not work:
    var ah_runScriptImRnContext = new MenuElement("menu","AH Image Rename","at the end of Thumbnail/tscript");
    I've tried various combinations of 'menu' / 'command' and everything else I can think of, so far no go.
    Andrew

    Here ya go, Andrew:
    Bob
    Adobe WAS Scripting
    #target bridge
    ContextDemo = {};
    ContextDemo.handler = function( menu ) {
    alert( menu.text );
    try {
    MenuElement.create( "menu", "Menu", "at the end of Thumbnail", "cMenu" );
    ContextDemo.m1 = MenuElement.create( "command", "Command 1", "at the end of cMenu", "cMenu/sub1" );
    ContextDemo.m1.onSelect = ContextDemo.handler;
    ContextDemo.m2 = MenuElement.create( "command", "Command 2", "at the end of cMenu", "cMenu/sub2" );
    ContextDemo.m2.onSelect = ContextDemo.handler;
    } catch ( e ) {
    // now let's get tricky
    // disabling a script generated context menu makes it disappear from the context menu
    SelectExample = {}
    SelectExample.menuSelected = function() {
    alert( "You selected " + app.document.selections[ 0 ].name );
    SelectExample.menu = undefined;
    SelectExample.onSelectHandler = function( event ) {
    if ( event.object.constructor.name == "Thumbnail" ) {
    if ( event.type == "select" ) {
    // event.object is the Thumbnail object that was selected
    if ( event.object.isFileType( "jpg,jpeg,psd,tif,tiff" ) ) { // enable the menu for these files with these extensions only
    try {
    if ( !isValidReference( SelectExample.menu ) ) {
    SelectExample.menu = MenuElement.create( "command", "MyCommand", "at the end of Thumbnail", "myMenuID" );
    SelectExample.menu.onSelect = SelectExample.menuSelected;
    } else {
    SelectExample.menu.enabled = true;
    } catch ( e ) {
    } else {
    try {
    SelectExample.menu.enabled = false;
    } catch ( e ) {
    return { handled:true }; // tells Bridge event was handled
    return { handled:false }; // tells Bridge event wasn't handled and
    //to continue through the handler array
    app.eventHandlers.push( { handler: SelectExample.onSelectHandler } );

  • How to configure Goto context menu function on the web?

    We are running a web template on IE browser.  After the report run successfully, left click on any key figure column, we can see Goto context menu, from here, we can go to detailed report (e.g. from the current Cube level to more detailed ODS level).  However we find this jump from cube level to ODS level (Goto context manu) works on our QA system other than DEV system.  
    These stuff were configured by SAP consultants who left our company one year ago, if anyone knows how to make the Goto context menu works by drilling down from cube level to ODS level, please let us know and we are really appreciated!

    dear Bhanu,
    We figured out the problem, it is because we click Goto then select "Display Documents" which yields a 400 error, then go back to click Goto, pick up the target link we want and it yield the error.  After we hit F5 to reload the URL link, then directly select Goto our target, then it works fine!
    But one more question, under Goto context menu, we find four menu context items:
    1. Display Documents
    2. Documents for Navigation Status
    3. Our application target1
    4. Our application target2
    Select option 1 yields an error like mentioned above.
    Select option 2 pops up a new window with Key Figure selection box and a button called "Additional Functions", but seems go nowhere.
    Option 3 is setup in our system by using RSBBS like you suggested.
    Option 4 is not in RSBBS.
    Then our questions are for option 1, 2, and 4.  What are the functionalities of option 1 and 2, are these two standard web functionalities of BW web reports? and these two options always show up on the web no matter whether they work or not, right?  We are confused with option 4, it's not listed in RSBBS, then how come it show up?

  • How to create a context menu using powershell

    Hi 
    i would like to create a context menu for powershell but i am getting an error after powershell menu is created
    "This file does not have a program associated to it. i am using this script . I am trying to create a powershell shortcut on folders."
    also once it gets created i would like to open powershell as admin always
    New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT
    Test-Path HKCR:\Directory\shell\Powershell
    New-Item -Path HKCR:\Directory\shell -Name Powershell
    Set-Item -Path HKCR:\Directory\shell\Powershell -Value "Open Powershell Here" 
    New-Item -Path HKCR:\Directory\shell\Powershell\key -Value "C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -Command ""Set-Location -LiteralPath '%L'"""

    You need to put forth the effort to ask a good, clear, and meaningful question.
    As it stands, you seem to have a record of asking nearly unintelligible questions that take a great amount of effort for others to guess what you are asking. This is bad because it wastes everyone's time.
    Read these for some good information on how to ask good questions:
    Posting guidelines
    Handy tips for posting to this forum
    How to ask questions in a technical forum
    Rubber duck problem solving
    How to write a bad forum post
    -- Bill Stewart [Bill_Stewart]

  • How to translate the context menu of Bex Analyzer?

    Hi.experts:
    In my BW system,I found that the "drill down in row" and "drill down in column" context menu all wrong description.How can I translate the context menu?
    Points are waiting for you...thanks in advance.
    Best regards
    Martin Xie

    Hi Martin.
    Check this note:
    Note 1241284 - Incorrect translation in BEx Analyzer connected to NW 710
    Hope it helps.
    gdmon.-

  • How to deactivate the context menu for data cells in web reports

    Hello,
    we would like to have the data cells (for example: values in euro) without context menu. I mean, right now, when users navigate in web reports and stop with a mouse over the data cell, text like "Context menu for 5.000 Highlighted" appears. Especially users don't want to see the exception cells with this information like
    "Context menu for 6.000 critical 4".
    Is it possible to deactivate this context info?
    Thanks and Regards,
    Nuran Adal
    Message was edited by: Nuran Adal

    Hello Nuran,
    I guess you want to disable the Tooltip and not the ContextMenu. Anyway, use the table interface for it.
    Have a look at paramter C_CELL_CONTENT
    In Method DATA_CELL.
    This one contains strings like:
    30,0
    Rebuild this String to:
    30,0
    Kind Regards,
    Alican

  • How to create a context menu in ALV table cell editor(Webdynpro abap )

    Hello Experts,
    I am having a problem in creating a context menu in a table cell editor in the ALV table output.I have assigned a 'lta' as the cell editor.But befor assigning the lta as cell editor I have assigned the menu to the lta.But when the view is rendered I can see the lta with the actioned assigned to it.But I cannot see the context menu.
    The code snippet below:
      "Create menu for each coloumn
      create OBJECT lo_menu_actions type CL_SALV_WD_VE_MENU EXPORTING
          id = 'MITM_ACTIONS'.
      lo_menu_actions->set_visible( value = abap_true ). 
      lo_menu_actions->set_visible_fieldname( value = 'ACTIONS' ).
      "ADd menu items
      CREATE OBJECT lo_menu_item_create type CL_SALV_WD_VE_MENU
      exporting
        id = 'MITM_CREATE_EXPRESSION'.
      lo_menu_item_create->set_visible( value = abap_true ).
      lo_menu_item_create->set_visible_fieldname( value = 'Create' ).
      "Add item 1
      lo_menu_actions->ADD_ITEM( VALUE = lo_menu_item_create ). 
      "  Set the cell editor for each column cell(link to an action)
      LOOP AT lt_node_dec_tab_cols INTO ls_node_dec_tab_cols .
        lv_column_name = ls_node_dec_tab_cols-object_name.
        lr_column = lr_column_settings->get_column( lv_column_name ).
       "Create 'lta' Ui item
        CREATE OBJECT lo_lta TYPE cl_salv_wd_uie_link_to_action.
        lo_lta->set_menu( value = lo_menu_actions ).
        lo_lta->set_text_fieldname( lv_column_name ).
        lr_column->set_cell_editor( lo_lta ).
        IF ls_node_dec_tab_cols-is_result EQ abap_true.
          lr_column->set_cell_design( value =
                      cl_wd_table_column=>e_cell_design-key_medium ).
        ENDIF.
      ENDLOOP.

    Hi Prakash,
    I have not come across this requirement till now to have context menu in a cell editor of alv.
    Unfortunately  the implementation of method SET_MENU of alv ui elements ( ex: cl_salv_wd_uie_text_view ) is not updating alv configurable table, instead it just stores in a global attribute as string. Hence has no effect on context menu.
    If your user is very particular about this requirement of having context menu in cell editor, you can go for a normal table. Because, normal table's cell editor has the property to set the menuID as we do it for other ui elements.
    Regards,
    Rama

  • How to Enhance the Context menu in a Web Report

    Gurus,
    Scenario is to Enhance the Context menu in a Web template with some Custom Values. I found some notes in SAP.HELP but could not get thru it.
    If anyone has added some Custom developed menu's in the Context menu, can you let me know as well.
    Urgent help would be appreciated as well as rewarded with marks.
    Regards
    Rohit

    Hi Rohit,
    I have done this for solution manager with bex integration,
    Go TO last part of pdf there it is discussed with screen shot.You need to hav a query go to web template.and use the html tags to insert something into your context menu.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ad0a4b07-0301-0010-5095-ef7615676fc0
    Please reward points.

  • How to create a context menu which appears on right click

    Hello Experts,
    I want to create a context menu which should appear on the right click of a mouse anywhere on the screen.
    I have seen this functionality in one of the sap applications, and i guess this is an inbuild functionality in Webdynpro for ABAP but in WebDynpro Java i haven't found any such inbuild functionality.
    Does anybody have any idea about it ?
    Regards,
    Amol

    Context menus are not supported in NW04 and NW04s, they will be available in the next major release.
    Armin

  • How to show tree context menu in screen reader mode

    Hi, experts
    I want to know is there a way to show context menu of a tree in screen reader mode. Or is there some way to get access to the actions in the context menu?
    We added actions such as "refresh", "delete" into the context menu. But in screen reader mode, I can't find a way to access them.
    Regards,
    Chris

    Hi François! Thanks you for your answer.
    I tried to do it, but didn't work, I couldn't reach the events NODE_CONTEXT_MENU_REQUEST and ITEM_CONTEXT_MENU_REQUEST I my implementation class.
    I found a example transaction to this problem (SMARTFORMS) I will debug it and try to found the solution.
    Thanks again.

  • How to hide the context menu?

    I want to make a web button and don't want the context menu
    to appear,
    I have tried Stage.showMenu = false, but the context menu
    still pops up.
    What should I do?

    Try looking in Help for fscommand:
    AS Language Elements > Global Functions > fscommand
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • How to make visible context menu for nodes of the given level of treeTable?

    Hello
    I'm using JDeveloper 11g 10.1.1.4
    I have a TreeTable component with 4 different levels (Contry-Branch-Town-Object).
    I need to show custom elements of the context menu (right click of the muse) only for rows with "Object".
    Now, I'm doing it with the aid of property "visible":
                <af:commandMenuItem text="Open" id="cmi1" immediate="true"
                                    visible="#{backingBeanScope.mbMObjectsRegistry.MObjectNode}"
                                    actionListener="#{backingBeanScope.mbMObjectsRegistry.btOpenMObject}"/>
        public boolean isMObjectNode() {
            Object oldRowKey = treeTableMObjectsRegistry.getRowKey();
            try {
                AppViewRowImpl row =
                    BindingUtils.getSelectedRowTreeTable(treeTableMObjectsRegistry);
                if (row == null || !isMOBjectRow(row)) {
                    return false;
                return isMOBjectRow(row);
            } finally {
                treeTableMObjectsRegistry.setRowKey(oldRowKey);
        private boolean isMOBjectRow(AppViewRowImpl row) {
            return (row != null) && (row instanceof MObjectsRegisterMORowImpl);
        }That works, but the problem is that it works a little bit slow, particulary if I have 5 or more menu items.
    Each menu item calls the metod isMObjectNode() 3 times per one opening of the menu.
    The question is: maybe, there is a method to calculate level of the selected node? Or, there is other variant?
    Anatolii

    You can use the following sample to develop your usecase.
    Here, we would show menu items only for the nodes at level 3.
    You can also download the entire sample based on POJO at
    http://adfsampleapplications.googlecode.com/svn/trunk/TreeSampleApplication.zip
    The code is self explanatory.
    Let know, if you have any specific questions.
    <af:form id="f1">
    <af:treeTable value="#{bindings.continents.treeModel}" var="node"
    selectionListener="#{bindings.continents.treeModel.makeCurrent}"
    rowSelection="single" id="tt1" columnStretching="last">
    <f:facet name="nodeStamp">
    <af:column id="c1">
    <af:outputText value="#{node}" id="ot2"/>
    </af:column>
    </f:facet>
    <f:facet name="pathStamp">
    <af:outputText value="#{node}" id="ot1"/>
    </f:facet>
    *<f:facet name="contextMenu">*
    *<af:popup id="p1" contentDelivery="lazyUncached">*
    *<af:setPropertyListener from="#{bindings.continents.treeModel.depth}"*
    *to="#{pageFlowScope.CurrentDepth}"*
    *type="popupFetch"/>*
    *<af:menu text="menu 1" id="m2">*
    *<af:commandMenuItem text="View Districts" id="cmi1"*
    *visible="#{pageFlowScope.CurrentDepth == 2 ? true : false}"/>*
    *<af:commandMenuItem text="View Attractions" id="cmi2"*
    *visible="#{pageFlowScope.CurrentDepth == 2 ? true : false}"/>*
    *</af:menu>*
    *</af:popup>*
    *</f:facet>*
    </af:treeTable>
    </af:form>
    Thanks,
    Navaneeth

  • Disable default context menu on textfield

    By default the JavaFX TextField has a built in ContextMenu with 'undo', 'copy', 'cut' etc. options.
    I want to replace this ContextMenu with a custom context menu make by me. Could I can do it?

    > By default the JavaFX TextField has a built in ContextMenu with 'undo', 'copy', 'cut' etc. options.
    Really?  Are you sure?  I don't get such a menu in TextFields on a Mac with JavaFX 8.
    Maybe you mean input type text in a WebView?
    I think the answer you are looking for is => webview.setContextMenuDisabled(true);
    See also java - Modify context menu in JavaFX WebView - Stack Overflow.
    And this open feature request:
    RT-20306 Customizable Popup menu in WebView

Maybe you are looking for

  • How do I format my IPod Shuffle to be used on Windows?

    My computer doesn't reconise my IPod is there, and I think I hav to format my IPod to workon Windows instead of Mac...how do I actually do this?

  • Add helper class public parts as used DC in EJB DC

    Hi Experts, I have created a JAVA DC project containing the helper classes. For this helper classes i have created a Jar file. I have also created two public parts 1) with an option Can be packaged into other build results (e.g. SDAs) 2) with an opti

  • Drag and save images onto desktop

    Just wondering if anyone else has noticed that when they drag an image from the internet to save onto the desktop, it will automatically save it in grid and you're not able to save it away from the other icons which usually line up from the right-han

  • All icons on my Macbook have turned into blue circles?

    All icons on my Macbook have turned into blue circles. Please help.

  • UWL - Reference Bundle files

    Hi Guys, In UWL standard xml file, the attribute u201Creference bundleu201D of Action tag refers which file? Where those bundle files are stored? Thank You Regards, Devasarathy Pandi