Question about right click menu

i want to add a right click event and pop up a menu on the row of "table control"
dose the "web dynpro project" can do that or i must use "portal application project".

Hi Charles,
This requirement is Not possible with Web Dynpro.
SAP has still not come up, with any APIs to change or edit the right click menu.
Thanks and regards,
Sam

Similar Messages

  • How to get rid of right click menu?

    I like to mouse over a hyperlink in a web page and select "open in a new tab". The right click menu jumps in the way. I don't like or use the right click menu. How do I stop it from stopping me? As a side note, the reason I like "open in a new tab" is that some websites will open on the same page and in some events the back button will not return you to that page. I find the new tab very helpful and the right click menu a pain in the ---.
    Win 8.1
    Firefox - newest
    Alternatively, is there a way to add "open in a new tab" to the menu that gets in the way?
    I was trying to open "Sign Up/Sign In" in a new tab.
    Completely irrelevant to my question, but since you see my tabs, I was watching Jon Stewart on Hulu. He was raving about the Katy Perry Superbowl show. I wanted to see what he was talking about. I don't give a flying crap in the rain about the Stupor Bowl.

    The right-click menu is context-sensitive. When you right-click a link, you should have the option to open in a new tab, new window, or new private window. (In a private window, "new window" is not displayed.) The menu in your screen shot would normally appear if you clicked a blank area of the page without a link directly under the mouse pointer.
    I can't think of any built-in way to get the Open in New Tab command just mousing over a hyperlink. Do you have an add-on that does that automatically for you? If so, I wonder whether it might need an update?

  • Is there a way to open the right click menu on the left side of your pointer?

    Whenever I try to right-click an object that's located on the right side of the screen, the pointer always automatically click whatever entry in the right-click menu which just happens to be under the pointer the moment the menu is opened. I noticed that the reason this happens is because the right click menu always forces itself to open on the right side of the pointer, and when there isn't enough space, the right-click menu will open underneath the pointer. Since this is horribly inconvenient, is there a way to open the right-click menu on the left side of your pointer?

    Are you saying you have an icon on the far right side and when you rt click on it, your pointer ends up opening wherever it lands? That is a two step process, or normally should be at least a two step process. Do you have a Mouse in your Control Panel? You should check, because there may be some properties with which you can play. For instance, I can switch primary and secondary functions on my mouse buttons by checking a box.
    When I rt click on right side, the menu opens on the left.
    When I rt click on left side, the menu opens on the right.
    In order for me to take an action, I then have to move to an area in that menu and click.
    I hope I understood your question correctly.

  • Copying a table with the right-click menu in schema browser fails to copy comments when string has single quote(s) (ascii chr(39))

    Hi,
    I'm running 32-bit version of SQL Developer v. 3.2.20.09 build 09.87, and I used the built in context menu (right-clicking from the schema browser) today to copy a table.  However, none of the comments copied.  When I dug into the PL/SQL that the menu-item is using, I realized that it fails because it doesn't handle single quotes within the comment string.
    For example, I have a table named WE_ENROLL_SNAPSHOT that I wanted to copy as WE_ENROLL_SNAPSHOT_V1 (within same schema name)
    1. I right-clicked on the object in the schema browser and selected Table > Copy...
    2. In the pop-up Copy window, I entered the new table name "WE_ENROLL_SNAPSHOT_V1" and ticked the box for "Include Data" option.  -- The PL/SQL that the menu-command is using is in the "SQL" tab of this window.  This is what I extracted later for testing the issue after the comments did not copy.
    Result: Table and data copied as-expected, but no column or table comments existed.
    I examined the PL/SQL block that the pop-up window issued, and saw this:
    declare
      l_sql varchar2(32767);
      c_tab_comment varchar2(32767);
      procedure run(p_sql varchar2) as
      begin
         execute immediate p_sql;
      end;
    begin
    run('create table "BI_ETL".WE_ENROLL_SNAPSHOT_V1 as select * from "BI_ETL"."WE_ENROLL_SNAPSHOT" where '||11||' = 11');
    select comments into c_tab_comment from sys.all_TAB_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and comments is not null;
    run('comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '||''''||c_tab_comment||'''');
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       run ('comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''');
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    The string of the table comment on WE_ENROLL_SNAPSHOT is this:
    WBIG table of frozen, point-in-time snapshots of Enrolled Students by Category/term/pidm. "Category" is historically, and commonly, our CENSUS snapshot; but, can also describe other frequencies, or categorizations, such as: End-of-Term (EOT), etc. Note: Prior to this table existing, Census-snapshots were stored in SATURN.SNAPREG_ALL. All FALL and SPRING term records prior-to-and-including Spring 2013 ('201230') have been migrated into this table -- EXCEPT a few select prior to Fall 2004 (200410) records where there are duplicates on term/pidm. NO Summer snapshots existed in SNAPREG_ALL, but were queried and stored retroactively (including terms prior to Spring 2013) for the purpose of future on-going year-over-year analysis and comparison.
    Note the single quotes in the comment: ... ('201230')
    So, in the above PL/SQL line 11 grabs this string into "c_tab_comment", but then line 12 fails because of the single quotes.  It doesn't know how to end the string because the single quotes in the string are not "escaped", and this messes up the concatenation on line 12.  (So, then no other column comments are created either because the block throws an error, and goes to line 22 for the exception and exits.)
    When I modify the above PL/SQL as my own anonymous block like this, it is successful:
    declare
      c_tab_comment VARCHAR2(32767);
    begin
    SELECT REPLACE(comments,chr(39),chr(39)||chr(39)) INTO c_tab_comment FROM sys.all_TAB_comments WHERE owner = 'BI_ETL'   AND table_name = 'WE_ENROLL_SNAPSHOT'  AND comments IS NOT NULL;
    EXECUTE IMMEDIATE 'comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '''||c_tab_comment||'''';
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select REPLACE(comments,chr(39),chr(39)||chr(39)) comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       EXECUTE IMMEDIATE 'comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''';
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    On lines 4 and 8 I wrapped the "comments" from sys.all_tab_comments and sys.all_col_comments with a replace command finding every chr(39) and replacing with chr(39)||chr(39). (On line 8 I also had to alias the wrapped column as "comments" so line 10 would succeed.)
    Is this an issue with SQL Developer? Is there any chance that the menu-items can handle single quotes in comment strings? ... And, of course this makes me wonder which other context menu commands in the tool might have a similar issue.
    Thoughts?
    thanks//jacob

    PaigeT wrote:
    I know about quick drop, but it isn't helpful here. I want to be able to right click on a string or array wire, navigate to the string or array palette, and select the corresponding "Empty?" comparator. In this case, since I do actually know where those functions live, and I'm already using my mouse to right click on the wire, typing ctrl-space to open quick drop and then typing in the function name is actually more work than navigating to it in the palette. It would just be nice to have it on hand in the location I naturally go to look for it the first time. 
    I don't agree with this work flow.  Right hand on mouse, left hand on home keys.  Pressing CTRL + Space is done with the left hands, and then you could assign "ea" to "Empty Array" both of which is accessible with the left hand.  Darren posted a bunch of great shortcuts for the right handed developer.
    https://decibel.ni.com/content/docs/DOC-20453
    This is much faster than waiting for any right click menu navigation, even if it is found in the suggested subpalette.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Removing "Open With [Program]" from Right-Click menu

    I was looking around for Applications that could play .avi files and I found Perian  so decided to install it. After installing it I quickly found that it didn't work with all of my .avi files and after some further reading realized that Perian is no longer supported and apparently does not work with QT 10. I decided to uninstall it and use VLC player instead. After uninstalling Perian and removing it from the "System Properties" it looks like it's still showing up in the right-click menu for .avi files.
    My question is how do I remove this from being an option whenever I right-click an .avi file? Perian is no longer installed and I don't want to see it as an option.
    Thanks in advance

    This is probably because all the associated files have not been removed and it is still in the LaunchServices cache. To be sure you remove all associated files may require re-installing the app and using AppCleaner  to trash it and it's supporting files.
    Then, you may also need to clear LaunchServices caches
    Launch /Utilities/Terminal and copy & paste this at the prompt to rebuild LaunchServices: (be sure to copy the entire line it's a scroll)
    Code:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user
    Then press return. Wait until terminal returns to the command line. Quit Terminal. After that, log out and back in or restart. Let us know

  • Left clicking mouse acts as if I'm right clicking, and comes up with right click menu?

    Hi I was wondering whether anyone could help me with this, I've had this problem for a week or so now and it's beginning to get frustrating.
    I have a newish iMac, bought in January, and I've been having this problem the last week or so, where when I left click something, it acts as if I am right clicking it and it comes up with the right click menu. I has happened mostly while on the internet (chrome), but also when I'm just on my desktop, but less often.
    It only happens every so often, and rights itself after a couple of minutes. What could be causing this, and how do I stop it?
    This is my first ever post on here, so I do apologise if I have been vague or I have posted this question in the wrong section, I am also new to macs (well since January).
    The mouse I am using is a dell wired mouse, a couple of years old, which I just plugged in without the need of installing software etc.
    Many thanks for any help in advance.

    Hello & welcome!
    No worries, you did great for a 1st post, & this is generally a friendly place.
    It sounds light it's the Mouse button from here, to test it...
    Go to System Preferences > Mouse, change the Primary button to the Right button... does the Right button ever do that now as the left button?

  • Help with right click menu!

    Hello. I have a little problem with my right click menu and Firefox. When I right click a document and go to "open with" menu I get about 5 Firefox options along with other applications to open the file; how can I get rid of all this Firefox entries?? I guess they are there because of many Firefox updates from about 2 years but, it should be just one.

    Do you have multiple versions of Firefox installed? If so, you either have to remove all but one or live with it.
    If you have only one version of Firefox currently installed, rebuild your launch services database:
    http://hints.macworld.com/article.php?story=20031215144430486

  • Right click menu doesn't work

    (This issue has been ongoing for several versions now. I've uninstalled and reinstalled, and tried safe mode.)
    The right click menu, '''within the menu bar drop down menus''', disappears as soon as I move the mouse. Making it impossible to select anything from it.
    '''For example:''' I click "Bookmarks" in the menu bar and get a drop down window of all my bookmarks. I then mouse over a bookmark and right click to get the drop down menu that will let me "Open", "Open in new Window", "Open in new Tab", etc...
    As soon as I move the mouse, this menu disappears. I cannot mouse over it to make a selection.
    If I don't move the mouse I can use the arrow keys to make a selection and then hit enter.

    This solution worked for me (Dell E6320 laptop running Firefox 5 on Windows 7 Pro) immediately:
    Go to Options > Advanced > General and uncheck the "Use hardware acceleration when available"
    I found it here: https://support.mozilla.com/en-US/questions/764278#question-reply
    It's a pity that you might be slowing the rendering somewhat, but the tradeoff is well-worth it...

  • Right Click Menu Keeps Popping Up (Finder)

    Hello all, just wondering if anyone else is having this problem in the Finder. If I right-click on something in the Finder, then left-click on something else, the right-click menu keeps popping up even if I have only one finger on my trackpad.
    I tried removing my entire hand from anywhere near the trackpad and carefully touching the button with my index finger with all the rest of my fingers curled away and it still pops up the right-click menu.
    The only thing that seems to cure it is switching focus to Firefox or some other application, then going back to the Finder. Clicking on a non-icon in the finder seems to help too. However, after right-clicking something then switching to a different icon, the right-click menu pops up again. Very annoying.
    Anyone know a quick fix for this? Thanks in advance.
    Message was edited by: ctrvl

    That's right, burgback. I actually think I may have found the issue: I use a prefpan / application called FolderGlance that lets you customize folders that appear in the contextual (right-click) menu. It even lets you dive into subfolders from an expanding right-click menu. Think about it as "stacks on steroids" because it lets you continue to dive into subfolders (unlike stacks...grrr).
    Anyway, disabling the prefpane and removing the plugin from the ~/Library/Contextual\Menu\Items/ directory seems to have fixed the problem for now. I'll update if it doesn't, but I've been operating for about 30 minutes now without issue. Formerly the problem would rear its head about every 10 seconds I was in the Finder.
    The only unfortunate part is...I love FolderGlance way more than stacks and I'm sad to see it go.

  • On the Adobe Flash Player web page,the Right Click Menu that near the taskbar can not be pop up.

    Environment:Win8/64bit Ent JP、IE10 JP、、Adobe Flash Player 11.3.372.94
      (when the language is English it happened too ) 
    Problem:
    On the Adobe Flash Player web page,the Right Click Menu that near the taskbar can not be pop up.
    And On the Flash Player Help home page(http://helpx.adobe.com/en/flash-player.html) has the same problem,
    and menu round the red circle on the below picture is the problem Right Click Menu.
    As this problem,If we program use the Flex,the problem that the Right Click Menu can not be pop up must occur.
    eg:
    IF there is many lines when we use the ListController ,the data nears the taskbar can not be used the Right Click Menu。
    Relation:
    The problem does not happen when the environment is below
    1、IE10(Win7/64bit)
    2、Google Chrome(Win8/64bit Ent JP)
    Question:
    Whether this problem is resolved? If yes,please tell me the solution,thank you!

    Can you try to update Flash Player to a newer version (using Windows Update)?

  • SAP BW 7 - Call URL from Right Click Menu

    Is it possible to make a http call from the right click menu? I know this was possible in 3.5, but the new code seems to have limited my ability to edit the options that appear when I right click on a field and I need to make a call out to another web server for some external data. Is this possible?
    Any information that anyone has about a potential work around would be great!!
    Thx.

    Kristine,
    Have you tried using RRI (Transaction RSBBS)? You can call URL , pass values etc.
    -Saket

  • ITunes 9 right-click menu, 'get info' replaced with 'play/pause'

    Why oh why have apple moved this... now when I want to quickly edit the tag of a file I'm playing or pausing... the most infuriating thing ever, almost as bad as when they decided to leave off "group compilations" on iPod classics.
    Is there anyway to remove the play/pause option on right click menu's?!?

    Agreed. It even is actually out of context in the right click menu, and here's why.
    Example, I am playing Song A and then pause it and I want to deal with Song Z way at the bottom. If I right click Song Z and click Play, it continues playing Song A so the right click tool becomes VERY misleading.
    Think about it. EVERY option in the Right-Click/Alt-Click box relates to the selected song(s) EXCEPT for the Play/Pause option. Sounds like a case of "which one of these is not like the other" you know? Therefore with the several other options of Space Bar, the Play/Pause button in the Upper Left hand corner, and the Control->PLAY, I'd say REMOVE it entirely from the right click menu since it doesn't belong.

  • How do I make a feature request for Firefox? Need for "Keep this website" in right-click menu for History viewing.

    During my daily Firefox sessions (w/over 300 RSS feeds), I commonly visit about 50 web sites. At the end of a session I may only want to keep one or a few history entries and have to manually delete the rest. I always keep one in particular.
    It would be infinitely easier if the capability of "Keep this Site" option were available in the right-click menu which would mean deleting the remainder of the history entries not marked to be kept, in conjunction with the History delete options in Firefox Preferences.
    Note: This is a real User need I have, and possibly many others would like the versatility.

    You can click the star in the location bar to bookmark a site that you want to keep.
    *https://support.mozilla.com/kb/how-do-i-use-bookmarks

  • Illustrator's weak right-click menu...

    Why is the right-click menu on Illustrator so weak? Other Adobe products seem to have a plethora of menu items when you right click on a selected object... I can't count the number of times I've right clicked in Illustrator to copy something only to rediscover that not even "cut" "copy" or "paste" are available. Why is this?

    Because right-click to bring up a menu is:
    Much faster and easier than keyboard shortcuts
    Reduces cognitive load by having a consistent way to display what can be done with what you are right-clicking on
    Would be more consistent with some other CS products
    Even when there are right-click menus available in similar places in CS products (such as the layers in Photoshop and InDesign), the menus are not the same.  Not even close, really.  This inconsistency with right-click menus matches the inconsistency with just about every other UI/UX aspect across the CS.  And that is inexcusable.  When working across multiple applications, these inconsistencies create a persistent cognitive load on the user, due to the need to keep in mind which application they are in and how to perform the same functions in this application as the other applications.  It is greatly complicated when one spends days or weeks working mostly in one application, then days or weeks working mostly in another application, and then switching back to the original one.  It is like learning it all over again.
    This prevents apps in the CS from every becoming natural and second-nature, where tasks are performed without concious thought on how to use the UI to accomplish them.  If a person was only ever in one application, this is not an issue. But it is sold and marketed as a suite, and even has "suite" in the name.  But the UI, UX, and workflows reflect the reality: it is a collection of individual applications that just happen to be sold as a package.

  • How did "inspect element" get on my right click menu?

    I did install several addons when this appeared. Anyone know from where this right click menu item came? My search suggested "firebug" - whatever that is. This is not on my XP but it is on my Vista and both have the same addons.
    Thanks

    "Inspect Element" is a new item that is added in Firefox 10.<br />
    Previous Firefox version do not have the build-in inspector.
    *http://www.mozilla.org/en-US/firefox/10.0/releasenotes/
    <blockquote>Inspect tool with content highlighting, includes new CSS Style Inspector</blockquote>
    You can hide that context menu entry by setting the <b>devtools.inspector.enabled</b> pref to false on the <b>about:config</b> page.
    *http://kb.mozillazine.org/about:config

Maybe you are looking for

  • Software to configure macbook into Apple TV device

    Is there a software application to configure a macbook into Apple TV device?

  • Save workbook in a role

    I have created a role "A" that permite save workbook. I have included the authorization objects: S_BDS_DS Activity * Rolename * Class type OT S_USR_TCS Transaction code: RRMX S_GUI Activity 60 S_USER_AGR   Activity *   Name of function * But when I t

  • Exporting or Saving for InDesign after creating in Photoshop CS2 ?

    Hi I have created a design mainly using dingbat fonts in Photoshop CS2 and want to save it (I think as a TIFF) for use in InDesign CS5. I have tried but when I 'place' to TIFF image in InDesign the quality looks terrible, can someone please advice on

  • Can I provide my own implementation of java.security.acl.Acl ?

    Hi, If I write my own securrity realm, am I able to use my own implementaion of 'java.security.acl.Acl' and 'java.security.acl.AclEntry' or do I have to use the implementation provided by weblogic ? When Security.checkPermission() is called, does it

  • Using Video Sound For Background

    Is it possible to use the soundtrack from one clip as the background sound for another without seeing the video images from the one used as a sound source? If so, how?