Apex tab

i want to know whether in apex, two different tab can use the same page?namely,i go into one tab,click a tree to show the report i created in a page;then i go into another tab,and click something on the tree to use the same page to show something different,but how to show different tab ,since i use the same page.
TAB1             TAB2
TREE_page1              TREE_page1

There was an answer to this exact question recently. I think it may have been by ATD. It had something to do with editing the template and using a bit of css to cause the tabs to float left or something.
I cannot find the post, but maybe you will have better luck.
EDIT: Found the thread:
Re: Create second row of tabs under the tabs already created
Edited by: JohnA on Sep 16, 2008 2:01 PM

Similar Messages

  • APEX tabs do not appear in some browsers (after 5)

    I am using APEX 4.2 to build a fairly simple application. I am pretty new to this, but I noticed the following:
    I use standard level1 tabs and I noticed that depending on the browser I use I can only see a maximum of 5 tabs. It just does not display the tabs after 5. I of course cleaned browser cache, etc .. to no avail.
    These are observations based on available browsers: I CANNOT see more than 5 tabs in IE or Firefox 24, but I CAN in Firefox 17 AND Google Chrome.
    Can anyone let me know if I can correct a setting somewhere to make all tabs appear in all browsers.
    Thanks.

    tardo wrote:Actually, those specific applications don't come with .desktop files, which is your problem (this will happen to everyone too). Only solution is to create one yourself, or google for one. If you find them, ask the maintainers to include them in the pkg.
    I don't agree with you. 2 days ago i had to reinstall my system because of a pacman problem. Before this, some applications i use used to have .desktop files. After reinstallation they don't. And also they were not upgraded. Maybe the problem is mirrors, that's not a big problem

  • Apex tab and page display query

    I am using Apex 4.1
    I have the following tabs set up.
    Home, Tab 1,Tab 2 and so on
    The home page is fine. Now the query is with regard to Tab 1. I need it to display Page 3 or Page 4 based on the location of APP_USER
    The region details are all stored in the table : employee_info
    How can I check or display Page 3 if the Region is APAC and Page 4 if EMEA(APAC and EMEA being values in table)
    Is there some way how I can set or achieve this? The default page I have set is as of now Page 3 but it has to pick Page 3 or 4 based on region value from employee table.
    Any guidance will be appreciable.
    Thanks,
    Swetha

    LKSwetha wrote:
    I am using Apex 4.1
    I have the following tabs set up.
    Home, Tab 1,Tab 2 and so on
    The home page is fine. Now the query is with regard to Tab 1. I need it to display Page 3 or Page 4 based on the location of APP_USER
    The region details are all stored in the table : employee_info
    How can I check or display Page 3 if the Region is APAC and Page 4 if EMEA(APAC and EMEA being values in table)
    Is there some way how I can set or achieve this? The default page I have set is as of now Page 3 but it has to pick Page 3 or 4 based on region value from employee table.
    Any guidance will be appreciable.Create 2 copies of Tab 1, one for page 3 and the other for page 4. Display them conditionally according to the user region.

  • Apex Tab Set name variable

    Hi,
    Can someone tell me the apex global variable for TAB SET Name please?
    Is there any document from I can get complete list of all Apex variable names?
    Thanks in advance
    Dip

    Can someone tell me the apex global variable for TAB SET Name please?Not clear what you mean by "variable": can you provide more context?
    Is there any document from I can get complete list of all Apex variable names?If you mean substitution strings, then Flavio has a very ueful list of them and where it's possible to use them:
    http://oraclequirks.blogspot.com/2007/07/apex-substitution-strings-cross.html
    Other than that, the APEX documentation is probably the best place, although you may need to hunt around to find what you want:
    http://www.oracle.com/technology/products/database/application_express/html/doc.html
    For example, here's a list of substitution strings supported in page templates:
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/themes.htm#sthref1659

  • APEX Tab Display

    My application has 11 tabs which has become more than I originally anticipated. The amount of tabs has caused the page to scroll way too far to the right and is really making the GUI look ridiculous. While the application is functioning perfectly I cannot release this version into production without taking care of the interface. Is there a way to split the one, long row of tabs into 2 rows of tabs. This way I'd be able to have the top row of tabs pertaining to forms and the bottom row of tabs pertaining to reports. I know this seems silly but I really don't know how to take care of this problem. Please help because it will be greatly appreciated. Thanks in advance.

    There was an answer to this exact question recently. I think it may have been by ATD. It had something to do with editing the template and using a bit of css to cause the tabs to float left or something.
    I cannot find the post, but maybe you will have better luck.
    EDIT: Found the thread:
    Re: Create second row of tabs under the tabs already created
    Edited by: JohnA on Sep 16, 2008 2:01 PM

  • Clear Cache of a Page using Tabs

    Hello,
    my problem is, that i want to clear the cache of a page, when the user accesses this page by clicking a tab.
    So my Page has six items, which are used to search people in a db.
    Under the items is a submit button, which submits the values in the items and the same page is loaded with the search result.
    But when i go on another page and click on the tab of the "search-page" the result is still there.
    Because of the submit button i can not create a process which clears the cache when the page is loaded....
    I hope you understand my problem,
    Thank you,
    Tim

    This is not possible using the built in Apex tabs. Apex tabs are meant to quickly switch between pages with all your session state intact.
    You can do what you want if you use a List instead of tabs. You have full control over List entries and you can clear cache for the list target page, set other items as needed (you can control the full f?p= URL)
    Hope this helps.

  • Open new window from standard tab

    I searched the forum for my question but didn't have any success.  Sorry if this question was already been discussed.
    Is there a way to open a new browser window when you click on a standard tab?  My client wants a separate window to open when you click on a standard tab, similar to a pop-up window.  I'm sure this has been done but I don't see a way to do it directly.  Basically I need to go to a new page in the application and include "target=_blank" in the link for the tab.
    I am using APEX 4.2.1
    Thanks in advance,
    John F

    This is not a standard functionality of the tabs. Since tabs do an apex.submit('TAB_NAME') you will have replace that code with your own (with jQuery for example) to make this happen.
    Perhaps a better approach is to use a list for your tabs.  Many people (myself included) we replace the APEX tabs with a list. Once you do this, your requirement becomes trivial because you can navigate to any page or URL and control the attributes of the link.
    The technique is not hard at all and the tabs will look identical as the standard tabs (or you can make them look different of course).
    This is an excellent presentation on how to do this *:
    https://www.enkitec.com/about/presentations/alt_tab
    Now...I would be remiss if I didn't say... this is an absolutely terrible idea from a UI stand point. I would strongly suggest using a Nav Bar element for this, for example.  Or some link somewhere else, use the Global Page (a.k.a. Page 0) to display it everywhere.
    Thanks
    -Jorge
    http://rimblas.com/blog/
    * Disclaimer: I do work for Enkitec, but the solution is very popular.

  • What is the apex internal administration credentials

    dear all
    i have installed oracle xe 11g and i have loged in on storage and apex tabs and i have created workspace and users.
    now i would like to access apex internal administration. i need to configure email server ip there
    can anyone help me with this.
    thanks in advance
    Uday

    Hi Uday,
    that's no problem. You'll find a script named apxchpwd.sql in the apex directory of your XE installation path (e.g. +/u01/app/oracle/product/11.2.0/xe/apex+ on Linux).
    Change to that directory, start sqlplus as sysdba and run the script to reset the password.
    Note that you'll have to set the environment properly to be able to run sqlplus. You can do that by sourcing the oracle_env.sh
    . /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh
    cd /u01/app/oracle/product/11.2.0/xe/apex
    sqlplus sys@XE as sysdba
    (enter login data)
    @apxchpwd.sql
    (enter new password)
    exitAfterwards you should be able to login using the new password.
    -Udo

  • TABS shared across Multiple apps?

    Hi there,
    I successfully implemented SSO to flick through several APEX applications without re-authenticating.
    However, in order to mantain the navigation layout, I need to have a CORE application that holds common Navigation tabs and lists.
    Is it possible to share tabs across applications? It is paradoxal that Tabs live under "Shared Components" however there is no Subscription feature for them.
    Any hints?
    Thanks

    Is it possible to share tabs across applications?No. The Navigation Bar - Typical uses.
    It is paradoxal that Tabs live under "Shared Components" however there is no Subscription feature for them.It's not that paradoxical as there are many other Shared Components that aren't included in the Subscription feature.
    I'm definitely NOT a fan of APEX tabs: don't think navigation elements should submit, and the conceptual model and builder UI are incomprehensible. I'm therefore more into using lists, and would like them to be included in the Subscription feature.
    A similar requirement is foreseen on a project I'm currently working on, and replacing the tabs with a PL/SQL region calling standard procedures across all the apps is one of the options under consideration. Other options might be to use a "region pull" from a master app, or some other AJAX approach...

  • Icons on tabs

    You know how some websites in Firefox will place one of their own logos directly on the tab? (i.e. www.oracle.com, www.yahoo.com, etc.) Whenever I open my APEX apps in a tab, the default icon is an ugly white rectangle. How can I put one of my own icons on my APEX tabs?

    Hello,
    Sure, that feature is known as 'favicon' (it's a website/browser thing rather than an APEX thing).
    Take a look at these links to get more information on how to do it -
    http://en.wikipedia.org/wiki/Favicon
    http://www.davesite.com/webstation/html/favicon.shtml
    Hope this helps,
    John
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd

  • Very odd HTTP 404 Error

    I am getting the HTTp 404 error on some pages in APEX 3.0.0.00.20.
    These are the pages I get the error:
    1. From Home(APEX) Tab when I click the "Application Builder".
    2. From Home(APEX) Tab "Application Builder" Dropdown, select my application 101.
    3. From My App 101 when I click on the "Application 101" button on the developer toolbar.
    4. From the Application Builder Tab on any page in My App 101 when I click on a Named "List of Values" to edit it.
    This is the Error Log:
    [Mon Jul 23 16:22:03 2007] [notice] FastCGI: process manager initialized
    [Mon Jul 23 16:22:10 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232930:XXX.XXX.XXX.11:3788:2364:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-503 ORA-12514
    [Mon Jul 23 16:22:15 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232935:XXX.XXX.XXX.11:3788:2520:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-503 ORA-12514
    [Mon Jul 23 16:22:23 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232943:XXX.XXX.XXX.11:3788:2536:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-503 ORA-12514
    [Mon Jul 23 16:22:52 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185232972:XXX.XXX.XXX.11:3788:2544:1,0] mod_plsql: /pls/htmldb/f HTTP-503 ORA-12514
    [Mon Jul 23 16:27:17 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233236:XXX.XXX.XXX.11:3788:900:9,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:27:17 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233236:XXX.XXX.XXX.11:3788:900:9,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:27:44 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233239:XXX.XXX.XXX.11:3788:1272:5,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:27:44 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233239:XXX.XXX.XXX.11:3788:1272:5,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:27:59 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233278:XXX.XXX.XXX.11:3788:1272:9,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:27:59 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233278:XXX.XXX.XXX.11:3788:1272:9,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:28:07 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233282:XXX.XXX.XXX.11:3788:3516:3,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:28:07 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233282:XXX.XXX.XXX.11:3788:3516:3,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:31:37 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233496:XXX.XXX.XXX.11:3788:816:1,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:31:37 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233496:XXX.XXX.XXX.11:3788:816:1,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:31:43 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233502:XXX.XXX.XXX.11:3788:816:2,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:31:43 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233502:XXX.XXX.XXX.11:3788:816:2,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:31:54 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233513:XXX.XXX.XXX.11:3788:816:17,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:31:54 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233513:XXX.XXX.XXX.11:3788:816:17,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:32:58 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233577:XXX.XXX.XXX.11:3788:2464:17,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:32:58 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233577:XXX.XXX.XXX.11:3788:2464:17,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:34:44 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233683:XXX.XXX.XXX.11:3788:2480:2,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:34:44 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233683:XXX.XXX.XXX.11:3788:2480:2,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:34:50 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233689:XXX.XXX.XXX.11:3788:2480:3,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:34:50 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233689:XXX.XXX.XXX.11:3788:2480:3,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:34:57 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233697:XXX.XXX.XXX.11:3788:2540:14,0] File does not exist: d:/oracle/product/10.2.0/http_1/apache/apache/htdocs/favicon.ico
    [Mon Jul 23 16:35:25 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233724:XXX.XXX.XXX.11:3788:2616:2,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:35:25 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233724:XXX.XXX.XXX.11:3788:2616:2,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:35:41 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233740:XXX.XXX.XXX.11:3788:2616:30,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:35:41 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233740:XXX.XXX.XXX.11:3788:2616:30,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:36:15 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233765:XXX.XXX.XXX.11:3788:2616:34,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:36:15 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233765:XXX.XXX.XXX.11:3788:2616:34,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:37:05 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233824:XXX.XXX.XXX.11:3788:2616:74,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:37:05 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233824:XXX.XXX.XXX.11:3788:2616:74,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:38:46 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185233925:XXX.XXX.XXX.11:3788:900:11,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:38:46 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185233925:XXX.XXX.XXX.11:3788:900:11,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:41:50 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234109:XXX.XXX.XXX.11:3788:3760:4,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:41:50 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234109:XXX.XXX.XXX.11:3788:3760:4,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:44:05 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234244:XXX.XXX.XXX.11:3788:2456:5,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:44:05 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234244:XXX.XXX.XXX.11:3788:2456:5,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:47:01 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234420:XXX.XXX.XXX.11:3788:1820:12,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:47:01 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234420:XXX.XXX.XXX.11:3788:1820:12,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f
    [Mon Jul 23 16:48:30 2007] [error] [client XXX.XXX.XXX.50] [ecid: 1185234509:XXX.XXX.XXX.11:3788:1488:10,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-03113: end-of-file on communication channel\n
    [Mon Jul 23 16:48:30 2007] [alert] [client XXX.XXX.XXX.50] [ecid: 1185234509:XXX.XXX.XXX.11:3788:1488:10,0] mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/htmldb/f

    Hi Chris,
    The ORA-12514 is -
    jes@shellprompt[7:22am]~> oerr ora 12514
    12514, 00000, "TNS:listener does not currently know of service requested in connect descriptor"
    // *Cause:  The listener received a request to establish a connection to a
    // database or other service. The connect descriptor received by the listener
    // specified a service name for a service (usually a database service)
    // that either has not yet dynamically registered with the listener or has
    // not been statically configured for the listener.  This may be a temporary
    // condition such as after the listener has started, but before the database
    // instance has registered with the listener.
    // *Action:
    //  - Wait a moment and try to connect a second time.
    //  - Check which services are currently known by the listener by executing:
    //    lsnrctl services <listener name>
    //  - Check that the SERVICE_NAME parameter in the connect descriptor of the
    //    net service name used specifies a service known by the listener.
    //  - If an easy connect naming connect identifier was used, check that
    //    the service name specified is a service known by the listener.
    //  - Check for an event in the listener.log file.So looks like problems with your listener, the ORA-3113 is more serious -
    jes@shellprompt[7:52am]~> oerr ora 3113
    03113, 00000, "end-of-file on communication channel"
    // *Cause: The connection between Client and Server process was broken.
    // *Action: There was a communication error that requires further investigation.
    //          First, check for network problems and review the SQL*Net setup.
    //          Also, look in the alert.log file for any errors. Finally, test to
    //          see whether the server process is dead and whether a trace file
    //          was generated at failure time.An ORA-3113 usually means a call to support because something has gone very wrong (the error is kind of a last ditch message that something serious went wrong, but the message itself is not specific about what that 'thing' was, however support can track it down from the logs/traces etc).
    How reproducible is this? Was it a 'one-off', or if you restart the listener if everything back to 'normal'?

  • Drop-Down Menu How to

    Hi all,
    I'm new to APEX (just a few days looking at it), I need to make a drop down menu like the regular website.
    Example:
    HOME - PRODUCTS - NEWS
    -Weather
    -Sports
    Like when the mouse hovers (or clicks) over the "PRODUCTS" Tab and the list of items comes below the parent tab.
    Any guidance?
    I've been searching on several forums, and they have several CSS and Javascript files, I upload those plugins to my apex application but then I don't know what to do.
    Please help!
    Thanks

    What you are trying to do is not trivial or easy to explain in a forum I think...!
    You say you don't have experience with Apex at all, but what about the other technologies involved to achieve this? Like HTML, CSS, Javascript, quantum physics (no just kidding)... You will need a very good understanding of those to implement what you want.
    Also, do you want that menu to be based in actual Apex tabs and sub-tabs or an independent menu?
    Luis

  • Unable to login to Oracle Database 11.2 XE Beta

    Hello everyone:
    Trying to login to Oracle Database 11.2 XE Beta, the fields are workspace, username and password. How do i know the workspace.
    Thanks

    Where are you trying to log in?
    If you go to Get Started (http://127.0.0.1:8080/apex/f?p=4950), the Database Home page should open up.
    There click the APEX "tab" or red button, login if requested with a database username, and you'll get to create an Apex Workspace.
    See the XE [url http://download.oracle.com/docs/cd/E17781_01/admin.112/e18585/toc.htm]Getting Started Guide - 6.1. Getting Started with Application Express
    For exploring APEX, the [url http://download.oracle.com/docs/cd/E17556_01/welcome.html]Documentation library for APEX 4.0 should come in handy.
    Edited by: orafad on May 28, 2011 12:52 PM

  • Enkitec Nav bar plugin

    Hi,
    I need help with Enkitec Nav bar plugin, I have installed  and created list and region, How can I get rid of the second menu bar? so as to have just one menu bar and the drop down  I created.
    This is the application URL:  http://apex.oracle.com/pls/apex/f?p=9678:1:101531257071981
    Thanks

    Ok, I've looked and yes, you have the original APEX tabs and the new plugin Nav Bar showing on the page.  To remove the original APEX tabs, edit the page attributes and remove the the "Standard Tab Set" attribute.  There are other ways to do that too, like changing the page template or deleting all the tabs.
    Also, the placement of the Nav Bar is not correct.  You're using Theme 26, so place the Nav Bar in "Region Position 8".  That will move it to the right spot.
    For the override CSS, there are a few options.  The file can get uploaded to the the Shared Components -> Cascading Stylesheets
    Then to reference it you use #WORKSPACE_IMAGES#enkitec-navbar-override.css  (if you specify the file is global to the workspace) or #APP_IMAGES#enkitec-navbar-override.css if you make it specific to the App.
    The use that reference in the template or from a region on the Global Page (Page Zero).
    Thanks
    -Jorge

  • Apex Application Parent Tabs

    Request for other peoples experience with problems using the apex_application_parent_tabs view. We have solved the problem that follows, but are interested in finding out other peoples solutions to this problem.
    We have used the following dynamic tree to create a navigation menu within an application:-
    select id, pid,
    case when :FLOW_STEP_ID = page_no then '<div class="osl_breadcrumb">'||name||'</div>' else '<div class="osl_breadcrumb">'||name||'</div>' end name,
    case when navigation = 'Y' then 'f?p='||x.flow_id||':'||page_no||':&SESSION.::NO::P0_PARENT_TAB:'||parent_tab||''
    else null
    end link,
    null a1, null a2
    from ( select id, pid, name, navigation, parent_tab, display_seq, flow_id, page_no
    from (select distinct a.CURRENT_FOR_TABSET id,
    case when length(a.component_comment) = 4
    then (select z.CURRENT_FOR_TABSET from apex_030200.APEX_APPLICATION_PARENT_TABS
    z where z.component_comment = substr(a.component_comment, 0, 3))
    else a.TAB_SET
    end pid,
    a.TAB_LABEL name, 'N' navigation, 'PT' parent_tab, a.DISPLAY_SEQUENCE display_seq,
    a.APPLICATION_ID flow_id, 0 page_no
    from apex_030200.APEX_APPLICATION_PARENT_TABS a
    where a.application_id = v('app_id')
    union all
    select distinct b.TAB_NAME id, b.TAB_SET pid, b.TAB_LABEL name, 'Y' navigation,
    (select c.TAB_COMMENT
    from apex_030200.WWV_FLOW_TOPLEVEL_TABS c
    where c.CURRENT_ON_TABSET = b.TAB_SET
    and c.FLOW_ID= b.APPLICATION_ID) parent_tab,
    b.DISPLAY_SEQUENCE display_seq, b.APPLICATION_ID flow_id, b.TAB_PAGE page_no
    from apex_030200.APEX_APPLICATION_TABS b
    where b.application_id = v('app_id')) comp,
    osl.ap_stu_portal_activated flag
    where comp.id=flag.ID_value
    and flag.ACTIVE='Y'
    order by comp.display_seq
    ) x
    This works OK in Apex 3.2 against an Oracle 11.1.0.6 database but will not run against an 11.1.0.7 database. However, if the sql is run manually in e.g. SQLDeveloper against 11.1.0.7, then it runs without a problem (substituting in valid values as appropriate). There is no debug output at the point the tree statement woudl run when the application is run in debug mode. The monitoring tools do not show any expensive cpu or any particular run away query - and don't show this tree statement being run.
    We think Apex is trying to rewrite the sql, but as the underlieing apex view is a complicated series of nested case statements as well, we think the resultant sql is somehow flawed.
    We have resolved the issue by creating a view:-
    create or replace view osl.ap_portal_menu_tree as
    select id, pid, name, navigation, parent_tab, display_seq, flow_id, page_no from (
    select distinct a.CURRENT_FOR_TABSET id,
    case when length(a.component_comment) = 4 then (select z.CURRENT_FOR_TABSET from apex_030200.APEX_APPLICATION_PARENT_TABS
    z where z.component_comment = substr(a.component_comment, 0, 3)) else a.TAB_SET end pid,
    a.TAB_LABEL name,
    'N' navigation,
    'PT' parent_tab,
    a.DISPLAY_SEQUENCE display_seq,
    a.APPLICATION_ID flow_id,
    0 page_no
    from
    apex_030200.APEX_APPLICATION_PARENT_TABS a
    union all
    select distinct b.TAB_NAME id,
    b.TAB_SET pid,
    b.TAB_LABEL name,
    'Y' navigation,
    (select c.TAB_COMMENT from apex_030200.WWV_FLOW_TOPLEVEL_TABS c where c.CURRENT_ON_TABSET = b.TAB_SET and c.FLOW_ID= b.APPLICATION_ID) parent_tab,
    b.DISPLAY_SEQUENCE display_seq,
    b.APPLICATION_ID flow_id,
    b.TAB_PAGE page_no
    from apex_030200.APEX_APPLICATION_TABS b)
    comp, ap_stu_portal_activated flag
    where comp.id=flag.ID_value and flag.ACTIVE='Y'
    The tree has then been re written as:-
    select id,
    pid,
    case when :FLOW_STEP_ID = page_no then '<div class="osl_breadcrumb">'||name||'</div>' else '<div class="osl_breadcrumb">'||name||'</div>' end name,
    case when navigation = 'Y' then 'f?p='||x.flow_id||':'||page_no||':&SESSION.::NO::P0_PARENT_TAB:'||parent_tab||'' else null end link,
    null a1,
    null a2
    from osl.ap_portal_menu_tree x
    where x.flow_id = v('app_id')
    order by x.display_seq
    This works perfectly, suggesting that the problem may be how Apex’s sql engine runs the nested case statements.
    Any similar experiences?
    Thanks
    Occam

    Dear Prabodh,
    Thank you for you response.
    Only I need a list for the second level tabs since I have the first level on the top navigation area of my page template
    As I understood, I wrote the following code for the list
    SELECT null,
           TABLABEL label,
           'f?p=&APP_ID.:' || TABPAGE || ':'||:APP_SESSION||':::::' target,
           (CASE 
                WHEN TABPAGE = :APP_PAGE_ID THEN 'YES'
                ELSE 'NO' END) is_current
    from MY_VW_TABS
    WHERE PTTABNAME in (select TAB_SET from APEX_APPLICATION_TABS where TAB_PAGE = :APP_PAGE_ID)In page 0, I created a list region with template (Vertical Unordered List without Bullets), however, it is not displaying anything!!
    What is missing to get list displayed?
    Best Regards
    Mahmoud

Maybe you are looking for

  • Archiving mailbox folders to an external HDD - How?

    I have a Mac Bool Pro and I have a large number of mailbox folders that I do not use very much. I would like to offload these folders to a large external HDD and remove them from the internal HDD of the Macbook pro...how do I do this ? I also then wa

  • Is there a way to hide selected contacts

    Palm used to offer a a Contact feature where one could 'hide' or set a contact as 'Private'.  These contacts were then only visible when a password was input.  Does Apple offer something similar?

  • Can't find my bellsouth email folders or any of the mail that is in them when I use apple mail

    When i log onto my bellsouth (yahoo) email account via the web, I can see all of the folders I created and the mail that is in them.  How do I get thise folders to show up when using mail on my mac?

  • Adobe illustrator installation errors.

    I've been trying to install Illustrator CS5 trial for about a week now and this always comes up. I've been reading the other disscussions about this problem but none of them have helped. If anyone can help me that would be greatly appreciated. ------

  • Curve 8900 & Facebook

    Hi I have a Curve 8900...when I go to Facebook...click download now then click next I get a message saying...sorry your device does not   meet system requirements that are needed to support Facebook. I have the latest version for this phone....4.6.1.