Insider/FourthElephant extension context menu not visible?

I've deployed the extensions in the <sqldeveloper>/jdev/extensions dir, I see them listed in the extensions list, but I don't see any context menu related to the extension. I connect to a database, right click from the connections tab, and only see connect, disconnect, delete, sqlplus, refresh, properties, rename conn, open sql wksht, remote debug and gather stats. Am I doing something wrong?

not sure what this would have to do with it, but I downloaded the errors lookkup extension from fourth elephant and not I see the insider extension context menu option and it launches. very bizarre. the error lookup is working too.

Similar Messages

  • Context Menu not displayed in KM for users except Administrator

    Hi Experts
      Can you please suggest where the permission should be given in order to make context menu visible for users who are not super-administrators but are content admin?
      We are facing issue with context menu not shown at all to the users.
       Please suggest.
    Regards
    Shaily

    Hi Shaily,
    You may need to look into the permissions on your Layout set and Resource renderer in use.
    This thread will help you navigate and do the required changes.
    http://scn.sap.com/thread/99088
    Thanks,
    Biroj

  • Context menu not working

    Can't access context menu in FireFox 3.6.15 either from right click or the windows context menu button

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Problem Create ANE,ArgumentError: Error #3500: The extension context does not have a method with the name

    I little confuse about build ANE, I already follow all the direction, but the error always #3500 when I try to call the ANE.
    I create ANE using java android.
    The tools I use : Flash Builder running on Win-64 win.7. I think I must straight to the point, here what i made it first step by step;
    1. I create the JAVA application first, with package senigo.extension.android then I create 3 file, Sample.java, SampleContext.java, PassTextFunction.java
    Sample.Java Source Code
    package senigo.extension.android;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
      return new SampleContext();
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
    SampleContext.Java Source Code
    package senigo.extension.android;
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    public class SampleContext extends FREContext {
      public SampleContext()
      Log.i("SampleContext", "constructor");
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
      return functionMap;
    PassTextFunction.Java Source Code
    package senigo.extension.android;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    public class PassTextFunction implements FREFunction {
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
      }catch(Exception e)
      return result;
    after all the file I create the jar file using click right on the tree view >> Export >> Jar File >> Sample.Jar (i already create jar file that just contain the src folder and after i frustrated, i create .jar file contain all the whole project folder but still didn't work out).
    Ok, After that I create project Flex Library Project, That's contain the actionscript to call the native and the extension.xml, here the code.
    Test.as Source Code, FYI : i already create public function and the static function the error still same #3500.
    package senigo.extension.android
      import flash.external.ExtensionContext;
      public class test
      private static var extContext:ExtensionContext = null;
      public function test()
      trace ("Test Constructor");
      if (!extContext)
      initExtension();
      public static function get passText():String
      trace ("Test Pass Text");
      if (!extContext)
      initExtension();
      return extContext.call("passText") as String;
      private static function initExtension():void
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
    extension.xml source code
    FYI: in Flex when i put the Native Extension, they said must have Windows-x86 so I already create 3 ANE, that just contain Android-ARM , Contain Android-ARM and Default, Contain Android-ARM,Default and Windows-x86 but the error still same. I didn't got it where is the error.
    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default">
    <applicationDeployment/>
    </platform>
      </platforms>
    </extension>
    After I create it, I copy the .swc file and extension file sample with the Sample.jar file.
    I extract the .swc file, copy the library.swf to folder Android-ARM,Default,Windows-86 and I create build.bat that contain the command like this
    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    the I put the ane to Flex mobile project that I created:
    I run it but got error #3500, I really confuse?? what's wrong with my code? is there something I wrong or I Miss it?
    Please any one help me.. and when is already ane file can I debug it in Flex Mobile Project? I wanna looks the log.i code that i wrote but i confuse how to looking up in flash builder.
    at the end, I wanna said Sorry if my english not very goods, and thanks, because wanna see my problem and thank you very much if You can gave me a solution's

    Alex Rekish wrote:
    Why you comment Windows-x86 in your extension.xml ?
    I think that is a problem. You launch your application on Windows but ANE haven't got Windows-x86 implementation (also you don't include it while packaging). So your application use default implementation. But default implementation don't use any native code and cannot use ExtensionContext. And you got error.
    If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation.
    Thanks for you answer Alex Rekish, Sorry I didn't screen shoot all about the extension.xml. I comment it because the latest ANE that I build is contain Android-ARM and default. so I commented. but I already try it using just ANE that's just contain Android-ARM, with Android-ARM and windows-x86,and Android-ARM, and default, and Android-ARM,default,Windows-x86 the error still the same.
    here the screen shoot, I embeded the ane that's i contain Windows-x86
    in action script test.as I didn't change it anythings, I just play it on extension.xml to build the ane. is there any mistake over there? I interact with your answer that "If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation." I didn't need to user ExtensionContext? is means? in the actionscript? or in extension.xml? can you explained

  • Context menu not showing up in EP ( OPEN Object,Permissions ..etc.)

    Dear Portal Gurus,
    We did some changes to the Top Level Nav. PAR file and deployed it into EP.We did it couple of times with every new change and it worked OK.Then once there was this problem with in the Code due some oversight from the developer.We deployed it ...then we were getting an error in EP the Mast Head + Top Level Nav. (all Tabs) part was missing ...was replaced by an error.
    The developer did a Remove Iview from page.
    I deployed a new PAR which was a copy of the original (untouched version of Top Level Nav. PAR) and created a new Iview based on that and used it in the framework page.....The problem was still existing it.
    So I transported the framwork page from my other EP system onto to this EP system which had problems....
    After the transport,all looked OK...no errors..things worked good.
    But after 2 days I got a scripting error wherein the page would load but there would be an error in the status bar.
    Now we were not able to expand any TREE or open any context menu ( for e.g. OPEN OBJECT,Permissions etc).
    The problem with the TREE expansion has been fixed but the context menu still has problems...
    EP 6.0,SP12.
    Any help appreciated.
    Thanks.
    Josh

    close the browser, delete the cache and retry it
    i've seen some problems with the context menu in EP, but its usually due to the browser cache

  • Menu not visible on ibook G4?!

    We i burn a disc (using DVDSP) it plays on my machine (powerpc G5) and most other machine with the exception of ibook G4s (does work on G3s). when trying to play on ibook G4 the menu is black (not visible) but i can mouse over where the button should be, cursor changes to click pointer, i click and the video plays (with no problems) but only due to the fact that i know the button is there!. Ive had suggestions to change audio format to ac3 which i did (and no change).
    DVD is SD single sided with bitrate of about 5.5 mbps and audio converted to AC3. video is about 5mins long.
    I have had this very same problem with every DVD i have created since begining to use DVDSP 3 months ago
    PLEASE HELP I HAVE A MAJOR DVD PROJECT DUE NEXT MONTH!
    PowerPC G5 Mac OS X (10.4.8)

    Sounds like you have this issue
    http://discussions.apple.com/thread.jspa?messageID=3049731&#3049731
    Workaround is to make it a motion menu (even a still with looping) that seems to work

  • 5th Gen 30 GB iPod - screen has lines - menu not visible

    Sometimes the menu is visible - sometimes not.  I have never dropped it, the glass is intact.  Just by clicking buttons I can play some music - just don't know what is going to play.  I have had it for many years, and though I have an iPhone and iPad - I still love my iPod for walking, etc.  Any suggestions that might help? (besides a new one).  Can the inner screen be replaced?  I have just reset & restored it to see if that might help - through iTunes. 

    You can work through the remaining five 5 R's of troubleshooting.
    http://www.apple.com/support/ipod/five_rs/
    It might also be a good idea to let the iPod's battery fully drain. Then charge it back up and restore it once more in iTunes.
    Otherwise, it's likely a hardware issue with the iPod's LCD display, meaning you'll need to take or send your iPod in for service either via Apple or a third party repair service. Here is Apple's repair pricing.
    http://www.apple.com/support/ipod/service/prices/
    Note that they don't actually repair the device, but exchange it for one of the same generation, model, and capacity.  A third party service will actually replace the damaged/faulty part for a little less.  Google "iPod screen repair" and you should get a number of results to work with.
    B-rock

  • Japanese input Kotoeri Maverick Register Word menu not visible

    Hi,
    I would like to add words to Kotoeri japanese dictionnary, but the menu Flag/Register word is not visible, I tried alt but on succès
    Any idea?
    Best regards

    Ok So I asked on the Japanese Fourms and this is the answer I got back. To be honest I had tried this on my work computer before and it did not work but it is working on my home computer so maybe this will help you.
    Mavericks (OS 10.9)ではことえりのユーザ辞書の仕様が変わりました。
    The way you do this action has changed with the change to Maveriks.
    1)まず、ことえり入力メソッドを追加する必要があります。
    Make sure that you have added the Kotoeri Method (I think you have)
         → Add the Kotoeri input method
    2)既に追加済みであれば、こちらのヘルプをご確認下さい。
    Next use the below link to help you add words to your dictionary.
         → Add words and symbols to a user dictionary
    Pretty much you add things to your dictionary like you would add shortcut word like (R) becomes ®.
    1. While using Kotoeri, choose Edit Text Substitutions from the Input menu (looks like a flag or character) in the menu bar.
    2. In the text pane of Keyboard preferences, click Add to add a word.
    3. Type the hiragana reading of the word in the Replace field. Readings of registered words can be no longer than 32 characters. If you’re registering an adjective, make sure to enter the reading in its dictionary form. The ending must be 〜い (~i). For example, あたらしい (atarashii) or たかい (takai). If you’re registering an adverb, don’t include inflective endings, such as 〜な (-na) or 〜だ (-da).
    4. Click the With column, then type the replacement word in the With field.A word can be no longer than 64 characters.
    Hope this helps you out. I will have to wait until Tuesday to find out if it works on my work computer.
    Happy Chinese New Year.

  • Context Menu not working in Firefox

    Recently (I believe when I installed version 9.0.1) , when I right-click on certain objects, I don't get the context menu that I used to get. I only get the browser context menu.
    I notice it more frequently on company websites because that's where I try to use the context menu more.
    Any ideas and/or suggestions will be greatly appreciated.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • Context Menu not working in Web Reports

    We are on BI 7.0 (ABAP stack only). I am unable to see context menu for 3.X web reports in 7.0 environment when we have "Only Hierarchy Navigation" property checked in web tenplates (WAD 3.X). Where as in production, on 3.0B system (not upgraded) when we have "Only Hierarchy Navigation" property checked in web template i am able to see context menu on header row of the reports. Not sure what i am missing?
    Reposting again to get some attention! Sorry for the duplication.
    Appreciate all your insights.
    Thanks.

    Also check this
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/43008b6a-0901-0010-90af-c848d878bac3?rid=/library/uuid/cea68c65-0901-0010-f5a4-fd34189d8078
    Hope it Helps
    Chetan
    @CP..

  • SAP Netweaver 2004  [and] I.E 7  CONTEXT Menu not working??

    Hello there,
    Installed: SAP NetWeaver 7.0 (2004s) SPS 15
    For some reason when I use Internet Explorer7 browsing the SAP Netweaver Portal. At the Content Administration>>RightClick on <Portal Content> is not working?
    Like I mean, I am unable to open up the tiny context menu where you get the options: [New, Open, Refresh, Change ID]
    But, when I use Firefox 3 everything is working fine. I can see the context menu opening up, but not in the case of I.E 7.
    I got the latest Java SDK installed:  j2sdk1.4.2.18
    Please note: I previously had j2sdk1.4.2.09 which didnt fix the above issue. So, I thought upgrading the Java SDK would fix my issue.. but, it did not.
    My O.S: Windows XP SP2.
    Any of you had this issue in the past ?  Found solution?
    Can you please let me know?
    Thanks
    Dino.
    Edited by: Dino R. on Jul 24, 2008 12:46 AM
    Edited by: Dino R. on Jul 24, 2008 12:46 AM
    Edited by: Dino R. on Jul 24, 2008 12:53 AM

    Hi Dino,
    The problem is not with the SAP NetWeaver 7.0 (2004s) SPS 15 but with the browser Internet Explorer7. We have also faced this problem then we installed IE 6. And it started giving the context menu.
    regards,
    Swati

  • Outlook Integration menu not visible in Add-ons menu

    Hi,
    Outlook Integration doesn't work on one workstation after a recent upgrade to 8.81 PL05.
    It's Windows 7 32-bit with Outlook 2010.
    Add-on seems to be successfuly installed and it appears to be connected in Add-on Manager, however the Outlook Integration menu (Default Settings, Company Settings, Define Snapshot Templates) is not visible in SAP. User has full authorisation and the menu doesn't appear in Form Settings to make it visible.
    After a while there is a message box saying that Outlook Integration has disconnected and it asks to reconnect Add-on, continue without the Add-on or log off company.
    I tried to uninstall and re-install the add-on, but it made no difference.
    Any suggestions?
    Thank you!
    Cristina

    Hi,
    I uninstalled and re-installed SAP Client on that workstation and Outlook Integration was successfully installed.
    Cristina

  • Yosemite Mail context menu not working

    Since the installation of Yosemite, Mail context menus no longer work. Control-clicking on a hyperlink in a mail messages opens a context menu containing these items:
    Selecting any of the first 3 has no effect. Just clicking on the hyperlink will switch to the browser (Safari) and open the link. Clicking on "Services" does display a list of Services, and "Open URL in Firefox" at least seems to work. However, "Open URLs in Safari Tabs" does not. This seems to indicate a possible disconnect between Mail and Safari in particular. 
    I've seen this problem in the Yosemite beta, the 10.0 release and the 10.1 release.  I haven't heard of many encountering this problem, but I have heard of a few. Has anyone here seen this, and maybe found a resolution for the problem?
    Operating Environment
    MacBook Pro (Late 2011), Mac Pro (Late 2008)
    Yosemite (OS X 10.10.1)
    Mail (Version 8.1)
    Safari (Version 8.0)

    This must be a pretty low-priority bug. I saw it in the Yosemite beta, and every update since, now including 10.10.2.

  • Portal Catalog, right click,  context menu not working

    Hi,
    1) I downloaded SAPNetweaver 2004s form sap download page and installeld and ran the Portal.
    2) Accessed it thus: http://localhost:50000/irj/portal using Administrator userid/passwd
    3) In "Browse portal catalog" I am trying to right click...it doesnt show the context menu ...just the browser's right click  menu shows up
    4) I do have a javascript error all along(which I suspect is preventing something)
    5) Using IE7
    6) Also I see all these talk of installing PDK etc...am I missing that ? Do I need to install anything if I got he 2004s netweaver or is it included?
    I have spent a few days reading posts and portal admin and documentation guides with no help

    Hello Monica,
    I too have this problem with IE7 on WinXP Home version. But every thing works fine with IE6 as well as Firefox. So this is somthing to do with IE7, I would recommand uninstalling IE7 and use IE6.
    See the for supported browsers:<a href="https://websmp205.sap-ag.de/~form/handler?_APP=00200682500000001303&_EVENT=RELEASE&00200682500000002804=01200615320900001250&00200682500000003818=WBRPFM&00200682500000003853=Enterprise%20Portal">2004s Supported Browsers</a>
    INTERNET EXPLORER 5.5  WINDOWS SERVER 2000/IA32 32BIT  Not Released  24.10.2005     
    INTERNET EXPLORER 6.0  WIN XP 2002 PROF. 32-BIT  Released  24.10.2005     
    INTERNET EXPLORER 6.0  WINDOWS SERVER 2000/IA32 32BIT  Released  24.10.2005     
    INTERNET EXPLORER 6.0  WINDOWS SERVER 2003/IA32 32BIT  Released  24.10.2005
    <b>So it is clear that IE7 is not supported</b>.
    Greetings,
    Praveen Gudapati
    p.s Points are always welcome for helpful answers
    Message was edited by:
            Praveen Gudapati

  • Context menu not working outside of JDev

    Hi all,
    RTFM replies welcomed, although I couldn't find anything.
    I have a very simple application (ADF BC + ADF Faces, 11.1.1.1.0).
    On one page, I have an af:table that lists departments; there is a context menu that allows me to right-click a row and go to an edit page. It works just fine using the WLS integrated in JDeveloper (on Windows). I have deployed the application to a 10.1.3.1 WLS (JRF installed properly) on Linux. The list page displays, context menu shows up, but when I choose the "edit" item in the context menu, nothing happens. I don't see anything interesting (or otherwise) in WLS log files.
    Am I missing a configuration somewhere?
    Thanks for any help (the app is the same app that I used for my ADF Essentials series on OTN, if anyone wants to download it - I'm trying to get one last wrinkle ironed on the last article, and they are good to go - so anyone who helps here, I'll give them a kudo in the article!).
    I can post the content of the PPR requests and responses if that helps someone (yay, Firebug!)
    As an update - I've tried all major browsers (IE, Firefox, Safari, Chrome - sorry Opera) and get the same results.
    Best,
    John

    John,
    I had to make some changes. The app I got from your series contained only an empty page flow and empty pages. I added the DepartmentList.jspx and DepartmentEdit.jspx to the adfc-config.xml. I added the navigation editDepartment from DepartmentLits to DepartmentEdit in the task flow.
    Because of the empty pages I'd put a read only table on the DepartmentList, added the code from your post to the contextMenu facet, added an edit form on the DepartmentEdit.jspx page.
    Tested it in jdev -> OK
    deployed the app on my test wls server -> OK
    So nothing fancy.
    Is the WLS on OpenSuse 11.2 RC a 64bit installation?
    I remember seeing strange behavior on a ubuntu 9.04 64bit installation had used before. My app runs fine on 32bit ubuntu 9.04 but i got errors when the app was hosted on the 64bit server. Never investigated it further because at work we are using SLSE and it's working there.
    Anyway I'll mail you the workspace I used.
    Keep me posted :-)
    Timo

Maybe you are looking for

  • Mail 4.4 and Exchange 2010SP1

    Hello, Let me give a little situation description first. We have a Exchange 2010 SP1 mailserver and a mixed envirnment of Apple and Windows devices. Everything was tested and checked on the Exchange server, that all should be fine. On the Apple compu

  • A problem with Siri

    Inmy iPhone 5,Siri has a different voice respecting iPhone 4S

  • Infotype 0105

    Hello, What is the differenece between subtype 0010 and MAIL of infotype 0105? The text for both the subtypes is "E-mail". Thanks, Anupam

  • SharePoint Apps not working

    Greetings, I'm having trouble configuring my SharePoint Server 2013 to use apps from the SharePoint app store, and so my developers can ultimately begin writing apps. I've gone through the configuration process here: http://msdn.microsoft.com/en-us/l

  • What is a good way on a resume to say you created End user accounts

    I also created in-house solutions of telling the users how to correct the most common problems they may encounter.