Development menu disappear for one application only

Hello,
For one of my application, when I run it from application builder, the apex development standard menu at bottom of each screen (where we have Modify app, Modify current page, Create, Session, Debug, etc.) does not appear. It was there few weeks ago...
For all others applications I have it.
I don't remember what I did to get this situation. Any idea if exist a parameter to hide it?
thank you
Jean

Check your application's "Availability" attribute under application definition
See http://i13.tinypic.com/4cc1c8i.jpg
The "Available with Edit links" is what makes the Developer toolbar appear at the bottom of the page when you run it via the Builder.

Similar Messages

  • Two menu entries for every application in Gnome-Shell?!

    I have two menu entries for every application, which is kind of annoying, because the menu needs more time to load at startup!

    bugs, bugs , bugs!!!!
    I got rid of that preoblem by going back to fallback mode, booting one time and then going back
    to shell menu! Hope it works for you people as well!!
    edit: no seems only to work sometimes, the icons change arbitrarily each time you reboot!
    Last edited by gunjah292 (2011-05-06 07:08:16)

  • One server certificate for one application? not for whole WebServer

    Hello,
    I am using SSL for the server- and clieint authtication. It works fine. But this authtication works for all applcations in this Webserver. How can I make it only for one application available? or one server certifiate for a certain application?
    Example:
    Config:
    <Connector port="8443" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" debug="0" scheme="https" secure="true" clientAuth="true" sslProtocol="SSL" keystoreFile="C:\temp\keystore\server\server.keystore" keystorePass="changeit" truststoreFile="C:\temp\keystore\server\trust.keystore" truststorePass="changeit"/>
    and all application used same server certificate:
    like: https://localhost:8443/myapp1
    https://localhost:8443/myapp2
    used same server certificate.
    How can I make one certificate for one application?
    thanks

    and I am using Tomcat 5.0 standalone

  • Need input on developing cluster agent for java application

    I am new to Sun Cluster and i wanted to develop agent for failover for one of my Java application which sits on one of the node of sun cluster 3.1. Can you guys help me in this.
    My Java application is based on n-tier client server model. and this needs to failover.
    I have two sun machine having solaris 9, which is clustered with 3.1 sun cluster software.
    As i know there are two mwthods for developing the agent for your application.
    1) Generic Data services
    2) Sun Plex agent builder
    i wanted to use Sunplex agent builder with Ksh. Can you please tell me what all things required for starting it and how do i proceed.
    thanks in advance.

    Using GDS will be the simplest solution.
    You can write atleast one script - to start application:
    say '/MYAPP/start'
    This script can setup JAVA_HOME and other environment variables and start the application in background.
    # scrgadm -a -t SUNW.gds
    # scrgadm -a -g rg1
    # scrgadm -a -L -g rg1 -l hhead
    # scrgadm -a -t SUNW.gds -g rg1 -j app-rs \
    -x Start_command="/MYAPP/start"
    # scswitch -Z -g rg1
    # scstat -g
    Refer to GDS man page http://docs.sun.com/app/docs/doc/819-0582/6n30g7il4?q=GDS+&a=view
    and Data services developer's guide http://docs.sun.com/app/docs/doc/819-0581/6n30f91v4?a=view
    If you want custome probe or you want to stop application gracefully, then you can write stop and probe scripts and provide them in 'scrgadm' command as described in SUNW.gds man page.
    If you want to productize the agent, then you can consider using agent builder.

  • I have an epson xp600 and a mac book pro. Wireless printing is OK if I'm lucky for one time only then a 'failed to connect' message so I have to delete and re add the printer to get it working again (but just once!) then the same occurs. Why?

    I have an epson xp600 and a mac book pro. Wireless printing is OK if I'm lucky for one time only then a 'failed to connect' message so I have to delete and re add the printer to get it working again (but just once!) then the same occurs. Why?

    I am not certain this will fix your problem but I suggest you assign the printer a static IP address.
    Using the printer's front panel, select Menu > Network > WLAN > TCP/IP > Boot method, and change it to "static". Provide a static IP address that is on your LAN's subnet.
    For example, if you are using an AirPort Extreme, you might give it an IP address of 10.0.1.100. If you are using a Netgear or Linksys router that defaults to issuing 192.168.x.x addresses, you might give it an address of 192.168.1.100. That way, the printer will always "reside at the same address" on your network. If your router has the ability, you should reserve that address so that the router does not attempt to assign it to another DHCP device.
    Then, go to System Preferences > Print & Scan, and delete your existing printer with the "–" (minus) button. Add it again, using the "+" (plus) button. In the window that appears, select the IP pane, and from the Protocol menu select "Line Printer Daemon (LPD)". In the Address field type the IP address you gave your printer.
    If all goes well the "Pring Using" field will detect the printer at that address and automatically select the appropriate driver. You will see something similar to the following screenshot ("name" can be whatever you decide, and "location" is optional):
    Click Add, then you can close System Preferences.
    There are other possible reasons your printer is "not responding" which could include wireless interference from competing wireless networks, but try this "static IP" method first. It should mitigate the problem.

  • Open two GUI( JFrame) simultaneously for one application

    Can we open two GUI( JFrame) simultaneously for one application at tha same time.if yes why ?and if no why?

    OK, its really simple, basically, you need a desktop frame to stor all the other frames and then you just pop them in, from a new class each time.
    Here's the code from the demo I learnt it from:
    (The demo itself)
    import javax.swing.JInternalFrame;
    import javax.swing.JDesktopPane;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.JMenuBar;
    import javax.swing.JFrame;
    import javax.swing.KeyStroke;
    import java.awt.event.*;
    import java.awt.*;
    * InternalFrameDemo.java requires:
    * MyInternalFrame.java
    public class InternalFrameDemo extends JFrame
    implements ActionListener {
    JDesktopPane desktop;
    public InternalFrameDemo() {
    super("InternalFrameDemo");
    //Make the big window be indented 50 pixels from each edge
    //of the screen.
    int inset = 50;
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    setBounds(inset, inset,
    screenSize.width - inset*2,
    screenSize.height - inset*2);
    //Set up the GUI.
    desktop = new JDesktopPane(); //a specialized layered pane
    createFrame(); //create first "window"
    setContentPane(desktop);
    setJMenuBar(createMenuBar());
    //Make dragging a little faster but perhaps uglier.
    desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
    protected JMenuBar createMenuBar() {
    JMenuBar menuBar = new JMenuBar();
    //Set up the lone menu.
    JMenu menu = new JMenu("File");
    menu.setMnemonic(KeyEvent.VK_D);
    menuBar.add(menu);
    //Set up the first menu item.
    JMenuItem menuItem = new JMenuItem("New");
    menuItem.setMnemonic(KeyEvent.VK_N);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_N, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("New");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    //Set up the second menu item.
    menuItem = new JMenuItem("Quit");
    menuItem.setMnemonic(KeyEvent.VK_Q);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_Q, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("Quit");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    return menuBar;
    //React to menu selections.
    public void actionPerformed(ActionEvent e) {
    if ("New".equals(e.getActionCommand())) { //new
    createFrame();
    } else { //quit
    quit();
    //Create a new internal frame.
    protected void createFrame() {
    MyInternalFrame frame = new MyInternalFrame();
    frame.setVisible(true); //necessary as of 1.3
    desktop.add(frame);
    try {
    frame.setSelected(true);
    } catch (java.beans.PropertyVetoException e) {}
    //Quit the application.
    protected void quit() {
    System.exit(0);
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    InternalFrameDemo frame = new InternalFrameDemo();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Display the window.
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    Myinternalframe.java:
    import javax.swing.JInternalFrame;
    import java.awt.event.*;
    import java.awt.*;
    public class MyInternalFrame extends JInternalFrame {
    static int openFrameCount = 0;
    static final int xOffset = 30, yOffset = 30;
    public MyInternalFrame() {
    super("Document #" + (++openFrameCount),
    true, //resizable
    true, //closable
    true, //maximizable
    true);//iconifiable
    //...Create the GUI and put it in the window...
    //...Then set the window size or call pack...
    setSize(300,300);
    //Set the window's location.
    setLocation(xOffset*openFrameCount, yOffset*openFrameCount);
    You should be able to tell from that

  • Can I run 2 versions of firefox? I need to run older version for one application

    My operating system is mac 10.6.8 and I need to be able to run firefox 3.6.19 for one application & the latest version of firefox for other applications. Can I have 2 versions of firefox on my computer and choose which one to run depending on my application?

    You can install the portable Firefox 3.6.19 version to access websites that do not work with Firefox 5+.
    *http://www.freesmug.org/portableapps:firefox#toc1

  • Value help does not work for ONE person only !

    Hi,
    we have a strange problem. In the Web IC, we are using a standard value help for the country field for a Business Partner. This works fine for everyone (ie, it picks up the country and slots it into the field) except one person. For her, it never returns any value into the country field. We are guessing that it's not Web IC related but is something in her browser settings etc...but haven't been able to pin it down. Can anyone offer any advice on this ?
    thanks for looking.
    Malcolm.

    Hello Malcolm,
    If this error occurs for one user only it's definitely related to the clients PC.
    Did you already delete all temporary files and the cookies on that PC? Usually this does the trick!
    If this does not solve the problem, try to let that particular user login on another PC where the problem does not occur. (If the error does occur on another PC too it's probably profile/authorization related)
    Hope this helps!
    Regards,
    Joost

  • HT204019 Can I turn off the ringtone for one contact only?

    Is it possible to turn off the ringtone for one contact only? The block feature won't work because I still want to be able to receive voice messages from this particular contact.

    You can assign a silent ringtone to that one person. Google to find such a ringtone, sync it to the phone, assign the custom ringtone to this person and when they call, the phone will appear not to ring.

  • Is it possibel to create one connection [pool for one report only

    Hi is it possibe to create one connection pool for one report only. Others report are running from the another connection pool under same DB.
    Thanks,

    Hi,
    Why do u want seperate connectionpool for that single report?
    I dont think its possible.Direct database request will be good solution for this.Try importing those columns which are used to build that report into physical layer and create new subject area.Not sure weather its right way to do.
    Regards,
    Srikanth

  • Menu Bar for Struts application

    Hi All,
    We are developing the Struts based Web Application using Hibernate and for this we need the Menu Bar for all the pages in the application.But we are unable to write the code for the menu bar using java classes.
    If possible please send the code for the issue.
    Thanking you.
    Ram

    tsith wrote:
    georgemc wrote:
    ramachandrarao_bandaru009 wrote:
    We are developing the Struts based Web Application using Hibernate and for this we need the Menu Bar for all the pages in the application.But we are unable to write the code for the menu bar using java classes.Then you probably shouldn't have applied for a job that required Struts experience
    Right, I'm off to post in some Neurosurgery forum, see how far I can blag my way in that profession:
    >
    I am attempting to remove a cerebral tumour but I don't know one end of a gamma knife from the other. If anyone knows how to do this please detail the exact steps in laymans terms below
    >1) open up head
    2) locate tumor (note correct spelling ;-)
    3) remove tumor - be careful not to remove good stuff
    4) close head
    5) ???
    6) profitYou spelt tumour wrong :p

  • Menu bars for all applications are unusable

    I have a new MacBook that was running Tiger when I opened up the box. I noticed that sometimes the Finder menu bar failed to respond when the cursor was passed over it or any item in it was clicked on (normally I'd expect to see the menu items drop down). I updated to OS to Leopard but although the menus worked for a bit, now they're acting up again. Oddly, the items to the right of the bar (Airport, Bluetooth, etc.) still work.
    I looked through the threads and one of them suggested using the Disk Utility to repair permissions and zapping the PRAM, which I did. The logging from the repair didn't give up much -- just the following for a bunch of languages:
    ACL found but not expected on "System/Library/User Template/English.lproj/Desktop".
    Anyone think of anything that might be causing this? Maybe a software conflict with something I migrated over from the previous iBook?

    Steps taken:
    (1) slaved the iBook to the MacBook and migrated the configuration from the old to the new notebook. Both the iBook and the MacBook were at that time running Tiger -- the iBook has a 30GB stock hard drive in it and other than Office X and some shareware was relatively clean. The migration had one hiccup - I was using an olde version of iPhoto and when I opened it I was prompted to update the thumbnails in my picture library. This essentially froze the application when the progress bar was about a quarter done. In the end I fixed that.
    When I noticed the problem with the menu bars (which by the way appear to be somewhat translucent), I tried rebooting a couple of times. At this point, the problem was random and appeared only to affect the Finder Menu bar. So a reboot had the effect of seeming like it was fixing it. When it didn't go away, I was looking arounf and hit About This Mac and discovered Leopard was uninstalled. I opened the software box and found the install disk, so I ran it. Again, the problem appeared to go away.
    I didn't use the MacBook for about a week, maybe ten days, and thenlast night I noticed that the problem affected all menu bars regardless of application.Tried rebooting. No go. Tried reparing permissions - no problems found. Zapped he PRAM three or four times. No workee.
    That's where I'm at now.
    I have Disk Warrior and Drive Genius, but I haven't tried them yet because (a) I thought this miht be a simple issue resolvasble on the threads, and (b) I bought them when I was running 10.3 on G3s and G4s respectively, and wasn't sure they were Leopard or Intel compatible.

  • Solaris 10 zone config for one application

    I have a Solaris 10 x86 server with 48GB of memory and 8 CPUs (although I believe hyperthreading is turned on because prsinfo shows 16 CPUs). The server is dedicated to one big application which spawns many processes/threads. Performance is extremely important for this application so I need to give it all of the resources possible.
    I tried just allowing the application to run in the global zone because there's nothing else it will interfere with (aside from the OS) but I couldn't get it to utilize all of the CPUs this server has. My guess is the global zone is only designed for running the OS and playing traffic cop for the other zones, so it's not suited for running applications. Is that correct?
    So my question is, assuming I do need to setup a dedicated zone for this monster application, how do I configure it to dedicate all CPUs and all memory (or as close to all of it as I can get)?
    Also, is there some default limit on how much CPU % a process can have? Because I have tried getting one process to utilize 100% of a CPU and can't get anywhere near that... unless prstat doesn't display per CPU utilization information.
    Any help would be appreciated.

    Kupacmac wrote:
    I have a Solaris 10 x86 server with 48GB of memory and 8 CPUs (although I believe hyperthreading is turned on because prsinfo shows 16 CPUs). The server is dedicated to one big application which spawns many processes/threads. Performance is extremely important for this application so I need to give it all of the resources possible.
    I tried just allowing the application to run in the global zone because there's nothing else it will interfere with (aside from the OS) but I couldn't get it to utilize all of the CPUs this server has. My guess is the global zone is only designed for running the OS and playing traffic cop for the other zones, so it's not suited for running applications. Is that correct?No. Unless you have dedicated CPUs to zones (so they are not available to the global zone), or unless you're running under a project which restricts CPU usage, the global zone has access to all virtual CPUs.
    Can you see your process spawning threads? How much CPU is it able to use?
    Also, is there some default limit on how much CPU % a process can have? Because I have tried getting one process to utilize 100% of a CPU and can't get anywhere near that... unless prstat doesn't display per CPU utilization information.One thread can only use one CPU. So you'd either need to run 16 single threaded processes, or your process would need to spawn 16 threads that were CPU-heavy. No, there's no default limit on a process.
    Darren

  • Need a report column to hold data for one row only

    Hey Guys,
    I have a report which has a column that links to another page in my APEX application.
    There is a requirement where only one of the rows in this report needs to have a link so I need the column to show the page link for one row and one row only.
    The report will have about 5 rows at a time so is there a way to just make this link appear for the one row(it will be the top row) in the column attirbute in APEX? or can this be done in the SQL for the report?
    Any help is much appreciated
    Thanks
    -Mark

    Hi
    The only way (I believe) to do this is within the SQL. Then you just wrap the column in a CASE statement and if it meets your criteria then build up the link and if not then display normally.
    Something like this...
    SELECT ename,
           CASE WHEN empno = 7839
           THEN '<a href="f?p='||:APP_ID||':4:'||:APP_SESSION||'::NO::P4_TARGET_ITEM:'||empno||'" >'||empno||'</a>'
           ELSE TO_CHAR(empno)
           END empno
    FROM empCheers
    Ben

  • WRT110: I want to create an access rule for one client for one application during one time period

    I have a problem with one of the clients on my LAN which is running uTorrent to detriment of everyone else. It saturates the pipe. I have been unable to prod this user into bothering to tweak their settings to throttle bandwidth back and so have resorted to an access rule on the router which kicks that MAC address off during a particular time period during the day. But as irritated as I am about this slacker sense of outrageous entitlement, kicking them off entirely seems a tad heavy handed even for me.
    So, In the router I can create a rule per MAC address and specify time. But is it possible to limit this to denying uTorrent ONLY? And if so what port or port ranges would I use.
    Alternatively I already use a QoS setting for one of my VoIP TA's. Would I gain anything by degrading the application indirectly by creating a QoS = LOW for that port range? Again, I don't really care about any other application, just uTorrent and just that client. How much degradation is there really in setting QoS to LOW?

    Well it wont make much difference, when you enable QOS service on your router. Yes it is possible to Deny uTorrent application from your Router. When you are Under "Application and Gaming" Tab, Under "Blocked Application" you will find "Application Name" , "Port Range" and "Protocol" so you need to input under Application Name "uTorrent" and under port range you need to input the port number which uTorrent application use and then under protocol select "Both" and click on ADD. Then again in Application you will find uTorrent , select and click on (>>) right arrow so it will block that application on your Router. By doing this it will block uTorrent from your Router.

Maybe you are looking for

  • Inconsistent Vendor type

    Hi friends, [Apps R12] Running "Supplier Open Interface Import" it returns the error : AP_INCONSISTENT_VENDOR_TYPE The value for VENDOR_TYPE_LOOKUP_CODE column is EMPLOYEE. I don't understand why.. It appears in this select: SELECT lookup_code FROM f

  • F110 - Vendor Bank Selection

    Hello All, Can anyone please suggest me on the following issue. The vendor has two banks ex: X & Y, whenever the APP get runs, the system should pick up the X account of vendor but where as in my case it is picking Y account.  There is no problem wit

  • How to get the last location of a iphone?

    I need the last location (Find my iphone) of my iPhone 5 because it was stolen . Now can I get? Help me please! I bought it just 14 days. Thanks.

  • Consume ATOM feed via ODI - possible?

    Hi, I'd like to have ATOM feed consumed by our DWH via ODI. I'd appreciate if somebody can help with answers of these questions: - is it possible for ODI to consume XML from some HTTP URL, calculated while the inport script is running? - is it possib

  • Freetalk Connect me firmware not upgrading

    My Freetalk connect me firmware is not upgrading. I contacted the ebuy and they asked me various details such as: - What is your order number so that we may identify your order? - What color is the light on the device? Is it steady or flashing? - Wha