Control overlapping and context menu

hi guys,
     I have this layout with a Panel, a Tab Container and a Datagrid. Basically the Panel is the parent of the Tab Container, and Tab Container is the parent of the Datagrid. My Datagrid has a context menu on it. But what happened was I can't get the context menu to show up because if I do right-click on the grid, the context menu from the Panel is what I'm getting, not the context menu I setup on the grid, but If I move the grid outside the panel its working good. Anyone encountered same thing? How will I surpass this overlapping?
Best Regards!

Hey Flex, thanks a lot! I should have known this is a bug on Flex 4 Panel right? Thanks for the tip, got it by setting the mouseEnabled=true on the Panel and on the custom Panel Skin as well.
Best Regards!

Similar Messages

  • ALV: Right Button Click and Context Menu

    Hi Experts,
    I have to implement an ALV which should act on a right button click and show a context menu.
    Is this possible? I found only events for "on_double_click" or "on_link_click" and is it possible to show a context menu?
    Thanks in advanced.
    Best regards,
    Markus

    Hello Markus
    The relevant events are:
    CONTEXT_MENU_REQUEST
    USER_COMMAND
    Have a look at my sample report ZUS_SDN_ALV_CONTEXT_MENU_1.
    *& Report  ZUS_SDN_ALV_CONTEXT_MENU_1
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="910750"></a>
    *& Thread: ALV: Right Button Click and Context Menu
    *& Flow logic of screen 100 (no screen elements; ok_code = GD_OKCODE)
    *&    PROCESS BEFORE OUTPUT.
    *&      MODULE STATUS_0100.
    *&    PROCESS AFTER INPUT.
    *&      MODULE USER_COMMAND_0100.
    REPORT  zus_sdn_alv_context_menu_1.
    DATA:
      gd_okcode        TYPE ui_func,
      go_docking       TYPE REF TO cl_gui_docking_container,
      go_splitter      TYPE REF TO cl_gui_splitter_container,
      go_cell_top      TYPE REF TO cl_gui_container,
      go_cell_bottom   TYPE REF TO cl_gui_container,
      go_grid1         TYPE REF TO cl_gui_alv_grid,
      go_grid2         TYPE REF TO cl_gui_alv_grid,
      gs_layout        TYPE lvc_s_layo.
    DATA:
      gt_knb1          TYPE STANDARD TABLE OF knb1,
      gt_knvv          TYPE STANDARD TABLE OF knvv.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
            IMPORTING
              e_row
              e_column
              es_row_no
              sender,
          handle_context_menu_request FOR EVENT context_menu_request
                                                     OF cl_gui_alv_grid
            IMPORTING
              e_object
              sender,
          handle_user_command FOR EVENT user_command OF cl_gui_alv_grid
            IMPORTING
              e_ucomm
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *   define local data
        DATA:
          ls_knb1      TYPE knb1.
        CHECK ( sender = go_grid1 ).
        READ TABLE gt_knb1 INTO ls_knb1 INDEX e_row-index.
        CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
        CALL METHOD go_grid1->set_current_cell_via_id
          EXPORTING
    *        IS_ROW_ID    =
    *        IS_COLUMN_ID =
            is_row_no    = es_row_no.
    *   Triggers PAI of the dynpro with the specified ok-code
        CALL METHOD cl_gui_cfw=>set_new_ok_code( 'DETAIL' ).
      ENDMETHOD.                    "handle_double_click
      METHOD handle_context_menu_request.
    *   define local data
        DATA: lt_fcodes    TYPE ui_funcattr,
              ls_fcode     TYPE uiattentry,
              ls_func      TYPE ui_func,
              lt_func      TYPE ui_functions.
        "   Inactivate all standard functions
        CALL METHOD e_object->get_functions
          IMPORTING
            fcodes = lt_fcodes.
        LOOP AT lt_fcodes INTO ls_fcode.
          ls_func = ls_fcode-fcode.
          APPEND ls_func TO lt_func.
        ENDLOOP.
        e_object->disable_functions( lt_func ).
    "   Add new functions
        e_object->add_separator( ).
        CALL METHOD e_object->add_function
          EXPORTING
            fcode = 'XD03'
            text  = 'Call Transaction'.
        CALL METHOD e_object->add_function
          EXPORTING
            fcode = 'DETAILS'
            text  = 'Display Details'.
      ENDMETHOD.                    "handle_context_menu_request
      METHOD handle_user_command.
    *   define local data
        DATA:
          ls_knb1   TYPE knb1,
          ls_row    TYPE lvc_s_row,
          ls_col    TYPE lvc_s_col.
        "   NOTE: in case of CL_GUI_ALV_GRID the functions of a context menu
        "         are handled in method USER_COMMAND.
        CHECK ( e_ucomm = 'XD03'      OR
                e_ucomm = 'DETAILS' ).
        CALL METHOD sender->get_current_cell
          IMPORTING
            es_row_id = ls_row
            es_col_id = ls_col.
        CASE e_ucomm.
          WHEN 'XD03'.
            READ TABLE gt_knb1 INTO ls_knb1 INDEX ls_row-index.
            SET PARAMETER ID 'BUK' FIELD ls_knb1-bukrs.
            SET PARAMETER ID 'KUN' FIELD ls_knb1-kunnr.
            CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
          WHEN 'DETAILS'.
      "       NOTE: only for the sake of simplicity the event handler method
            "             is called
            CALL METHOD lcl_eventhandler=>handle_double_click
              EXPORTING
                e_row  = ls_row
                sender = go_grid1.
          WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_user_command
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT        * FROM  knb1 INTO TABLE gt_knb1
             WHERE  bukrs  = '1000'.
    * Create docking container
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Create splitter container
      CREATE OBJECT go_splitter
        EXPORTING
          parent            = go_docking
          rows              = 2
          columns           = 1
    *      NO_AUTODEF_PROGID_DYNNR =
    *      NAME              =
        EXCEPTIONS
          cntl_error        = 1
          cntl_system_error = 2
          OTHERS            = 3.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Get cell container
      CALL METHOD go_splitter->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = go_cell_top.
      CALL METHOD go_splitter->get_container
        EXPORTING
          row       = 2
          column    = 1
        RECEIVING
          container = go_cell_bottom.
    * Create ALV grids
      CREATE OBJECT go_grid1
        EXPORTING
          i_parent          = go_cell_top
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_double_click         FOR go_grid1,
        lcl_eventhandler=>handle_context_menu_request FOR go_grid1,
        lcl_eventhandler=>handle_user_command         FOR go_grid1.
      CREATE OBJECT go_grid2
        EXPORTING
          i_parent          = go_cell_bottom
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Display data
      gs_layout-grid_title = 'Customers'.
      CALL METHOD go_grid1->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNB1'
          is_layout        = gs_layout
        CHANGING
          it_outtab        = gt_knb1
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      gs_layout-grid_title = 'Customers Details (Sales Areas)'.
      CALL METHOD go_grid2->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNVV'
          is_layout        = gs_layout
        CHANGING
          it_outtab        = gt_knvv  " empty !!!
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Link the docking container to the target dynpro
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * NOTE: dynpro does not contain any elements
      CALL SCREEN '0100'.
    * Flow logic of dynpro (does not contain any dynpro elements):
    *PROCESS BEFORE OUTPUT.
    *  MODULE STATUS_0100.
    *PROCESS AFTER INPUT.
    *  MODULE USER_COMMAND_0100.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.  " contains push button "DETAIL"
    *  SET TITLEBAR 'xxx'.
    * Refresh display of detail ALV list
      CALL METHOD go_grid2->refresh_table_display
    *    EXPORTING
    *      IS_STABLE      =
    *      I_SOFT_REFRESH =
        EXCEPTIONS
          OTHERS         = 2.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK' OR
             'END'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
    *   User has pushed button "Display Details"
        WHEN 'DETAIL'.
          PERFORM entry_show_details.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  ENTRY_SHOW_DETAILS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM entry_show_details .
    * define local data
      DATA:
        ld_row      TYPE i,
        ls_knb1     TYPE knb1.
      CALL METHOD go_grid1->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_knb1 INTO ls_knb1 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT        * FROM  knvv INTO TABLE gt_knvv
             WHERE  kunnr  = ls_knb1-kunnr.
    ENDFORM.                    " ENTRY_SHOW_DETAILS
    Regards
      Uwe

  • Indesign CS6 8.0.1 control panel and context menus off (disabled)

    indesign 8.0.1 build 406, build 401
    more than 10 istallations Apple intel i5 OSX 10.6.8 and 10.7
    Problem
    Often runtime, the control panel and context menus are disabled (e.g.: trasformation Values, rotation, shear angle, character and paragraph formattingt control (track, kern), fx, colors.
    All documents are created in CS6 or converted from CS5 templates (After the opening in CS6 files are exported IDML file exported).
    What we have done to try and fix the problem:
    Reinstal InDesign - No effect
    Cleared the preferences (shift + ctrl + alt + apples key on InDesign startup) - Works but is not conclusive.
    Helps?
    Thanks
    Best Regard
    Filippo M

    Do a system restore to last Thursday....

  • Tree Control  and context menu

    Hello,
    I created a tree with a menu. But the menu is not displayed on right click of a node .... Well I can miss something...
    Anybody have an idea for help me ?
    Best regards

    Hi Aurélien,
    This feature is not yet supported. Nonetheless, starting with SP13 you will be able to connect context menus to any ui element in the same way as it is the case in 7.10 with the limitation that context menu inheritance between ui elements along the ui element hierarchy not supported in SP13.
    Best regards,
    Thomas

  • Add "make unique symbol" button and context menu option

    I often want to make a variation of an existing symbol that is already positioned on the page. Unless I'm missing something, the steps are to duplicate existing symbol in the symbols palette, then replace the selected symbol instance, using the "replace symbol instance" in the Control Bar. Why not have a context menu option "make unique symbol" that automatically replaces the instance with new, unique symbol? I'd also like to see "Edit Symbol" added to the context menu. I'm hovering over the symbol, why should I have to go find the "edit symbol" button? I realize I can double-click the instance, but this does not work in all cases, such as when the direct select tool is active.
    If you've used SketchUp, you know where this idea comes from.
    Thanks,
    Ray

    No, I want to make a new, unique symbol of an existing symbol instance. If I choose "break link" from the context menu or symbols palette, the artwork is no longer a symbol and after editing, must converted to a symbol using the symbols palette. This requires several, unnecessary steps. At the very least, I'd like to see "Make new symbol" added to the context menu. If you're a SketchUp user you'll know exactly what I'm talking about. Seems incidental, but AI's method is inefficient.

  • Precalculated data and context menu

    Hi all,
    Ever since I started using pre-calculated data in my WAD report, the basic context menu and enhanced context menu (with all standard sap options like 'export to excel') has disappeared.
    Any suggestions on how to bring it back?
    I am on BW3.5.
    Many Thanks in advance.

    Hi,
    One possibility could be the read mode on the web template.
    Check the setting "Read Mode For Data" on the Web Template in the WAD.
    If it set to "Precalculated Data - STORED" or "Precalculated Data, If it exists - Hybrid" you won't be able to see the context menus" as it reads from pre-calculated data.

  • Flash trapallkeys and context menu issue on Mac

    Hi
    Using Flash CS3 and AS2. There seems to be a conflict when trapping all keys and with the context menu on Mac. If I have a Flash movie with a single line of code:
    fscommand("trapallkeys", "true"); 
    When I open the resulting swf in either the standalone Flash Player or if I publish as a Mac projector, when I right-click I get the context menu appear as normal, but none of the menu items work - nothing is triggered and the menu disappears. This is even the case for "Settings..." and "About Flash Player..." items. If I open the swf in a browser or run the movie from the Flash authoring environment, then the context menu works - but of course the fscommand is not run in these circumstances.
    I've tried publishing for different Flash Player versions (down to 5!) and running in different Flash Players (a couple of version 9's and the latest version 10). 
    Has/can anyone get the fscommand to run AND the context menu to work together in the standalone Flash Player or the Mac projector? By the way, this only seems to be an issue on the Mac version - both work together on a Windows machine. 
    Any help at all would be greatly appreciated. 
    Thanks, Mark

    Hello Rohan,
    We had the same issues as you described and we're on NW 2004s patch 9.
    We applied the OSS note 909314 (as SAP suggested) and those two issues were resolved.
    Thanks,
    Elena.

  • Rightclick and context menu functionality in SBO 2004

    hi guys...
    how to capture the right click event and the context menu event. I have seen the right click example in the SBO 2005 examples but how to get that functionality in SBO 2004, there r no SAPbouiCOM.ContextMenuInfo and SBO_Application.RightClickEvent
    thanx in advance..
    regards,
    Vasu..

    Hi,
    I don't think you can achieve this in the 2004 version as it was an entirely new feature in the 2005A SDK.
    Regards,
    Owen

  • Flexibile UI and context menu questions

    I would like to give the user the possibility to change the “Look & Feel” of the KM through the flexible UI and also i need to change the context menu configuration? For example I would like the subscription to be open not from the “Details” context menu.
    is it possible?

    Hi Erez,
    this is possible. Start your investigations from the LayoutSet used by your KM iView (System Administration - System Configuration - Knowledge Management - Content Management - User Interface - Settings - Layout Set). From this you can navigate for example to the CollectionRenderer or ResourceRenderer, wherever you want to change something. From this you can drill down to the CommandGroup used. CommandGroups themselves contain other commandgroups or single commands. Drill down this composite pattern to the command(group) you would like to change and add or remove command where you like to.
    Some advice: Before changing the standard groups/renderer/layoutsets, create an "advanced copy" of a layout set, fill in this set within your KM iView and make the changes on this deep copy of the original object; by this, you won't kill any (working) standard implementations...
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Fusion Middleware Control "Identity and Access" menu missing

    Hi.
    I have a problem with one of the fussion middleware control menus which is missing.
    The environment is as follows:
    - One server with OVD + OID
    - One server with Weblogic + ODSM + Fussion Middleware Control
    (All idm fmw 11.1.1.2.0)
    ODSM can connect to OVD / OID on the other server without any problems.
    On Fussion middleware Control I can not see the menu "Identity and Access". In previous installations where all the components where installed together in the same server, that menu appeared without any extra configuration.
    The menu i'm talking about is the one referred here: http://download.oracle.com/docs/cd/E15523_01/oid.1111/e10046/basic_started.htm#CIHHAJJH
    "2.In the left panel topology tree, expand the farm, then Identity and Access. Alternatively, from the farm home page, expand Fusion Middleware, then Identity and Access. Oracle Virtual Directory components are listed in both places"
    Which are the steps to get that menu back? How do i get "linked" fusion middleware control with ovd/oid from the other server?
    Any extra configuration, any steps during installation...
    There's something probably very simple i'm missing but i haven't found any reference about creating/configuring that menu...
    Thanks in advance.

    Hi. i tried what i posted on my last message but i can't pass next step of the installation.
    If i try to install oid+ovd in <host 2> i can select "extend existing domain" and it connects correctly to the weblogic domain (IDMDomain creating during installation of odsm & em fmw control) that is up un running on <host 1>.
    But on the next step it asks for the "Weblogic Server Directory"... If i enter the path where weblogic resides on <host 1> it fails because it looks for it in the host i'm installing oid+ovd <host 2>.
    - First of all, is it really possible to have oid+ovd on one host and weblogic+odsm+enterprise manager fmw control in a different host in a way that makes possible to manage oid+ovd with enterprise manager fmw control?
    - Is it possible to tell the installer that the path for the weblogic server is in a different host? something like host:path?
    - If it's not possible, is it documented anywhere? i haven't found anything regarding that possible limitation.
    Please, any help would be appreciated as this is becoming critical for us.

  • ACROBAT 9 Service packs and Context Menu hidden features

    Hello.
    My name is Sergio Bonfiglio. Some years ago I bought a CS4 WEB Premium suite with Acrobat 9 included.
    While I'm Italian, I decided to buy an English version of the suite (I'm bi-lingual) for compatibility problems with tutorials and so on.
    Recently I had to re-install the suite because of a RAID problem, onto a my newly re-formatted PC.
    I did it successfully, but I'm experiencing some problems.
    1. It seems impossible to install the standard Acrobat 9 service packs. They simply refuse to install. Acrobat 9 included in my CS4 is heavily bugged. The OCR recognition always crashes after few pages of work.
    2. Some voices in the Explorer right-click menus are blinded, there is no caption (text) appearing. The lines are blank, while if I click on these "empty" voices, some Acrobat features do start, like the aggregation of multiple PDFs and so on.
    Because part of my job is the transcription of documents - especially rare books - I badly need the OCR function working well.
    Please help me to resolve these problems.
    It is awful to have some "blnided" voices in the right-click menu, and it is severe problem not getting the OCR text of a document.
    I'm using Windows 7 PRO.
    Thanks for any help.
    Sergio Bonfiglio
    Italy

    The simple answer is that your Acrobat was never installed properly for whatever reason. Run the cleaner, reinstall:
    Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs
    Mylenium

  • Create Data Control not showing in EJB Session Bean context menu

    Hi All,
    I've been studying the new Oracle Application Development Framework Tutorial for 10g Release 3 (10.1.3). When I get to page 2-16 (page 31 of the PDF doc) it says to create ADF Data Control. Specifically is says " In the Applications Navigator, right-click the SRPublicFacadeBean.java node and choose Create Data Control from the context menu."
    But my context menu doesnt have the Create Data Control option. I double checked that I didn't miss a step in the tutorial. I'm sure it's something simple. Can anyone point me in the right direction? Is there another way to create the Data Control for an EJB Session Bean?
    Thanks,
    Cary

    I downloaded "jdevstudio1013.zip " and I still don't have this context menu?
    What are the steps to correct this?
    Thanks,
    --Todd
    Figured it out. I was having an extension issue and I had to turn off all of my extensions. Thus, turned on the ADF extension (duh!) and all was well.
    Message was edited by:
    jtp51

  • Want sending directly email addresses to applied rules via context menu

    Oke, I already sad it. But, 'par example'... I'm working with new co-workers at a new place. I got a a massage from our contact person. he send us all an 'open' massage, with all the e-mail addresses visible. Now I select all the contacts and want to direct them in a 'rule'... so they are 'mapped/directed to, in this case an sup-group or specified folder. The idear is that all emails from this group will go to this (ruled) folder.
    But I want to do this right-click/controle click to context menu way.
    This would also be handy for just one contact. Its a bit tidious to do it one by one after you opened preferences etc.
    Maybe there is another solution. Thanks for responds!

    Waaa, that's a pity. Coming from thunderbird, it's a loss in productivity!
    In thunderbird you can make a 'rule based on a email address'.
    This will be a big request for a future production of Apple Mail. Hope that people from Apple read this.
    If anybody thinks different please say so. But thanks for your fast reply.

  • Exchange 2007 OWA with S/MIME installed Context Menu Disspear

    Hi Guys,
    We are experiencing the following issue with Exchange 2007 SP3 OWA when S/MIME control is installed:
    Context Menu and Email Format are grey out
    Does anyone know if this behavior is by design??
    Best Regards
    Federico Giampietri
    Federico Giampietri Latamsupport IT Infrastructure Services

    Hi,
    I tested in my lab, Exchange 2007 SP3. The result is the same with you.
    Without the S/MIME
    control, Cut, Copy, and Paste from the Context Menu worked as expected and I could change email format . When I installed the
    S/MIME
    Control, the behavior with the Context Menu was reproducible, and email format is greyed out, but I could use Ctrl +X/C/V to cut, copy and paste.
    I searched through internal channel and found this behavior is by design. However, as a workaround for choosing Cut, Copy, or Paste from the Context Menu, we can use Ctrl +X/C/V to cut, copy and paste.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Belinda Ma
    TechNet Community Support

  • Context Menu for 7.x iview with 0ANALYZER_PATTERN

    We created a custom template copying 0ANALYZER_PATTERN to ZANALYSIS_PATTERN in an attempt to add the export to .csv functionality along w/ other enhancements.  I noticed that in the context_menu web item the web parameter to "Export to .csv" is set ON..however the option does not show up in when executing the 7.x iview along w/ many others. 
    1. What impact does the context menu web parameter settings have on the 7.x or 2.x/3.x iviews? Having difficulty trying to predict the behavior.
    2. Can some please explain the connection between the Web Template and the iview version behavior?  You can create 2 seperate iviews one that uses the 7.x setting and another that uses the 2.x/3.x setting and both behave completely different. 
    The reason I am asking, is to manipulate our custom template that will use the 7.x iview to include some specific functionality that was there in the 2.x/3.x iveiw and no longer there in the 7.x iview...specifically the ability to export to .csv.
    thanks in advance for any input.
    best,
    -ravi
    Message was edited by: Ravi Patel

    QUESTION 1. What impact does the context menu web parameter settings have on the 7.x or 2.x/3.x iviews? Having difficulty trying to predict the behavior.
    ANSWER 1. The context menu web item allows you to turn off and on parameters within a 2004s BI Web Application. When you update this property, it should update the template. To test this, create a new web application from scratch and put a table and context menu web item in there. Check on the context menu parameters you want to see. Save the web application and run it. Since this is a new web application, you can ensure that you aren't using cached settings and are testing the functionality.
    QUESTION 2. Can some please explain the connection between the Web Template and the iview version behavior? You can create 2 seperate iviews one that uses the 7.x setting and another that uses the 2.x/3.x setting and both behave completely different
    ANSWER 2: The 2.x/3.x iViews are to launch BI Web Applications built with the old Web Application Designer. The 2004s iViews allow you to launch applications built with the new web application designer. Keep in mind the connection strings are different. Within 3.x, the format is TEMPLATE_ID=0ADHOC, whereas within 2004s, the format is TEMPLATE=0ANALYSIS_PATTERN, so the command has changed from TEMPLATE_ID to TEMPLATE.

Maybe you are looking for