Context Menu in WAD - disable the data entry active entries

Hi,
I have the following problem. We created an input ready query and brought this query via WAD into the portal. Inside the Web Template we have a SAVE Button and a Button activation the Data Entry possibility. Now when executing the Web Template, the user can save the data via the context menu (we have the steps "Data Entry Active -> Active | Save Changed Data | Reset Changed Data | Update ). Now we want to suppress these funcitonality, because using the SAVE button the systems starts a planning sequence for checking entries and a process chain with special funcition. The users must use the button, because the save function in the context menu does not execute the planning functions.
Maintaining the Web Template via WAD I don't have the possibility to disable these menu entries. If I disable all menu entries in the context menu web item, executing the Web Template displays only the Data Entry Active Menu . How can I suppress these special entries of the context menu, because I want to use other entries of the context menu and I don't want to suppress the context menu in total (I know that this is possible.)
Thanks in advance.
Juergen

Hi,
we have the same problem. I have found the following solution:
Use the following parameters for the context menu item to suppress the data entry active entries.
                <bi:CONTEXT_MENU_ITEM name="CONTEXT_MENU_ITEM_1" designheight="70" designwidth="300" >
                    <bi:MENU_CELL_LOCKING value="" />
                    <bi:MENU_VALUE_RESET value="" />
                    <bi:MENU_DATA_ENTRY_MODE value="" />
                    <bi:MENU_REFRESH_DATA value="" />
                    <bi:MENU_SAVE_DATA value="" />
                    <bi:MENU_RESET_DATA value="" />
                </bi:CONTEXT_MENU_ITEM>
It works for us.
Regards,
Benjamin

Similar Messages

  • How to configure Context menu in WAD 7.0

    Hi experts.
    I want to take away some of the possibilities in the context menu in WAD.
    ( take away send e-mail ).
    Can anyone please tell me where I can find this.
    I would like to change this for all WAD- templates in the portal.
    Thanks in advance.

    Use the Context Menu web item within your template and disable the property. You can save this item to the library as reusable item and use it in all your templates.

  • I have a problem in the data entry Visa card please help

    I have a problem in the data entry Visa card please help

    abdulaziz711 wrote:
    I have a problem in the data entry Visa card please help
    Is this what you mean...
    http://support.apple.com/kb/TS1646
    If no joy...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Bug report: Controls in the Data Entry property page reset when using relative time

    Create a blank VI.
    Drop a numeric control.
    Right click and select "Display Format".
    Change to a relative time.
    Switch to the "Data Entry" tab page.
    Uncheck the "Use Default Limits" boolean.
    Try changing the values and you will see that they return to their previous values (inf, by default). This persists even after pressing OK and opening the dialog again. It looks like the values are held in a cache and put back into the controls, since if you change a page and go back to the limits page, it shows the correct values. I also managed to get it to display the values using the correct format (relative time), which I assume is what it should be doing.
    This is in LabVIEW 8.6.
    Try to take over the world!
    Attachments:
    Relative Time Data Entry Bug.vi ‏5 KB

    I spent some time playing around with this in 8.6.1, and at this time do not consider it a bug - unless there is something I completely missed.
    When you set to relative time, the inputs for data entry are expecting HH:MM or HH:MMS, depending on which display setting you chose.  Typing a '7' is undefined - does the user mean hours? Minutes? Seconds? Parsecs ?
    Once we type in a value that matches the format and we get the display to change, it is true that from now on if we type '7' in the field, it will automatically coerce it to 7:00, if we type 36 it coerces to 36:00.  If we type 7.5, it does not change the value at all.  I think at this point, the user knows what is going on, so this behavior is acceptable.  After accepting the changes and re-opening the properties window, the limits are persistent.
    I was not able to reproduce typing a '7' in the limit, having it automatically coerce back to '-inf', then going to a different tab or clicking ok, and coming back and seeing it as 7:00. It was still '-inf'.  If you have some more details on this, maybe I can reproduce it, but from everything I tried, users are be able to enter values and these values are saved.
    Edit - I am aware of the other forum post and the CAR filed there...
    Message Edited by Robbob on 03-03-2009 11:20 AM
    Rob K
    Measurements Mechanical Engineer (C-Series, USB X-Series)
    National Instruments
    CompactRIO Developers Guide
    CompactRIO Out of the Box Video
    Attachments:
    2009-03-03_105522.jpg ‏51 KB
    2009-03-03_105336.jpg ‏58 KB

  • 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

  • The Taskbar context menu to appear behind the Taskbar

    This bug was first found in Windows 8 but after some time we noticed that its also present in Windows 7. This bug causes the Taskbar context menu to appear behind the Taskbar.

    That's the for the secondary track.  But how do I trim the primary audio song from itunes.  I did find a work around. 
    select  the song in itunes.
    command + I to get the information screen.
    Under one of the tabs there is a "start" and "end" timer.  Trial and error will put allow you to start and stop at the time specifed.
    I renamed it " trimmed" so I knew it was a timmed version...then I inserted it into aperture the normal way...
    A pain, but it works...

  • Permanently disable the data roaming option

    Hi,
    is there a way to disable the data roaming option? Maybe via iPhone Config tool?
    We would like to permanently disable, respectively password protect this option
    for all our iPhone Users. Just setting a default value wouldn´t be enough.
    Thanks
    Chris

    Hye ChrisBLN,
    Did you find out any solutions to your problem?
    To be honest, I'm currently in exactly the same situation and would appreciate to know if you discovered any replies that shows it's possible?
    I tried to manipulate ICU that seems to be made for this kind of problem but I can't find the right property/configuration.
    What about you?
    Thanks

  • I cannot see my itunes library on the main menu under computers despite the network being active and the home sharing on on both the devices the mac and apple tv. Any ideas?

    I cannot see my itunes library on the main menu under computers despite the network being active and the home sharing on on both the devices the mac and apple tv. Any ideas?

    Hi Monty,
    Sorry to say it, but this is normal for Apple TVs. I've owned a TV2 and a TV3, and neither lasted for an entire year. They are quite fragile and of low quality, and as you can see here, quite fussy even when they work. The wi-fi receiver on these are cheap and unreliable.
    Consider the $99 an annual rental fee. They rarely work for a whole year, so if you are going to use the platform, you will have to replace them constantly.
    Also, when one dies under warranty, never, never send it to Apple for repair. Go to the Apple Store for replacement. I sent my ATV3 in for warranty repair using a box sent to me by Apple, and although FedEx tracking showed it was accepted by Apple, it was never seen again. Apple won't replace it or even return my calls.

  • How do i determine the date of activation of active data in DSO?

    Hi,
    I just want to know how do i determine the date of activation of active data in a given DSO?
    thanks,
    yoly

    Hi,
    if you are using BI 7.0 than you use RSA1.
    Select the infoprovider you want to check.
    Right mouse click and select manage.
    Click the Contents tab.
    Click on the logs button lower left part of the screen and select Activation of Loaded DSO Data.
    This should give you the information that you are looking for.
    regards,
    Raymond Baggen
    Uphantis bv

  • How to get from Apple (officially) details on my iphone 5 (knowing the serial number): model, date of sale, the date of activation, etc.

    How to get from Apple (officially) details on my iphone 5 (knowing the serial number): model, date of sale, the date of activation, etc. I bought a new iphone 5 on ebay.com - he was used. For a decision on my case ebay asks for this information ...

    Apple will never reveal that info to you, since you were not the originally purchaser. However, you can get the date of sale by entering the SN here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Warranty starts on the date of sale, which is most likely the date of activation, but not necessarily so.

  • Where can I find the date of activation of My Account APPLE ID ?

    Where can I find the date of activation of My Account APPLE ID ?

    You can't. At least, I cannot find nor have ever heard of that information being available to the account holder.
    Regards.

  • Enhance context menu in WAD 7.0

    I need to enhance the context menu in a WAD 7.0 template. There a different approaches to do this in 3.5, but none of these work with 7.0.
    The javascript function SAPBWAddToMenu is no more available rsp. visible and there is no command/parameter in the web item "context menu".
    Any ideas how to implement it with 7.0?
    Edited by: Wulf-Diether Betz on Feb 2, 2009 1:08 PM

    Hi,
    I am sorry but I think it is not possible in BI 7.0 at the moment.
    Regards
    Erwin

  • No right click context menu on tabs, just the name of the site.

    When I right click on a tab, there is no context menu, only the name of the site. What happened to the options such as "close other tabs", etc.

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Is the data entry bar gone?

    It appears that data entry is only possible directly in cells now rather than being able to enter it in the bar at the top of the spreadsheet as in Numbers '09?
    This is unfortunate. I've always used that space to paste text from webpages and other programs to have them default to the standard format of the sheet rather than use the clumsy shift-option-command-V to paste items and match style.
    Am I missing something? I've tried all the menu options I can find but there doesn't seem to be any other data entry area other than directly in the cell.
    This is the 3rd or 4th thing now that is really going to hamper my productivity in the new numbers. I'm really considering dumping it at this point and going back to the old version... At least on spreadsheets that are easily recreated since the old version won't open spreadsheets that have been manipulated in the new version.
    Tim

    Tim,
    How about that, Numbers V2 is on its way out and I learn something new about it. I never realized the practicality of pasting into the Formula Bar.
    However, in Numbers V3, there is a slightly clunky way to enter data into the formula editor rather than directly into the cell:
    Select the Cell, Type an equals sign, hit "delete", Paste.
    Not easier than Shift-Option-Command-V, but it works.
    Jerry

  • My context menu no longer has the options to delete, remove etc.

    My context menu no longer has some of the options it used to have. I have disabled a number of add-ons to solve the problem, but it didn't work. I don't find options like opening the link in a different window or tab useful. Could you please tell me how I can change my context menu that has options of deleting, renaming, removing, editing a tab or a folder in my email account (Yahoo)?
    Thank you.
    Shafiq Islam

    Web pages can replace the context menu to their own version and suppress the regular context menu.
    You can set the <b>dom.event.contextmenu.enabled</b> pref to false on the <b>about:config</b> page to prevent web pages from modifying the right-click context menu.

Maybe you are looking for

  • Facing problem in having CANCEL functionlaity to a selection screen.

    Hello there,                 I have a selection screen. There i am calling another selection screen as selection screen within selection screen. I am calling this second selection screen as a pop-up screen, to that small pop-up i am setting a pf-stat

  • Ibook clamshell indigo won't go into sleep

    When I close the lid of my ibook clamshell it wont go into sleep. I tried going into system preferences and looking at energy saver and display, but Icouldn't find out how to make it go into sleep when I close the lid. Any suggestions will be appreci

  • Created website in flash cs3, wont open once hosted...

    I tried to find the answer here in the forums but couldn't,.  I'm sorry, i bet this question has been posted before.. I created a website in flash cs3.  published it so that I now have an index.html, home.swf and AC_RunActiveContent.js file. when I u

  • Stop GB from opening most recent song

    Hello, I teach electronic music in a lab (dual G5s with OSX 10.4.10) using Logic and GarageBand, and GB has been annoying me and my students because it always opens the most recent song when started up. I realize that if you close the song before qui

  • Network problem when update ios 5.1.1

    hi, I am in big problem with my iphone 4, when upgrade in ios 5.1.1 then my operator's network some times showing and sometimes not showing. Also notice that if the network bars is full but it is not working. Please help me with some advise at   [ema